.invoize-widget-wrapper {
    background: linear-gradient(to bottom right, #f1f5f9, white);
    padding: 12px;
    border-radius: 8px;
    border: 2px solid #f1f5f9;
    /* box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1); */
}

.invoize-tab-count {
    border-radius: 6px;
    padding: 2px;
    text-align: center;
}

.invoize-invoice-wrapper {
    /* padding: 6px; */
    border-radius: 4px;
    margin-bottom: 8px;
}

.invoize-invoice-link-wrapper {
    /* padding: 0 6px; */
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    border-radius: 4px;
}

.invoize-invoice-link-wrapper:hover {
    background-color: #ece8ff;
}

.invoize-invoice-link {
    text-decoration: none;
    color: #334155;
    width: 60%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-wrap: nowrap;
}

.invoize-invoice-link:hover {
    font-weight: 500;
    color: #4100ae;
    text-decoration: underline;
}

.invoize-invoice-name {
    font-size: 13px;
}

.invoize-long-tab-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #4100ae;
    font-weight: 500;
    height: fit-content;
    font-size: 14px;
}

.invoize-short-tab-wrapper {
    display: flex;
    box-sizing: border-box;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 50px;
    border-radius: 6px;
    color: #4100ae;
    font-size: 16px;
    border-bottom: 1px solid #e2e8f0;
}

.long-tab-header {
    color: #4100ae;
}

.invoize-set-to-paid {
    color: #5c7dff;
    text-decoration: none;
    text-wrap: nowrap;
}

.invoize-set-to-paid:hover {
    font-weight: 600;
}

.invoize-confirm-paid-modal-wrapper {
    backdrop-filter: blur(12px);
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    z-index: 1000000;
    width: 100%;
    height: 100%;
}

.invoize-confirm-paid-modal,
.invoize-loading-modal {
    z-index: 1000001;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 50%;
    right: 50%;
    height: 15%;
    width: 425px;
    border-radius: 12px;
    padding: 24px;
    background: linear-gradient(to top right, #f1f5f9, white);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    transform: translate(50%, -50%);
    justify-content: center;
    align-items: center;
    background-color: white;
    border: 1px solid #e2e8f0;
}

@media only screen and (max-width: 600px) {
    .invoize-confirm-paid-modal {
        width: 250px;
        padding: 50px;
    }
}

.invoize-confirm-paid-modal-header {
    font-weight: 600;
    font-size: 18px;
    width: 100%;
    text-align: start;
    margin-bottom: 8px;
}

.invoize-confirm-paid-modal-message {
    height: fit-content;
    width: 100%;
    margin-bottom: 8px;
    font-size: 14px;
    color: #64748b;
}

.invoize-confirm-paid-modal-action-wrap {
    width: 100%;
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 20px;
}

.invoize-confirm-paid-modal-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 500;
    transition: color 300ms ease-in-out;
    outline: none;
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    border: none;
    padding: 8px 12px;
    cursor: pointer;
}

.invoize-confirm-paid-modal-email {
    display: flex;
    flex-wrap: nowrap;
    align-items: end;
    width: 100%;
    gap: 4px;
    margin-bottom: 12px;
}

.invoize-confirm-paid-modal-yes {
    color: white;
    background: linear-gradient(to top right, #4100ae, #701AFF);
}

.invoize-confirm-paid-modal-yes:hover {
    box-shadow: 0 4px 6px rgba(65, 0, 174, 0.8);
    transition: color 300ms ease-in-out;
}

.invoize-confirm-paid-modal-no {
    background-color: white;
    border: 1px solid #e2e8f0;
}

.invoize-confirm-paid-modal-no:hover {
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

.invoize-loading-modal-message {
    font-size: 18px;
    font-weight: 600;
}

.invoize-confirm-finish-button {
    display: none;
    margin-top: 20px;
}

.invoize-paid-status {
    color: #2ecc71;
    text-decoration: none;
    text-wrap: nowrap;
}

.invoize-loading-icon-wrapper {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: spin 1s linear infinite;
}

@keyframes invoizeSlideUp {
    from {
        height: 200px;
        opacity: 1;
    }

    to {
        height: 0;
        opacity: 0;
    }
}

.bergerak {
    animation: slideUp 0.5s ease-out forwards;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}