/* /Components/Layout/MainLayout.razor.rz.scp.css */
#blazor-error-ui[b-c378nrszba] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-c378nrszba] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-kx13xaht5f],
.components-reconnect-repeated-attempt-visible[b-kx13xaht5f],
.components-reconnect-failed-visible[b-kx13xaht5f],
.components-pause-visible[b-kx13xaht5f],
.components-resume-failed-visible[b-kx13xaht5f],
.components-rejoining-animation[b-kx13xaht5f] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-kx13xaht5f],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-kx13xaht5f],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-kx13xaht5f],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-kx13xaht5f],
#components-reconnect-modal.components-reconnect-retrying[b-kx13xaht5f],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-kx13xaht5f],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-kx13xaht5f],
#components-reconnect-modal.components-reconnect-failed[b-kx13xaht5f],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-kx13xaht5f] {
    display: block;
}


#components-reconnect-modal[b-kx13xaht5f] {
    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-kx13xaht5f 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-kx13xaht5f 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-kx13xaht5f 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-kx13xaht5f]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-kx13xaht5f 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-kx13xaht5f {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-kx13xaht5f {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-kx13xaht5f {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-kx13xaht5f] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-kx13xaht5f] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-kx13xaht5f] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-kx13xaht5f] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-kx13xaht5f] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-kx13xaht5f] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-kx13xaht5f] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-kx13xaht5f 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-kx13xaht5f] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-kx13xaht5f {
    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/Home.razor.rz.scp.css */
/* Hero */
.hero[b-95myyikhne] {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 60%, #0f3460 100%);
    color: #fff;
    padding: 5rem 1.5rem 4rem;
    text-align: center;
}

.hero-content[b-95myyikhne] {
    max-width: 720px;
    margin: 0 auto;
}

.hero-eyebrow[b-95myyikhne] {
    text-transform: uppercase;
    letter-spacing: .15em;
    font-size: .8rem;
    color: #a8c4e0;
    margin-bottom: 1.25rem;
}

.hero-title[b-95myyikhne] {
    font-size: clamp(2.2rem, 6vw, 3.8rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.75rem;
    letter-spacing: -.02em;
}

.hero-title span[b-95myyikhne] {
    color: #f4b942;
}

.hero-perex[b-95myyikhne] {
    font-size: 1.1rem;
    line-height: 1.75;
    color: #c9d8e8;
    margin-bottom: 1rem;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

/* Picker */
.calculator-picker[b-95myyikhne] {
    padding: 4rem 1.5rem 5rem;
    text-align: center;
    background: #f8f9fb;
}

.picker-title[b-95myyikhne] {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: .5rem;
    color: #1a1a2e;
}

.picker-subtitle[b-95myyikhne] {
    color: #5a6a7e;
    font-size: 1rem;
    margin-bottom: 2.5rem;
}

.picker-cards[b-95myyikhne] {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 860px;
    margin: 0 auto;
}

.picker-card[b-95myyikhne] {
    flex: 1 1 340px;
    max-width: 400px;
    background: #fff;
    border: 2px solid #e8edf3;
    border-radius: 1rem;
    padding: 2.25rem 2rem;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: .75rem;
    transition: border-color .2s, box-shadow .2s, transform .2s;
    text-align: left;
}

.picker-card:hover[b-95myyikhne] {
    border-color: #0f3460;
    box-shadow: 0 8px 32px rgba(15, 52, 96, .12);
    transform: translateY(-3px);
}

.picker-card-icon[b-95myyikhne] {
    font-size: 2.5rem;
    line-height: 1;
}

.picker-card h3[b-95myyikhne] {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
}

.picker-card p[b-95myyikhne] {
    font-size: .95rem;
    color: #5a6a7e;
    line-height: 1.65;
    margin: 0;
    flex: 1;
}

.picker-card-cta[b-95myyikhne] {
    display: inline-flex;
    align-items: center;
    margin-top: .75rem;
    padding: .75rem 1.5rem;
    background: #0f3460;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: .5rem;
    transition: background .2s, transform .15s;
    align-self: flex-start;
}

.picker-card:hover .picker-card-cta[b-95myyikhne] {
    background: #f4b942;
    color: #1a1a2e;
    transform: translateX(3px);
}
/* /Components/Pages/Hpp.razor.rz.scp.css */
.hpp-container[b-anxj8hr7i2] {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Periods card */
.periods-card[b-anxj8hr7i2] {
    background: #fff;
    border: 1.5px solid #e8edf3;
    border-radius: .875rem;
    padding: 1.25rem 1.25rem .75rem;
    display: flex;
    flex-direction: column;
}

.periods-header-row[b-anxj8hr7i2] {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 1rem;
    font-size: .78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #9aa5b4;
    padding-left: calc(148px + 1rem);
    padding-bottom: .25rem;
}

.period-row[b-anxj8hr7i2] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: .75rem 0;
    border-bottom: 1px solid #f0f2f6;
}

.period-row:last-of-type[b-anxj8hr7i2] {
    border-bottom: none;
}

.period-row:focus-within[b-anxj8hr7i2] {
    background: #f8f9fb;
    border-radius: .5rem;
}

.period-row.bot-flash[b-anxj8hr7i2] {
    animation: botFlash-b-anxj8hr7i2 .8s ease-out;
}

@keyframes botFlash-b-anxj8hr7i2 {
    0% { background: #f4b942; }
    100% { background: transparent; }
}

.period-label[b-anxj8hr7i2] {
    width: 148px;
    flex-shrink: 0;
    font-size: .78rem;
    font-weight: 600;
    color: #9aa5b4;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.period-inputs[b-anxj8hr7i2] {
    display: flex;
    align-items: center;
    gap: .75rem;
    flex: 1;
}

.input-group[b-anxj8hr7i2] {
    display: flex;
    align-items: center;
}

.input-group:first-child[b-anxj8hr7i2] {
    width: 100px;
}

.input-group.input-with-suffix[b-anxj8hr7i2] {
    flex: 1;
}

.input-field[b-anxj8hr7i2] {
    border: 1.5px solid #d0d7e2;
    border-radius: .5rem;
    padding: .6rem .85rem;
    font-size: 1rem;
    color: #1a1a2e;
    background: #f8f9fb;
    outline: none;
    transition: border-color .2s, background .2s;
    width: 100%;
}

.input-field:focus[b-anxj8hr7i2] {
    border-color: #0f3460;
    background: #fff;
}

.input-field[b-anxj8hr7i2]::placeholder {
    color: #b0bac8;
}

.input-amount[b-anxj8hr7i2] {
    text-align: right;
}

.input-field[type=number][b-anxj8hr7i2]::-webkit-inner-spin-button,
.input-field[type=number][b-anxj8hr7i2]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.input-suffix[b-anxj8hr7i2] {
    margin-left: .6rem;
    font-size: .88rem;
    color: #9aa5b4;
    white-space: nowrap;
}

.btn-remove[b-anxj8hr7i2] {
    background: none;
    border: none;
    color: #c0c8d4;
    font-size: 1rem;
    cursor: pointer;
    padding: .25rem .4rem;
    border-radius: .4rem;
    transition: color .15s, background .15s;
    flex-shrink: 0;
    line-height: 1;
}

.btn-remove:hover[b-anxj8hr7i2] {
    color: #e50000;
    background: #fff0f0;
}

.btn-remove-placeholder[b-anxj8hr7i2] {
    display: inline-block;
    width: 30px;
    flex-shrink: 0;
}

/* Add row */
.add-row[b-anxj8hr7i2] {
    display: flex;
    justify-content: center;
    padding: .5rem 0 .25rem;
    border-top: 1px dashed #e8edf3;
}

/* Actions */
.form-actions[b-anxj8hr7i2] {
    display: flex;
    justify-content: center;
    padding-top: .5rem;
}

.btn-whatif[b-anxj8hr7i2] {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: linear-gradient(135deg, #f4b942 0%, #e8a832 100%);
    color: #1a1a2e;
    border: none;
    padding: .8rem 1.5rem;
    border-radius: .625rem;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform .15s, box-shadow .15s;
    box-shadow: 0 2px 8px rgba(244, 185, 66, .3);
}

.btn-whatif:hover[b-anxj8hr7i2] {
    transform: scale(1.03);
    box-shadow: 0 4px 16px rgba(244, 185, 66, .4);
}

.btn-add[b-anxj8hr7i2] {
    background: none;
    border: 2px dashed #c0c8d4;
    color: #5a6a7e;
    font-size: .95rem;
    font-weight: 600;
    padding: .65rem 1.25rem;
    border-radius: .625rem;
    cursor: pointer;
    transition: border-color .2s, color .2s;
}

.btn-add:hover:not(:disabled)[b-anxj8hr7i2] {
    border-color: #0f3460;
    color: #0f3460;
}

.btn-add:disabled[b-anxj8hr7i2] {
    opacity: .4;
    cursor: not-allowed;
}

.btn-calculate[b-anxj8hr7i2] {
    display: inline-flex;
    align-items: center;
    padding: .75rem 2rem;
    background: #0f3460;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 600;
    border: none;
    border-radius: .625rem;
    cursor: pointer;
    transition: background .2s, transform .15s;
}

.btn-calculate:hover:not(:disabled)[b-anxj8hr7i2] {
    background: #f4b942;
    color: #1a1a2e;
    transform: translateX(2px);
}

.btn-calculate:disabled[b-anxj8hr7i2] {
    opacity: .4;
    cursor: not-allowed;
}

/* Results */
.results-container[b-anxj8hr7i2] {
    max-width: 1100px;
    margin: 1.5rem auto 2rem;
    padding: 0 1.5rem;
}

.results-title[b-anxj8hr7i2] {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Verdict */
.verdict-card[b-anxj8hr7i2] {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 60%, #0f3460 100%);
    color: #fff;
    border-radius: 1rem;
    padding: 2.5rem 2rem;
    margin-bottom: 3rem;
    text-align: center;
}

.verdict-text[b-anxj8hr7i2] {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #c9d8e8;
    margin-bottom: .75rem;
}

.verdict-text strong[b-anxj8hr7i2] {
    color: #fff;
}

.verdict-highlight[b-anxj8hr7i2] {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.5;
    margin: 0;
}

.verdict-highlight.negative[b-anxj8hr7i2] {
    color: #ff6b6b;
}

.verdict-highlight.negative strong[b-anxj8hr7i2] {
    color: #ff4444;
}

.verdict-highlight.positive[b-anxj8hr7i2] {
    color: #69db7c;
}

.verdict-highlight.positive strong[b-anxj8hr7i2] {
    color: #51cf66;
}

.verdict-subtext[b-anxj8hr7i2] {
    font-size: .88rem;
    color: #7a9bb5;
    margin-top: .75rem;
    line-height: 1.6;
    font-style: italic;
}

.chart-wrapper[b-anxj8hr7i2] {
    background: #fff;
    border: 1.5px solid #e8edf3;
    border-radius: .75rem;
    padding: 1.5rem 1.25rem 1rem;
    margin-bottom: 2rem;
    height: 380px;
    position: relative;
}

.results-table-wrapper[b-anxj8hr7i2] {
    overflow-x: auto;
    border: 1.5px solid #e8edf3;
    border-radius: .75rem;
    background: #fff;
}

.results-table[b-anxj8hr7i2] {
    width: 100%;
    border-collapse: collapse;
    font-size: .88rem;
    white-space: nowrap;
}

.results-table th[b-anxj8hr7i2] {
    background: #f2f4f8;
    color: #5a6a7e;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
    font-size: .72rem;
    padding: .75rem .85rem;
    border-bottom: 2px solid #e0e5ed;
    position: sticky;
    top: 0;
}

.results-table td[b-anxj8hr7i2] {
    padding: .65rem .85rem;
    border-bottom: 1px solid #f0f2f6;
    color: #1a1a2e;
}

.results-table .num[b-anxj8hr7i2] {
    text-align: right;
    font-variant-numeric: tabular-nums;
}

.results-table tbody tr:hover[b-anxj8hr7i2] {
    background: #f8f9fb;
}

.results-table .row-negative td:first-child[b-anxj8hr7i2] {
    border-left: 3px solid #e54040;
}

.results-table td.val-negative[b-anxj8hr7i2] {
    color: #d03030;
    font-weight: 600;
}

.results-table td.val-positive[b-anxj8hr7i2] {
    color: #1a8a4a;
    font-weight: 600;
}

.tag-preliminary[b-anxj8hr7i2] {
    display: inline-block;
    font-size: .65rem;
    background: #fdf0d5;
    color: #b8860b;
    padding: .1rem .4rem;
    border-radius: .25rem;
    margin-left: .3rem;
    vertical-align: middle;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.btn-toggle-detail[b-anxj8hr7i2] {
    display: block;
    margin: 1.5rem auto 2.5rem;
    background: none;
    border: 2px solid #0f3460;
    color: #0f3460;
    font-size: .95rem;
    font-weight: 600;
    cursor: pointer;
    padding: .6rem 1.5rem;
    border-radius: .625rem;
    transition: background .2s, color .2s;
}

.btn-toggle-detail:hover[b-anxj8hr7i2] {
    background: #0f3460;
    color: #fff;
}

/* Share */
.share-section[b-anxj8hr7i2] {
    display: flex;
    justify-content: center;
    padding: 1rem 0 .5rem;
}

.btn-share[b-anxj8hr7i2] {
    background: none;
    border: 2px solid #0f3460;
    color: #0f3460;
    font-size: .95rem;
    font-weight: 600;
    padding: .6rem 1.75rem;
    border-radius: .625rem;
    cursor: pointer;
    transition: background .2s, color .2s;
}

.btn-share:hover[b-anxj8hr7i2] {
    background: #0f3460;
    color: #fff;
}

/* Delete */
.delete-section[b-anxj8hr7i2] {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 0 2rem;
    gap: .5rem;
}

.btn-delete-link[b-anxj8hr7i2] {
    background: none;
    border: none;
    color: #c0c8d4;
    font-size: .8rem;
    cursor: pointer;
    text-decoration: underline;
    padding: 0;
    transition: color .2s;
}

.btn-delete-link:hover[b-anxj8hr7i2] {
    color: #e54040;
}

.delete-form[b-anxj8hr7i2] {
    display: flex;
    align-items: center;
    gap: .5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.delete-input[b-anxj8hr7i2] {
    border: 1.5px solid #d0d7e2;
    border-radius: .5rem;
    padding: .5rem .85rem;
    font-size: .9rem;
    color: #1a1a2e;
    background: #f8f9fb;
    outline: none;
    text-transform: uppercase;
    letter-spacing: .1em;
    width: 140px;
    transition: border-color .2s;
}

.delete-input:focus[b-anxj8hr7i2] {
    border-color: #e54040;
    background: #fff;
}

.btn-delete-confirm[b-anxj8hr7i2] {
    background: #e54040;
    color: #fff;
    border: none;
    padding: .5rem 1.1rem;
    border-radius: .5rem;
    font-size: .88rem;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s;
}

.btn-delete-confirm:hover[b-anxj8hr7i2] {
    background: #c03030;
}

.btn-delete-cancel[b-anxj8hr7i2] {
    background: none;
    border: 1.5px solid #d0d7e2;
    color: #5a6a7e;
    padding: .5rem 1rem;
    border-radius: .5rem;
    font-size: .88rem;
    font-weight: 600;
    cursor: pointer;
    transition: border-color .2s;
}

.btn-delete-cancel:hover[b-anxj8hr7i2] {
    border-color: #9aa5b4;
}

.delete-error[b-anxj8hr7i2] {
    font-size: .82rem;
    color: #e54040;
    margin: 0;
}

/* Back link */
.back-link[b-anxj8hr7i2] {
    text-align: center;
    padding: 1rem 0 3rem;
}

.back-link a[b-anxj8hr7i2] {
    color: #9aa5b4;
    text-decoration: none;
    font-size: .85rem;
    transition: color .2s;
}

.back-link a:hover[b-anxj8hr7i2] {
    color: #0f3460;
}
/* /Components/Pages/Osvc.razor.rz.scp.css */
.osvc-container[b-hqp2g59d9p] {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Settings toggle card */
.settings-card[b-hqp2g59d9p] {
    background: #f8f9fb;
    border: 1px solid #e8edf3;
    border-radius: .875rem;
    padding: 1.25rem 1.5rem;
}

.toggle-row[b-hqp2g59d9p] {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
}

.toggle-wrapper[b-hqp2g59d9p] {
    position: relative;
    flex-shrink: 0;
}

.toggle-input[b-hqp2g59d9p] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-track[b-hqp2g59d9p] {
    display: block;
    width: 48px;
    height: 26px;
    background: #d0d7e2;
    border-radius: 999px;
    position: relative;
    transition: background .2s;
}

.toggle-input:checked + .toggle-track[b-hqp2g59d9p] {
    background: #0f3460;
}

.toggle-thumb[b-hqp2g59d9p] {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 1px 4px rgba(0,0,0,.2);
    transition: transform .2s;
}

.toggle-input:checked + .toggle-track .toggle-thumb[b-hqp2g59d9p] {
    transform: translateX(22px);
}

.toggle-text[b-hqp2g59d9p] {
    display: flex;
    flex-direction: column;
    gap: .2rem;
}

.toggle-title[b-hqp2g59d9p] {
    font-weight: 600;
    font-size: .95rem;
    color: #1a1a2e;
}

.toggle-desc[b-hqp2g59d9p] {
    font-size: .82rem;
    color: #7a8a9e;
    line-height: 1.5;
}

/* Periods card */
.periods-card[b-hqp2g59d9p] {
    background: #fff;
    border: 1.5px solid #e8edf3;
    border-radius: .875rem;
    padding: 1.25rem 1.25rem .75rem;
    display: flex;
    flex-direction: column;
}

.periods-header-row[b-hqp2g59d9p] {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 1rem;
    font-size: .78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #9aa5b4;
    padding-left: calc(148px + 1rem);
    padding-bottom: .25rem;
}

.period-row[b-hqp2g59d9p] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: .75rem 0;
    border-bottom: 1px solid #f0f2f6;
}

.period-row:last-of-type[b-hqp2g59d9p] {
    border-bottom: none;
}

.period-row:focus-within[b-hqp2g59d9p] {
    background: #f8f9fb;
    border-radius: .5rem;
}

.period-row.bot-flash[b-hqp2g59d9p] {
    animation: botFlash-b-hqp2g59d9p .8s ease-out;
}

@keyframes botFlash-b-hqp2g59d9p {
    0% { background: #f4b942; }
    100% { background: transparent; }
}

.period-label[b-hqp2g59d9p] {
    width: 148px;
    flex-shrink: 0;
    font-size: .78rem;
    font-weight: 600;
    color: #9aa5b4;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.period-inputs[b-hqp2g59d9p] {
    display: flex;
    align-items: center;
    gap: .75rem;
    flex: 1;
}

.input-group[b-hqp2g59d9p] {
    display: flex;
    align-items: center;
}

.input-group:first-child[b-hqp2g59d9p] {
    width: 100px;
}

.input-group.input-with-suffix[b-hqp2g59d9p] {
    flex: 1;
}

.input-field[b-hqp2g59d9p] {
    border: 1.5px solid #d0d7e2;
    border-radius: .5rem;
    padding: .6rem .85rem;
    font-size: 1rem;
    color: #1a1a2e;
    background: #f8f9fb;
    outline: none;
    transition: border-color .2s, background .2s;
    width: 100%;
}

.input-field:focus[b-hqp2g59d9p] {
    border-color: #0f3460;
    background: #fff;
}

.input-field[b-hqp2g59d9p]::placeholder {
    color: #b0bac8;
}

.input-amount[b-hqp2g59d9p] {
    text-align: right;
}

.input-field[type=number][b-hqp2g59d9p]::-webkit-inner-spin-button,
.input-field[type=number][b-hqp2g59d9p]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.input-suffix[b-hqp2g59d9p] {
    margin-left: .6rem;
    font-size: .88rem;
    color: #9aa5b4;
    white-space: nowrap;
}

.btn-remove[b-hqp2g59d9p] {
    background: none;
    border: none;
    color: #c0c8d4;
    font-size: 1rem;
    cursor: pointer;
    padding: .25rem .4rem;
    border-radius: .4rem;
    transition: color .15s, background .15s;
    flex-shrink: 0;
    line-height: 1;
}

.btn-remove:hover[b-hqp2g59d9p] {
    color: #e50000;
    background: #fff0f0;
}

.btn-remove-placeholder[b-hqp2g59d9p] {
    display: inline-block;
    width: 30px;
    flex-shrink: 0;
}

/* Add row */
.add-row[b-hqp2g59d9p] {
    display: flex;
    justify-content: center;
    padding: .5rem 0 .25rem;
    border-top: 1px dashed #e8edf3;
}

/* Actions */
.form-actions[b-hqp2g59d9p] {
    display: flex;
    justify-content: center;
    padding-top: .5rem;
}

.btn-whatif[b-hqp2g59d9p] {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: linear-gradient(135deg, #f4b942 0%, #e8a832 100%);
    color: #1a1a2e;
    border: none;
    padding: .8rem 1.5rem;
    border-radius: .625rem;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform .15s, box-shadow .15s;
    box-shadow: 0 2px 8px rgba(244, 185, 66, .3);
}

.btn-whatif:hover[b-hqp2g59d9p] {
    transform: scale(1.03);
    box-shadow: 0 4px 16px rgba(244, 185, 66, .4);
}

.btn-add[b-hqp2g59d9p] {
    background: none;
    border: 2px dashed #c0c8d4;
    color: #5a6a7e;
    font-size: .95rem;
    font-weight: 600;
    padding: .65rem 1.25rem;
    border-radius: .625rem;
    cursor: pointer;
    transition: border-color .2s, color .2s;
}

.btn-add:hover:not(:disabled)[b-hqp2g59d9p] {
    border-color: #0f3460;
    color: #0f3460;
}

.btn-add:disabled[b-hqp2g59d9p] {
    opacity: .4;
    cursor: not-allowed;
}

.btn-calculate[b-hqp2g59d9p] {
    display: inline-flex;
    align-items: center;
    padding: .75rem 2rem;
    background: #0f3460;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 600;
    border: none;
    border-radius: .625rem;
    cursor: pointer;
    transition: background .2s, transform .15s;
}

.btn-calculate:hover:not(:disabled)[b-hqp2g59d9p] {
    background: #f4b942;
    color: #1a1a2e;
    transform: translateX(2px);
}

.btn-calculate:disabled[b-hqp2g59d9p] {
    opacity: .4;
    cursor: not-allowed;
}

/* Results */
.results-container[b-hqp2g59d9p] {
    max-width: 1100px;
    margin: 1.5rem auto 2rem;
    padding: 0 1.5rem;
}

.results-title[b-hqp2g59d9p] {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Verdict */
.verdict-card[b-hqp2g59d9p] {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 60%, #0f3460 100%);
    color: #fff;
    border-radius: 1rem;
    padding: 2.5rem 2rem;
    margin-bottom: 3rem;
    text-align: center;
}

.verdict-text[b-hqp2g59d9p] {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #c9d8e8;
    margin-bottom: .75rem;
}

.verdict-text strong[b-hqp2g59d9p] {
    color: #fff;
}

.verdict-highlight[b-hqp2g59d9p] {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.5;
    margin: 0;
}

.verdict-highlight.negative[b-hqp2g59d9p] {
    color: #ff6b6b;
}

.verdict-highlight.negative strong[b-hqp2g59d9p] {
    color: #ff4444;
}

.verdict-highlight.positive[b-hqp2g59d9p] {
    color: #69db7c;
}

.verdict-highlight.positive strong[b-hqp2g59d9p] {
    color: #51cf66;
}

.verdict-subtext[b-hqp2g59d9p] {
    font-size: .88rem;
    color: #7a9bb5;
    margin-top: .75rem;
    line-height: 1.6;
    font-style: italic;
}

.chart-wrapper[b-hqp2g59d9p] {
    background: #fff;
    border: 1.5px solid #e8edf3;
    border-radius: .75rem;
    padding: 1.5rem 1.25rem 1rem;
    margin-bottom: 2rem;
    height: 380px;
    position: relative;
}

.results-table-wrapper[b-hqp2g59d9p] {
    overflow-x: auto;
    border: 1.5px solid #e8edf3;
    border-radius: .75rem;
    background: #fff;
}

.results-table[b-hqp2g59d9p] {
    width: 100%;
    border-collapse: collapse;
    font-size: .88rem;
    white-space: nowrap;
}

.results-table th[b-hqp2g59d9p] {
    background: #f2f4f8;
    color: #5a6a7e;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
    font-size: .72rem;
    padding: .75rem .85rem;
    border-bottom: 2px solid #e0e5ed;
    position: sticky;
    top: 0;
}

.results-table td[b-hqp2g59d9p] {
    padding: .65rem .85rem;
    border-bottom: 1px solid #f0f2f6;
    color: #1a1a2e;
}

.results-table .num[b-hqp2g59d9p] {
    text-align: right;
    font-variant-numeric: tabular-nums;
}

.results-table tbody tr:hover[b-hqp2g59d9p] {
    background: #f8f9fb;
}

.results-table .row-negative td:first-child[b-hqp2g59d9p] {
    border-left: 3px solid #e54040;
}

.results-table td.val-negative[b-hqp2g59d9p] {
    color: #d03030;
    font-weight: 600;
}

.results-table td.val-positive[b-hqp2g59d9p] {
    color: #1a8a4a;
    font-weight: 600;
}

.tag-preliminary[b-hqp2g59d9p] {
    display: inline-block;
    font-size: .65rem;
    background: #fdf0d5;
    color: #b8860b;
    padding: .1rem .4rem;
    border-radius: .25rem;
    margin-left: .3rem;
    vertical-align: middle;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.btn-toggle-detail[b-hqp2g59d9p] {
    display: block;
    margin: 1.5rem auto 2.5rem;
    background: none;
    border: 2px solid #0f3460;
    color: #0f3460;
    font-size: .95rem;
    font-weight: 600;
    cursor: pointer;
    padding: .6rem 1.5rem;
    border-radius: .625rem;
    transition: background .2s, color .2s;
}

.btn-toggle-detail:hover[b-hqp2g59d9p] {
    background: #0f3460;
    color: #fff;
}

/* Share */
.share-section[b-hqp2g59d9p] {
    display: flex;
    justify-content: center;
    padding: 1rem 0 .5rem;
}

.btn-share[b-hqp2g59d9p] {
    background: none;
    border: 2px solid #0f3460;
    color: #0f3460;
    font-size: .95rem;
    font-weight: 600;
    padding: .6rem 1.75rem;
    border-radius: .625rem;
    cursor: pointer;
    transition: background .2s, color .2s;
}

.btn-share:hover[b-hqp2g59d9p] {
    background: #0f3460;
    color: #fff;
}

/* Delete */
.delete-section[b-hqp2g59d9p] {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 0 2rem;
    gap: .5rem;
}

.btn-delete-link[b-hqp2g59d9p] {
    background: none;
    border: none;
    color: #c0c8d4;
    font-size: .8rem;
    cursor: pointer;
    text-decoration: underline;
    padding: 0;
    transition: color .2s;
}

.btn-delete-link:hover[b-hqp2g59d9p] {
    color: #e54040;
}

.delete-form[b-hqp2g59d9p] {
    display: flex;
    align-items: center;
    gap: .5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.delete-input[b-hqp2g59d9p] {
    border: 1.5px solid #d0d7e2;
    border-radius: .5rem;
    padding: .5rem .85rem;
    font-size: .9rem;
    color: #1a1a2e;
    background: #f8f9fb;
    outline: none;
    text-transform: uppercase;
    letter-spacing: .1em;
    width: 140px;
    transition: border-color .2s;
}

.delete-input:focus[b-hqp2g59d9p] {
    border-color: #e54040;
    background: #fff;
}

.btn-delete-confirm[b-hqp2g59d9p] {
    background: #e54040;
    color: #fff;
    border: none;
    padding: .5rem 1.1rem;
    border-radius: .5rem;
    font-size: .88rem;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s;
}

.btn-delete-confirm:hover[b-hqp2g59d9p] {
    background: #c03030;
}

.btn-delete-cancel[b-hqp2g59d9p] {
    background: none;
    border: 1.5px solid #d0d7e2;
    color: #5a6a7e;
    padding: .5rem 1rem;
    border-radius: .5rem;
    font-size: .88rem;
    font-weight: 600;
    cursor: pointer;
    transition: border-color .2s;
}

.btn-delete-cancel:hover[b-hqp2g59d9p] {
    border-color: #9aa5b4;
}

.delete-error[b-hqp2g59d9p] {
    font-size: .82rem;
    color: #e54040;
    margin: 0;
}

/* Back link */
.back-link[b-hqp2g59d9p] {
    text-align: center;
    padding: 1rem 0 3rem;
}

.back-link a[b-hqp2g59d9p] {
    color: #9aa5b4;
    text-decoration: none;
    font-size: .85rem;
    transition: color .2s;
}

.back-link a:hover[b-hqp2g59d9p] {
    color: #0f3460;
}
/* /Components/Shared/ChatBot.razor.rz.scp.css */
.chatbot-widget[b-yd9lbr1giz] {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 999;
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

/* Trigger button */
.chatbot-closed[b-yd9lbr1giz] {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: .6rem;
}

.chatbot-trigger[b-yd9lbr1giz] {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #0f3460;
    color: #fff;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(15, 52, 96, .35);
    transition: transform .15s, box-shadow .15s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot-trigger:hover[b-yd9lbr1giz] {
    transform: scale(1.08);
    box-shadow: 0 6px 24px rgba(15, 52, 96, .45);
}

/* Nudge bubble */
.chatbot-nudge[b-yd9lbr1giz] {
    display: flex;
    align-items: flex-start;
    gap: .5rem;
    background: linear-gradient(135deg, #0f3460 0%, #1a4a8a 100%);
    color: #fff;
    padding: .7rem .9rem;
    border-radius: .75rem .75rem 0 .75rem;
    font-size: .84rem;
    line-height: 1.5;
    max-width: 270px;
    box-shadow: 0 0 20px rgba(244, 185, 66, .6), 0 0 50px rgba(244, 185, 66, .2), 0 4px 20px rgba(15, 52, 96, .3);
    border: 2px solid rgba(244, 185, 66, .75);
    cursor: pointer;
    animation: nudgeIn-b-yd9lbr1giz .4s ease-out, nudgeGlow-b-yd9lbr1giz 2s ease-in-out .6s infinite;
}

.nudge-close[b-yd9lbr1giz] {
    background: none;
    border: none;
    color: rgba(255, 255, 255, .5);
    font-size: .85rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    flex-shrink: 0;
}

.nudge-close:hover[b-yd9lbr1giz] {
    color: #fff;
}

@keyframes nudgeIn-b-yd9lbr1giz {
    from { opacity: 0; transform: translateY(8px) scale(.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes nudgePulse-b-yd9lbr1giz {
    0%, 100% { transform: scale(1); box-shadow: 0 0 12px rgba(244, 185, 66, .5), 0 4px 16px rgba(15, 52, 96, .25); }
    50% { transform: scale(1.03); box-shadow: 0 0 24px rgba(244, 185, 66, .7), 0 6px 24px rgba(15, 52, 96, .4); }
}

@keyframes nudgeGlow-b-yd9lbr1giz {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(244, 185, 66, .6), 0 0 50px rgba(244, 185, 66, .2), 0 4px 20px rgba(15, 52, 96, .3);
        border-color: rgba(244, 185, 66, .75);
    }
    50% {
        transform: scale(1.04);
        box-shadow: 0 0 36px rgba(244, 185, 66, .95), 0 0 70px rgba(244, 185, 66, .35), 0 6px 28px rgba(15, 52, 96, .4);
        border-color: rgba(244, 185, 66, 1);
    }
}

/* Panel */
.chatbot-panel[b-yd9lbr1giz] {
    width: 380px;
    height: min(680px, calc(100dvh - 6rem));
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 8px 40px rgba(0, 0, 0, .18);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.chatbot-header[b-yd9lbr1giz] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #0f3460;
    color: #fff;
    padding: .6rem 1rem;
    font-size: .95rem;
    font-weight: 600;
}

.chatbot-header-title[b-yd9lbr1giz] {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.ruda-avatar[b-yd9lbr1giz] {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.ruda-avatar-header[b-yd9lbr1giz] {
    width: 32px;
    height: 32px;
    border: 2px solid rgba(255, 255, 255, .3);
    cursor: pointer;
    transition: border-color .15s, transform .15s;
}

.ruda-avatar-header:hover[b-yd9lbr1giz] {
    border-color: #f4b942;
    transform: scale(1.1);
}

.ruda-avatar-nudge[b-yd9lbr1giz] {
    width: 36px;
    height: 36px;
    border: 2px solid rgba(244, 185, 66, .6);
}

/* Lightbox */
.ruda-lightbox[b-yd9lbr1giz] {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, .75);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    animation: lbFadeIn-b-yd9lbr1giz .2s ease-out;
    outline: none;
}

.ruda-lightbox-img[b-yd9lbr1giz] {
    max-width: min(90vw, 500px);
    max-height: 80vh;
    border-radius: 1rem;
    box-shadow: 0 8px 40px rgba(0, 0, 0, .5);
    cursor: default;
    animation: lbZoomIn-b-yd9lbr1giz .25s ease-out;
}

@keyframes lbFadeIn-b-yd9lbr1giz {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes lbZoomIn-b-yd9lbr1giz {
    from { transform: scale(.85); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.chatbot-close[b-yd9lbr1giz] {
    background: none;
    border: none;
    color: rgba(255, 255, 255, .6);
    font-size: 1.1rem;
    cursor: pointer;
    padding: .2rem .4rem;
    border-radius: .25rem;
    transition: color .15s, background .15s;
}

.chatbot-close:hover[b-yd9lbr1giz] {
    color: #fff;
    background: rgba(255, 255, 255, .15);
}

/* Messages area */
.chatbot-messages[b-yd9lbr1giz] {
    flex: 1;
    overflow-y: auto;
    padding: .75rem;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    min-height: 350px;
}

.msg[b-yd9lbr1giz] {
    max-width: 88%;
    display: flex;
    align-items: flex-start;
    gap: .45rem;
    font-size: .88rem;
    line-height: 1.55;
    word-break: break-word;
}

.msg-content[b-yd9lbr1giz] {
    padding: .6rem .85rem;
    border-radius: .75rem;
    min-width: 0;
}

.msg-bot .msg-content[b-yd9lbr1giz] {
    background: #f0f2f6;
    color: #1a1a2e;
    border-bottom-left-radius: .2rem;
}

.msg-user .msg-content[b-yd9lbr1giz] {
    background: #0f3460;
    color: #fff;
    border-bottom-right-radius: .2rem;
}

.msg-text[b-yd9lbr1giz] {
    white-space: pre-wrap;
}

[b-yd9lbr1giz] .chat-link {
    color: #2e86de;
    text-decoration: underline;
    word-break: break-all;
}

.msg-user[b-yd9lbr1giz]  .chat-link {
    color: #b8d4ff;
}

[b-yd9lbr1giz] .chat-code {
    display: inline-block;
    background: rgba(0, 0, 0, .08);
    padding: .1rem .45rem;
    border-radius: .3rem;
    font-family: monospace;
    font-size: .95em;
    font-weight: 700;
    letter-spacing: .1em;
    cursor: pointer;
    transition: background .15s;
}

[b-yd9lbr1giz] .chat-code:hover {
    background: rgba(0, 0, 0, .15);
}

[b-yd9lbr1giz] .chat-code.copied {
    background: #2ecc71;
    color: #fff;
}

.msg-user[b-yd9lbr1giz]  .chat-code {
    background: rgba(255, 255, 255, .2);
}

.msg-bot[b-yd9lbr1giz] {
    align-self: flex-start;
}

.msg-user[b-yd9lbr1giz] {
    align-self: flex-end;
}

/* Typing indicator */
.typing-dots[b-yd9lbr1giz] {
    display: inline-flex;
    gap: .15rem;
    font-size: 1.4rem;
    line-height: 1;
    font-weight: 700;
    color: #9aa5b4;
}

.typing-dots span[b-yd9lbr1giz] {
    animation: blink-b-yd9lbr1giz 1.4s infinite;
}

.typing-dots span:nth-child(2)[b-yd9lbr1giz] {
    animation-delay: .2s;
}

.typing-dots span:nth-child(3)[b-yd9lbr1giz] {
    animation-delay: .4s;
}

@keyframes blink-b-yd9lbr1giz {
    0%, 80%, 100% { opacity: .2; }
    40% { opacity: 1; }
}

/* Email draft */
.email-draft[b-yd9lbr1giz] {
    display: block;
    width: 100%;
    min-height: 120px;
    margin-top: .5rem;
    padding: .6rem;
    font-size: .8rem;
    font-family: system-ui, sans-serif;
    line-height: 1.5;
    background: #fff;
    border: 1.5px solid #d0d7e2;
    border-radius: .4rem;
    color: #1a1a2e;
    resize: vertical;
}

.btn-copy-email[b-yd9lbr1giz] {
    display: inline-block;
    margin-top: .35rem;
    background: #0f3460;
    color: #fff;
    border: none;
    padding: .3rem .7rem;
    border-radius: .4rem;
    font-size: .78rem;
    font-weight: 600;
    cursor: pointer;
    transition: background .15s;
}

.btn-copy-email:hover[b-yd9lbr1giz] {
    background: #f4b942;
    color: #1a1a2e;
}

.btn-copy-email.copied[b-yd9lbr1giz] {
    background: #2ecc71;
}

/* Input area */
.chatbot-input[b-yd9lbr1giz] {
    display: flex;
    gap: .4rem;
    padding: .6rem .75rem;
    border-top: 1px solid #e8edf3;
    background: #f8f9fb;
}

.chatbot-input input[b-yd9lbr1giz] {
    flex: 1;
    border: 1.5px solid #d0d7e2;
    border-radius: .5rem;
    padding: .5rem .75rem;
    font-size: .88rem;
    color: #1a1a2e;
    background: #fff;
    outline: none;
    transition: border-color .15s;
}

.chatbot-input input:focus[b-yd9lbr1giz] {
    border-color: #0f3460;
}

.chatbot-send[b-yd9lbr1giz] {
    width: 38px;
    height: 38px;
    border: none;
    border-radius: .5rem;
    background: #0f3460;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background .15s;
    flex-shrink: 0;
}

.chatbot-send:hover:not(:disabled)[b-yd9lbr1giz] {
    background: #f4b942;
    color: #1a1a2e;
}

.chatbot-send:disabled[b-yd9lbr1giz] {
    opacity: .4;
    cursor: not-allowed;
}

/* Mobile */
@media (max-width: 440px) {
    .chatbot-widget[b-yd9lbr1giz] {
        bottom: 1rem;
        right: 1rem;
    }

    .chatbot-panel[b-yd9lbr1giz] {
        width: calc(100vw - 2rem);
        max-height: calc(100dvh - 5rem);
    }
}
/* /Components/Shared/NavBar.razor.rz.scp.css */
.top-nav-wrapper[b-l9du41br4c] {
    background: #0f3460;
}

.top-nav[b-l9du41br4c] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
    padding: .6rem 1.5rem;
}

.nav-brand[b-l9du41br4c] {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    letter-spacing: -.02em;
}

.nav-brand:hover[b-l9du41br4c] {
    color: #f4b942;
}

.nav-links[b-l9du41br4c] {
    display: flex;
    gap: .25rem;
}

.nav-link[b-l9du41br4c] {
    font-size: .85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .6);
    text-decoration: none;
    padding: .35rem .85rem;
    border-radius: 2rem;
    transition: color .15s, background .15s;
}

.nav-link:hover[b-l9du41br4c] {
    color: #fff;
    background: rgba(255, 255, 255, .1);
}

.nav-link.active[b-l9du41br4c] {
    color: #fff;
    background: rgba(255, 255, 255, .15);
}
/* /Components/Shared/SdiletDialog.razor.rz.scp.css */
.dialog-overlay[b-8dov2srmrz] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 1rem;
}

.dialog-box[b-8dov2srmrz] {
    background: #fff;
    border-radius: 1rem;
    padding: 2rem;
    width: 100%;
    max-width: 460px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.dialog-box h3[b-8dov2srmrz] {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 1rem;
}

.dialog-info[b-8dov2srmrz] {
    font-size: .88rem;
    color: #5a6a7e;
    background: #f0f5ff;
    border-left: 3px solid #0f3460;
    border-radius: .4rem;
    padding: .75rem 1rem;
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.dialog-label[b-8dov2srmrz] {
    display: block;
    font-size: .78rem;
    font-weight: 600;
    color: #5a6a7e;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: .4rem;
}

.dialog-input[b-8dov2srmrz] {
    width: 100%;
    border: 1.5px solid #d0d7e2;
    border-radius: .5rem;
    padding: .65rem .9rem;
    font-size: .95rem;
    color: #1a1a2e;
    background: #f8f9fb;
    outline: none;
    transition: border-color .2s;
    box-sizing: border-box;
    margin-bottom: 1.5rem;
}

.dialog-input:focus[b-8dov2srmrz] {
    border-color: #0f3460;
    background: #fff;
}

.dialog-actions[b-8dov2srmrz] {
    display: flex;
    gap: .75rem;
    justify-content: flex-end;
}

.dialog-btn-secondary[b-8dov2srmrz] {
    background: none;
    border: 1.5px solid #d0d7e2;
    color: #5a6a7e;
    padding: .6rem 1.25rem;
    border-radius: .5rem;
    font-size: .9rem;
    font-weight: 600;
    cursor: pointer;
    transition: border-color .2s, color .2s;
}

.dialog-btn-secondary:hover[b-8dov2srmrz] {
    border-color: #9aa5b4;
    color: #1a1a2e;
}

.dialog-btn-primary[b-8dov2srmrz] {
    background: #0f3460;
    color: #fff;
    border: none;
    padding: .6rem 1.5rem;
    border-radius: .5rem;
    font-size: .9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s, color .2s;
}

.dialog-btn-primary:hover:not(:disabled)[b-8dov2srmrz] {
    background: #f4b942;
    color: #1a1a2e;
}

.dialog-btn-primary:disabled[b-8dov2srmrz] {
    opacity: .5;
    cursor: not-allowed;
}

/* Result phase */
.dialog-jmeno[b-8dov2srmrz] {
    font-size: .88rem;
    color: #9aa5b4;
    margin: -.5rem 0 1rem;
}

.dialog-url-row[b-8dov2srmrz] {
    display: flex;
    align-items: center;
    gap: .5rem;
    background: #f8f9fb;
    border: 1.5px solid #e8edf3;
    border-radius: .5rem;
    padding: .6rem .85rem;
    margin-bottom: 1.25rem;
}

.dialog-url[b-8dov2srmrz] {
    flex: 1;
    font-size: .8rem;
    color: #1a1a2e;
    word-break: break-all;
    font-family: monospace;
}

.dialog-btn-copy[b-8dov2srmrz] {
    flex-shrink: 0;
    background: #0f3460;
    color: #fff;
    border: none;
    padding: .4rem .85rem;
    border-radius: .4rem;
    font-size: .8rem;
    font-weight: 600;
    cursor: pointer;
    transition: background .15s, color .15s;
    white-space: nowrap;
}

.dialog-btn-copy:hover[b-8dov2srmrz] {
    background: #f4b942;
    color: #1a1a2e;
}

.dialog-btn-copy.copied[b-8dov2srmrz] {
    background: #2ecc71;
    color: #fff;
}

.dialog-delete-box[b-8dov2srmrz] {
    display: flex;
    align-items: center;
    gap: .75rem;
    background: #fff8e8;
    border: 1.5px solid #f4b942;
    border-radius: .5rem;
    padding: .75rem 1rem;
    margin-bottom: .75rem;
}

.dialog-delete-label[b-8dov2srmrz] {
    font-size: .82rem;
    font-weight: 600;
    color: #b8860b;
    white-space: nowrap;
}

.dialog-delete-kod[b-8dov2srmrz] {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1a2e;
    letter-spacing: .15em;
    background: none;
    flex: 1;
}

.dialog-delete-warning[b-8dov2srmrz] {
    font-size: .82rem;
    font-weight: 600;
    color: #b8860b;
    background: #fff8e8;
    border: 1.5px solid #f4b942;
    border-radius: .4rem;
    padding: .6rem .85rem;
    margin: 0 0 1.5rem;
    line-height: 1.5;
}
