/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* This file is intentionally empty */
/* We use global CSS files (variables.css, layout.css, components.css) instead of scoped CSS */

/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-g0xwmtfcj3],
.components-reconnect-repeated-attempt-visible[b-g0xwmtfcj3],
.components-reconnect-failed-visible[b-g0xwmtfcj3],
.components-pause-visible[b-g0xwmtfcj3],
.components-resume-failed-visible[b-g0xwmtfcj3],
.components-rejoining-animation[b-g0xwmtfcj3] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-g0xwmtfcj3],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-g0xwmtfcj3],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-g0xwmtfcj3],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-g0xwmtfcj3],
#components-reconnect-modal.components-reconnect-retrying[b-g0xwmtfcj3],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-g0xwmtfcj3],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-g0xwmtfcj3],
#components-reconnect-modal.components-reconnect-failed[b-g0xwmtfcj3],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-g0xwmtfcj3] {
    display: block;
}


#components-reconnect-modal[b-g0xwmtfcj3] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-g0xwmtfcj3 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-g0xwmtfcj3 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-g0xwmtfcj3 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-g0xwmtfcj3]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-g0xwmtfcj3 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-g0xwmtfcj3 {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-g0xwmtfcj3 {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-g0xwmtfcj3 {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-g0xwmtfcj3] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-g0xwmtfcj3] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-g0xwmtfcj3] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-g0xwmtfcj3] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-g0xwmtfcj3] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-g0xwmtfcj3] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-g0xwmtfcj3] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-g0xwmtfcj3 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-g0xwmtfcj3] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-g0xwmtfcj3 {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Pages/Admin/ImportTransactions.razor.rz.scp.css */
/* Import date range row */
.import-date-range[b-ovi2shegfh] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

/* Summary badges row */
.import-summary[b-ovi2shegfh] {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    align-items: center;
}

/* Compact form inputs for table cells */
.form-input-compact[b-ovi2shegfh] {
    padding: var(--space-xs) var(--space-sm);
    font-size: var(--font-size-sm);
    height: auto;
    min-height: unset;
}

/* Row highlights */
.row-transfer[b-ovi2shegfh] {
    background-color: color-mix(in srgb, var(--bg-secondary) 60%, transparent);
    opacity: 0.7;
}

.row-duplicate[b-ovi2shegfh] {
    background-color: color-mix(in srgb, var(--color-warning) 12%, transparent);
}

.row-unmatched[b-ovi2shegfh] {
    background-color: color-mix(in srgb, var(--color-danger) 8%, transparent);
}

.row-success[b-ovi2shegfh] {
    background-color: color-mix(in srgb, var(--color-success) 12%, transparent);
}

.row-failed[b-ovi2shegfh] {
    background-color: color-mix(in srgb, var(--color-danger) 12%, transparent);
}

/* Cell highlight for unmatched category */
.cell-unmatched[b-ovi2shegfh] {
    outline: 2px solid var(--color-danger);
    outline-offset: -2px;
}

/* Amount coloring */
.text-income[b-ovi2shegfh] {
    color: var(--color-success);
    font-weight: var(--font-weight-semibold);
}

.text-expense[b-ovi2shegfh] {
    color: var(--color-danger);
    font-weight: var(--font-weight-semibold);
}

/* Duplicate badge */
.badge-duplicate[b-ovi2shegfh] {
    background-color: color-mix(in srgb, var(--color-warning) 15%, transparent);
    color: var(--color-warning);
}

.badge-primary[b-ovi2shegfh] {
    background-color: color-mix(in srgb, var(--color-primary) 15%, transparent);
    color: var(--color-primary);
}

.badge-danger[b-ovi2shegfh] {
    background-color: color-mix(in srgb, var(--color-danger) 15%, transparent);
    color: var(--color-danger);
}
