/* /Components/Account/ModernLogin.razor.rz.scp.css */
.modern-auth-container[b-ajqtwtab6a] {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.auth-card[b-ajqtwtab6a] {
    width: 100%;
    max-width: 480px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    animation: slideUp-b-ajqtwtab6a 0.4s ease;
}

@keyframes slideUp-b-ajqtwtab6a {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.auth-header[b-ajqtwtab6a] {
    padding: 40px 40px 30px;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.auth-logo[b-ajqtwtab6a] {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    backdrop-filter: blur(10px);
}

.auth-header h1[b-ajqtwtab6a] {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.auth-header p[b-ajqtwtab6a] {
    font-size: 15px;
    margin: 0;
    opacity: 0.95;
}

.auth-body[b-ajqtwtab6a] {
    padding: 40px;
}

.form-group[b-ajqtwtab6a] {
    margin-bottom: 24px;
}

.form-group label[b-ajqtwtab6a] {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 8px;
}

.input-with-icon[b-ajqtwtab6a] {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-icon i[b-ajqtwtab6a] {
    position: absolute;
    left: 16px;
    font-size: 18px;
    color: #64748b;
    pointer-events: none;
}

.form-input[b-ajqtwtab6a] {
    width: 100%;
    padding: 14px 16px 14px 48px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 15px;
    color: #0f172a;
    transition: all 0.2s ease;
    background: white;
}

.form-input:focus[b-ajqtwtab6a] {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.form-input[b-ajqtwtab6a]::placeholder {
    color: #94a3b8;
}

.validation-message[b-ajqtwtab6a] {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    color: #dc2626;
}

.form-actions[b-ajqtwtab6a] {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 24px;
}

.link-primary[b-ajqtwtab6a] {
    font-size: 14px;
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.link-primary:hover[b-ajqtwtab6a] {
    color: #764ba2;
}

.btn-auth-primary[b-ajqtwtab6a] {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-auth-primary:hover:not(:disabled)[b-ajqtwtab6a] {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.btn-auth-primary:disabled[b-ajqtwtab6a] {
    opacity: 0.7;
    cursor: not-allowed;
}

.spinner[b-ajqtwtab6a] {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin-b-ajqtwtab6a 0.8s linear infinite;
}

@keyframes spin-b-ajqtwtab6a {
    to {
        transform: rotate(360deg);
    }
}

.alert-box[b-ajqtwtab6a] {
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 24px;
    display: flex;
    gap: 12px;
    animation: shake-b-ajqtwtab6a 0.4s ease;
}

@keyframes shake-b-ajqtwtab6a {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-4px); }
    75% { transform: translateX(4px); }
}

.alert-danger[b-ajqtwtab6a] {
    background: #fee2e2;
    border: 1px solid #fecaca;
    color: #dc2626;
}

.alert-box i[b-ajqtwtab6a] {
    font-size: 20px;
    flex-shrink: 0;
}

.alert-content[b-ajqtwtab6a] {
    flex: 1;
}

.alert-message[b-ajqtwtab6a] {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

.alert-action-btn[b-ajqtwtab6a] {
    padding: 6px 12px;
    background: #dc2626;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.alert-action-btn:hover[b-ajqtwtab6a] {
    background: #b91c1c;
}

.auth-footer[b-ajqtwtab6a] {
    padding: 24px 40px;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    text-align: center;
}

.auth-footer p[b-ajqtwtab6a] {
    margin: 0;
    font-size: 14px;
    color: #64748b;
}

/* Responsive Design */
@media (max-width: 768px) {
    .modern-auth-container[b-ajqtwtab6a] {
        padding: 20px;
    }

    .auth-card[b-ajqtwtab6a] {
        border-radius: 16px;
    }

    .auth-header[b-ajqtwtab6a] {
        padding: 30px 24px 24px;
    }

    .auth-header h1[b-ajqtwtab6a] {
        font-size: 24px;
    }

    .auth-body[b-ajqtwtab6a] {
        padding: 30px 24px;
    }

    .auth-footer[b-ajqtwtab6a] {
        padding: 20px 24px;
    }
}

@media (max-width: 480px) {
    .auth-header[b-ajqtwtab6a] {
        padding: 24px 20px 20px;
    }

    .auth-header h1[b-ajqtwtab6a] {
        font-size: 22px;
    }

    .auth-body[b-ajqtwtab6a] {
        padding: 24px 20px;
    }

    .auth-logo[b-ajqtwtab6a] {
        width: 56px;
        height: 56px;
        font-size: 28px;
    }
}
/* /Components/Layout/DomainLayout.razor.rz.scp.css */
.modern-layout[b-4rry4frmmb] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: #f8fafc;
}

.main-content[b-4rry4frmmb] {
    flex: 1;
    padding: 2rem;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .main-content[b-4rry4frmmb] {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .main-content[b-4rry4frmmb] {
        padding: 0.75rem;
    }
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.app-shell[b-65fb6uccts] {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.skip-link[b-65fb6uccts] {
    position: absolute;
    top: 0;
    left: 0;
    background: #4c1d95;
    color: #ffffff;
    padding: 0.625rem 1rem;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    border-bottom-right-radius: 0.5rem;
    transform: translateY(-200%);
    transition: transform 0.15s ease;
    z-index: 100;
}

.skip-link:focus[b-65fb6uccts] {
    transform: translateY(0);
    outline: 2px solid #c4b5fd;
    outline-offset: 2px;
}

.app-main[b-65fb6uccts] {
    flex: 1;
}

.app-main:focus[b-65fb6uccts] {
    outline: none;
}

#blazor-error-ui[b-65fb6uccts] {
    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-65fb6uccts] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/ModernMainLayout.razor.rz.scp.css */
/* Modern Layout without sidebar */
.modern-layout-content[b-4dd28dvmcb] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: #f8fafc;
}

.modern-main[b-4dd28dvmcb] {
    flex: 1;
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
    padding: 32px 24px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .modern-main[b-4dd28dvmcb] {
        padding: 24px 16px;
    }
}

@media (max-width: 480px) {
    .modern-main[b-4dd28dvmcb] {
        padding: 16px 12px;
    }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-aa8snzupz2],
.components-reconnect-repeated-attempt-visible[b-aa8snzupz2],
.components-reconnect-failed-visible[b-aa8snzupz2],
.components-pause-visible[b-aa8snzupz2],
.components-resume-failed-visible[b-aa8snzupz2],
.components-rejoining-animation[b-aa8snzupz2] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-aa8snzupz2],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-aa8snzupz2],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-aa8snzupz2],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-aa8snzupz2],
#components-reconnect-modal.components-reconnect-retrying[b-aa8snzupz2],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-aa8snzupz2],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-aa8snzupz2],
#components-reconnect-modal.components-reconnect-failed[b-aa8snzupz2],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-aa8snzupz2] {
    display: block;
}


#components-reconnect-modal[b-aa8snzupz2] {
    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-aa8snzupz2 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-aa8snzupz2 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-aa8snzupz2 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-aa8snzupz2]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-aa8snzupz2 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-aa8snzupz2 {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-aa8snzupz2 {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-aa8snzupz2 {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-aa8snzupz2] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-aa8snzupz2] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-aa8snzupz2] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-aa8snzupz2] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-aa8snzupz2] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-aa8snzupz2] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-aa8snzupz2] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-aa8snzupz2 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-aa8snzupz2] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-aa8snzupz2 {
    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/Layout/SharedLayout/CommandPalette.razor.rz.scp.css */
.command-palette-overlay[b-deczkaqpl2] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding-top: 15vh;
    z-index: 9999;
    animation: fadeIn-b-deczkaqpl2 0.15s ease;
}

.command-palette-overlay.active[b-deczkaqpl2] {
    display: flex;
}

@keyframes fadeIn-b-deczkaqpl2 {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.command-palette[b-deczkaqpl2] {
    background: white;
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    width: 90%;
    max-width: 640px;
    max-height: 500px;
    overflow: hidden;
    animation: slideDown-b-deczkaqpl2 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideDown-b-deczkaqpl2 {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.command-search[b-deczkaqpl2] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    border-bottom: 2px solid #f1f5f9;
}

.command-search i[b-deczkaqpl2] {
    font-size: 20px;
    color: #64748b;
}

.command-search input[b-deczkaqpl2] {
    flex: 1;
    border: none;
    outline: none;
    font-size: 16px;
    color: #0f172a;
    background: transparent;
}

.command-search input[b-deczkaqpl2]::placeholder {
    color: #94a3b8;
}

.command-search kbd[b-deczkaqpl2] {
    padding: 4px 8px;
    background: #f1f5f9;
    border-radius: 4px;
    font-size: 11px;
    color: #64748b;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.command-results[b-deczkaqpl2] {
    max-height: 380px;
    overflow-y: auto;
    padding: 8px;
}

.command-results[b-deczkaqpl2]::-webkit-scrollbar {
    width: 8px;
}

.command-results[b-deczkaqpl2]::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 4px;
}

.command-results[b-deczkaqpl2]::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

.command-results[b-deczkaqpl2]::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

.command-item[b-deczkaqpl2] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.command-item:hover[b-deczkaqpl2],
.command-item.selected[b-deczkaqpl2] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.command-item i[b-deczkaqpl2] {
    font-size: 20px;
    min-width: 20px;
}

.command-item:not(:hover):not(.selected) i[b-deczkaqpl2] {
    color: #667eea;
}

.command-content[b-deczkaqpl2] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.command-title[b-deczkaqpl2] {
    font-weight: 600;
    font-size: 14px;
}

.command-description[b-deczkaqpl2] {
    font-size: 12px;
    opacity: 0.8;
}

.command-item:not(:hover):not(.selected) .command-description[b-deczkaqpl2] {
    color: #64748b;
}

.command-shortcut[b-deczkaqpl2] {
    padding: 4px 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    font-size: 11px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
}

.command-item:not(:hover):not(.selected) .command-shortcut[b-deczkaqpl2] {
    background: #f1f5f9;
    color: #64748b;
    border: 1px solid #e2e8f0;
}

.command-empty[b-deczkaqpl2] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 24px;
    color: #94a3b8;
}

.command-empty i[b-deczkaqpl2] {
    font-size: 48px;
    margin-bottom: 12px;
    opacity: 0.5;
}

.command-empty p[b-deczkaqpl2] {
    margin: 0;
    font-size: 14px;
}

.command-footer[b-deczkaqpl2] {
    border-top: 1px solid #f1f5f9;
    padding: 12px 20px;
    background: #fafafa;
}

.command-hint[b-deczkaqpl2] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #64748b;
}

.command-hint kbd[b-deczkaqpl2] {
    padding: 3px 6px;
    background: white;
    border-radius: 3px;
    font-size: 10px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    min-width: 20px;
    text-align: center;
}
/* /Components/Layout/SharedLayout/DomainBreadcrumb.razor.rz.scp.css */
.breadcrumb-container[b-vxp0autf32] {
    background: white;
    border-bottom: 1px solid #e2e8f0;
    padding: 0.875rem 0;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}

.breadcrumb-list[b-vxp0autf32] {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0 auto;
    padding: 0 2rem;
    list-style: none;
    max-width: 1600px;
}

.breadcrumb-item[b-vxp0autf32] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb-item:first-child .separator[b-vxp0autf32] {
    display: none;
}

.separator[b-vxp0autf32] {
    font-size: 0.75rem;
    color: #a0aec0;
}

.breadcrumb-link[b-vxp0autf32] {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.625rem;
    border-radius: 0.5rem;
    color: #64748b;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.875rem;
    font-weight: 500;
}

.breadcrumb-link:hover[b-vxp0autf32] {
    background: #f1f5f9;
    color: #667eea;
}

.breadcrumb-link i[b-vxp0autf32] {
    font-size: 1rem;
}

.breadcrumb-current[b-vxp0autf32] {
    padding: 0.375rem 0.625rem;
    color: #0f172a;
    font-weight: 600;
    font-size: 0.875rem;
}

.breadcrumb-item.active[b-vxp0autf32] {
    color: #667eea;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .breadcrumb-container[b-vxp0autf32] {
        padding: 0.5rem 1rem;
    }

    .breadcrumb-list[b-vxp0autf32] {
        gap: 0.25rem;
    }

    .breadcrumb-link[b-vxp0autf32],
    .breadcrumb-current[b-vxp0autf32] {
        font-size: 0.8125rem;
        padding: 0.25rem;
    }

    .separator[b-vxp0autf32] {
        font-size: 0.625rem;
    }
}

@media (max-width: 480px) {
    .breadcrumb-link span:not(:first-child)[b-vxp0autf32] {
        display: none;
    }

    .breadcrumb-item:not(:first-child):not(:last-child)[b-vxp0autf32] {
        display: none;
    }
}
/* /Components/Layout/SharedLayout/NavCard.razor.rz.scp.css */
.nav-card[b-j0zepmm7z2] {
    position: relative;
    border-radius: 16px;
    padding: 32px;
    color: white;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 220px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-card[b-j0zepmm7z2]::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-card[b-j0zepmm7z2]::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.2), transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-card:hover[b-j0zepmm7z2] {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25), 0 12px 24px -8px rgba(0, 0, 0, 0.15);
}

.nav-card:hover[b-j0zepmm7z2]::before,
.nav-card:hover[b-j0zepmm7z2]::after {
    opacity: 1;
}

.nav-card-content[b-j0zepmm7z2] {
    position: relative;
    z-index: 1;
}

.nav-card-icon[b-j0zepmm7z2] {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.95;
    display: block;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.nav-card-title[b-j0zepmm7z2] {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 8px 0;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.nav-card-description[b-j0zepmm7z2] {
    font-size: 14px;
    opacity: 0.95;
    margin: 0;
    line-height: 1.5;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.nav-card-arrow[b-j0zepmm7z2] {
    position: relative;
    z-index: 1;
    font-size: 24px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    align-self: flex-end;
}

.nav-card:hover .nav-card-arrow[b-j0zepmm7z2] {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive design */
@media (max-width: 768px) {
    .nav-card[b-j0zepmm7z2] {
        min-height: 180px;
        padding: 24px;
    }

    .nav-card-icon[b-j0zepmm7z2] {
        font-size: 40px;
        margin-bottom: 12px;
    }

    .nav-card-title[b-j0zepmm7z2] {
        font-size: 20px;
    }

    .nav-card-description[b-j0zepmm7z2] {
        font-size: 13px;
    }
}
/* /Components/Layout/SharedLayout/SiteHeader.razor.rz.scp.css */
/* ===== Portal-wide header: top bar + domain strip with mega menus ===== */

.site-header[b-7sn0bzroi0] {
    position: sticky;
    top: 0;
    z-index: 60;
    background: #ffffff;
    border-bottom: 1px solid #e4e4e7;
}

.sh-inner[b-7sn0bzroi0] {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* ---- Row 1: brand / search / user ---- */

.sh-top[b-7sn0bzroi0] {
    border-bottom: 1px solid #f4f4f5;
}

.sh-top .sh-inner[b-7sn0bzroi0] {
    height: 58px;
}

.sh-brand[b-7sn0bzroi0] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    flex-shrink: 0;
}

.sh-brand-mark[b-7sn0bzroi0] {
    display: block;
    flex: none;
    border-radius: 7px;
}

.sh-brand-words[b-7sn0bzroi0] {
    display: flex;
    flex-direction: column;
    line-height: 1;
    gap: 0.16rem;
}

/* Newsreader is the face the domain front pages already set — the brand should
   speak in it too, rather than the UI sans. */
.sh-brand-name[b-7sn0bzroi0] {
    font-family: "Newsreader", Georgia, "Times New Roman", serif;
    font-weight: 600;
    font-size: 1.22rem;
    letter-spacing: -0.015em;
    color: #18181b;
}

.sh-brand-sub[b-7sn0bzroi0] {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.19em;
    text-transform: uppercase;
    color: #6d28d9;
}

.sh-brand:hover .sh-brand-name[b-7sn0bzroi0] {
    color: #5b21b6;
}

/* Below ~420px the descriptor costs more room than it earns. */
@media (max-width: 26rem) {
    .sh-brand-sub[b-7sn0bzroi0] {
        display: none;
    }
}

.sh-search[b-7sn0bzroi0] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    max-width: 420px;
    padding: 0.45rem 0.875rem;
    border: 1px solid #e4e4e7;
    border-radius: 0.5rem;
    background: #fafafa;
    color: #71717a;
    font-size: 0.875rem;
    text-decoration: none;
    transition: border-color 0.15s, background 0.15s;
}

.sh-search:hover[b-7sn0bzroi0] {
    border-color: #c4b5fd;
    background: #ffffff;
    color: #52525b;
}

.sh-search kbd[b-7sn0bzroi0] {
    margin-left: auto;
    font-size: 0.7rem;
    color: #a1a1aa;
    background: #ffffff;
    border: 1px solid #e4e4e7;
    border-radius: 0.25rem;
    padding: 0.1rem 0.375rem;
    font-family: inherit;
}

.sh-actions[b-7sn0bzroi0] {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    flex-shrink: 0;
}

/* ---- Cross-promotion to TaxCorp AI (thetaxcorp.in) ----
   Deliberately blue rather than the site's violet: this is a doorway OUT to the
   sister product, and colouring it like the rest of the chrome would bury it. */

.sh-ai-link[b-7sn0bzroi0] {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-right: 0.5rem;
    padding: 0.36rem 0.7rem;
    border: 1px solid #c7dbfa;
    border-radius: 999px;
    background: #f2f7fe;
    color: #1553b6;
    font-size: 0.82rem;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.15s ease, border-color 0.15s ease;
}

.sh-ai-link:hover[b-7sn0bzroi0] {
    background: #e4eefc;
    border-color: #9dc1f2;
    color: #0f3f8f;
}

.sh-ai-link strong[b-7sn0bzroi0] {
    font-weight: 700;
}

/* Small "live" tell — the one flourish, and it stops when motion is unwelcome. */
.sh-ai-dot[b-7sn0bzroi0] {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #1a73e8;
    flex: none;
    animation: sh-ai-pulse-b-7sn0bzroi0 2.4s ease-in-out infinite;
}

@keyframes sh-ai-pulse-b-7sn0bzroi0 {
    0%, 100% { opacity: 1; }
    50%      { opacity: 0.35; }
}

@media (prefers-reduced-motion: reduce) {
    .sh-ai-dot[b-7sn0bzroi0] { animation: none; }
}

.sh-ai-arrow[b-7sn0bzroi0] {
    font-size: 0.7rem;
    opacity: 0.65;
}

/* Below ~62rem the wordmark, search and user area need the room; keep the doorway
   but reduce it to its mark. */
@media (max-width: 62rem) {
    .sh-ai-label[b-7sn0bzroi0],
    .sh-ai-arrow[b-7sn0bzroi0] { display: none; }

    .sh-ai-link[b-7sn0bzroi0] { padding: 0.36rem 0.5rem; }

    .sh-ai-link[b-7sn0bzroi0]::after {
        content: "AI";
        font-weight: 700;
        font-size: 0.8rem;
    }
}

/* ---- Announcement strip ---- */

.sh-promo[b-7sn0bzroi0] {
    background: linear-gradient(90deg, #0f3f8f 0%, #1a73e8 100%);
    color: #ffffff;
}

/* The dismissed-state rule deliberately does NOT live here. Blazor's scoped-CSS
   rewriter silently DROPS `:global(html.x) .sh-promo` — the rule never reaches the
   bundle (verified: no such rule in any stylesheet at runtime, while every other
   .sh-promo rule compiled). It lives in wwwroot/css/styles.css instead. */

.sh-promo-inner[b-7sn0bzroi0] {
    min-height: 40px;
    padding-top: 0.4rem;
    padding-bottom: 0.4rem;
    gap: 1rem;
}

.sh-promo-text[b-7sn0bzroi0] {
    font-size: 0.845rem;
    line-height: 1.4;
    color: #eaf1fd;
}

.sh-promo-text strong[b-7sn0bzroi0] {
    color: #ffffff;
    font-weight: 600;
}

.sh-promo-tag[b-7sn0bzroi0] {
    display: inline-block;
    margin-right: 0.5rem;
    padding: 0.08rem 0.42rem;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    vertical-align: 0.08em;
}

.sh-promo-cta[b-7sn0bzroi0] {
    margin-left: auto;
    flex: none;
    padding: 0.3rem 0.8rem;
    border-radius: 5px;
    background: #ffffff;
    color: #0f3f8f;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.sh-promo-cta:hover[b-7sn0bzroi0] {
    background: #eaf1fd;
    color: #0b3170;
}

.sh-promo-close[b-7sn0bzroi0] {
    flex: none;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.78rem;
    line-height: 1;
    padding: 0.35rem;
    cursor: pointer;
    border-radius: 4px;
}

.sh-promo-close:hover[b-7sn0bzroi0] {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
}

.sh-promo-close:focus-visible[b-7sn0bzroi0],
.sh-promo-cta:focus-visible[b-7sn0bzroi0],
.sh-ai-link:focus-visible[b-7sn0bzroi0] {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}

.sh-ai-link:focus-visible[b-7sn0bzroi0] {
    outline-color: #1a73e8;
}

@media (max-width: 48rem) {
    .sh-promo-text[b-7sn0bzroi0] {
        font-size: 0.78rem;
    }

    .sh-promo-inner[b-7sn0bzroi0] {
        gap: 0.6rem;
    }
}

.sh-icon-link[b-7sn0bzroi0] {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    text-decoration: none;
    color: #52525b;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.45rem 0.625rem;
    border-radius: 0.5rem;
    transition: background 0.15s, color 0.15s;
}

.sh-icon-link:hover[b-7sn0bzroi0] {
    background: #f4f4f5;
    color: #18181b;
}

.sh-btn-login[b-7sn0bzroi0],
.sh-btn-signup[b-7sn0bzroi0] {
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.5rem 1.125rem;
    border-radius: 0.5rem;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.sh-btn-login[b-7sn0bzroi0] {
    color: #5b21b6;
    border: 1px solid #ddd6fe;
    background: #ffffff;
}

.sh-btn-login:hover[b-7sn0bzroi0] {
    background: #f5f3ff;
    border-color: #c4b5fd;
}

.sh-btn-signup[b-7sn0bzroi0] {
    background: #5b21b6;
    color: #ffffff;
    margin-left: 0.375rem;
}

.sh-btn-signup:hover[b-7sn0bzroi0] {
    background: #4c1d95;
}

/* ---- User dropdown (details/summary, no JS) ---- */

.sh-user[b-7sn0bzroi0] {
    position: relative;
}

.sh-user-trigger[b-7sn0bzroi0] {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.3rem 0.625rem 0.3rem 0.3rem;
    border-radius: 2rem;
    border: 1px solid transparent;
    font-size: 0.875rem;
    font-weight: 600;
    color: #18181b;
    transition: background 0.15s, border-color 0.15s;
}

.sh-user-trigger[b-7sn0bzroi0]::-webkit-details-marker {
    display: none;
}

.sh-user-trigger:hover[b-7sn0bzroi0],
.sh-user[open] .sh-user-trigger[b-7sn0bzroi0] {
    background: #f4f4f5;
    border-color: #e4e4e7;
}

.sh-user-trigger .bi-chevron-down[b-7sn0bzroi0] {
    font-size: 0.7rem;
    color: #a1a1aa;
}

.sh-avatar[b-7sn0bzroi0] {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, #5b21b6 0%, #8b5cf6 100%);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sh-avatar-lg[b-7sn0bzroi0] {
    width: 42px;
    height: 42px;
    font-size: 0.95rem;
}

.sh-user-menu[b-7sn0bzroi0] {
    position: absolute;
    right: 0;
    top: calc(100% + 0.5rem);
    width: 300px;
    max-height: min(78vh, 640px);
    overflow-y: auto;
    background: #ffffff;
    border: 1px solid #e4e4e7;
    border-radius: 0.75rem;
    box-shadow: 0 12px 32px rgba(24, 24, 27, 0.14);
    padding: 0.5rem;
    z-index: 70;
}

.sh-user-head[b-7sn0bzroi0] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 0.625rem 0.75rem;
}

.sh-user-display[b-7sn0bzroi0] {
    font-weight: 700;
    font-size: 0.9rem;
    color: #18181b;
}

.sh-user-email[b-7sn0bzroi0] {
    font-size: 0.78rem;
    color: #71717a;
    word-break: break-all;
}

.sh-user-subs[b-7sn0bzroi0] {
    padding: 0 0.625rem 0.5rem;
}

.sh-sub-chips[b-7sn0bzroi0] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
}

.sh-sub-chip[b-7sn0bzroi0] {
    font-size: 0.68rem;
    font-weight: 600;
    padding: 0.15rem 0.5rem;
    border-radius: 1rem;
    white-space: nowrap;
}

.sh-sub-chip.on[b-7sn0bzroi0] {
    background: #f0fdf4;
    color: #15803d;
    border: 1px solid #bbf7d0;
}

.sh-sub-chip.off[b-7sn0bzroi0] {
    background: #fafafa;
    color: #a1a1aa;
    border: 1px solid #f4f4f5;
}

.sh-menu-label[b-7sn0bzroi0] {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #a1a1aa;
    padding: 0.375rem 0.625rem 0.25rem;
}

.sh-menu-sep[b-7sn0bzroi0] {
    height: 1px;
    background: #f4f4f5;
    margin: 0.375rem 0;
}

.sh-menu-item[b-7sn0bzroi0] {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.5rem 0.625rem;
    border-radius: 0.5rem;
    text-decoration: none;
    color: #3f3f46;
    font-size: 0.875rem;
    font-weight: 500;
    transition: background 0.15s, color 0.15s;
}

.sh-menu-item:hover[b-7sn0bzroi0] {
    background: #f4f4f5;
    color: #18181b;
}

.sh-menu-item i[b-7sn0bzroi0] {
    width: 1.1rem;
    text-align: center;
    color: #71717a;
}

.sh-menu-danger[b-7sn0bzroi0],
.sh-menu-danger i[b-7sn0bzroi0] {
    color: #b91c1c;
}

.sh-menu-danger:hover[b-7sn0bzroi0] {
    background: #fef2f2;
    color: #991b1b;
}

/* ---- Row 2: domain strip + mega menus ---- */

.sh-domains[b-7sn0bzroi0] {
    background: #ffffff;
}

.sh-domains-inner[b-7sn0bzroi0] {
    position: relative;
    gap: 0;
    overflow: visible;
}

.sh-domain[b-7sn0bzroi0] {
    position: static;
}

[b-7sn0bzroi0] .sh-domain-link {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    text-decoration: none;
    color: #52525b;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.625rem 0.875rem;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: color 0.15s, border-color 0.15s, background 0.15s;
}

[b-7sn0bzroi0] .sh-domain-link:hover {
    color: #18181b;
    background: #fafafa;
}

[b-7sn0bzroi0] .sh-domain-link.active {
    color: #5b21b6;
    border-bottom-color: #5b21b6;
    font-weight: 600;
}

[b-7sn0bzroi0] .sh-caret {
    font-size: 0.62rem;
    color: #a1a1aa;
    transition: transform 0.15s;
}

.sh-domain:hover[b-7sn0bzroi0]  .sh-caret,
.sh-domain:focus-within[b-7sn0bzroi0]  .sh-caret {
    transform: rotate(180deg);
}

/* Mega panel: anchored to the strip, spans its full width */
.sh-mega[b-7sn0bzroi0] {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #ffffff;
    border: 1px solid #e4e4e7;
    border-top: none;
    border-radius: 0 0 0.75rem 0.75rem;
    box-shadow: 0 16px 40px rgba(24, 24, 27, 0.16);
    padding: 1.25rem 1.5rem 1.5rem;
    z-index: 65;
}

.sh-domain:hover .sh-mega[b-7sn0bzroi0],
.sh-domain:focus-within .sh-mega[b-7sn0bzroi0] {
    display: block;
}

.sh-mega-head[b-7sn0bzroi0] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 0.875rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #f4f4f5;
}

.sh-mega-head > i[b-7sn0bzroi0] {
    font-size: 1.4rem;
    color: #5b21b6;
    background: #f5f3ff;
    border-radius: 0.625rem;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sh-mega-title[b-7sn0bzroi0] {
    font-size: 1rem;
    font-weight: 700;
    color: #18181b;
    text-decoration: none;
}

.sh-mega-title:hover[b-7sn0bzroi0] {
    color: #5b21b6;
}

.sh-mega-desc[b-7sn0bzroi0] {
    font-size: 0.8rem;
    color: #71717a;
}

.sh-mega-grid[b-7sn0bzroi0] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 1.25rem 1.5rem;
}

.sh-mega-cat[b-7sn0bzroi0] {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #a1a1aa;
    margin-bottom: 0.45rem;
}

.sh-mega-cat i[b-7sn0bzroi0] {
    color: #8b5cf6;
}

.sh-mega-item[b-7sn0bzroi0] {
    display: block;
    text-decoration: none;
    color: #3f3f46;
    font-size: 0.855rem;
    padding: 0.28rem 0.375rem;
    margin-left: -0.375rem;
    border-radius: 0.375rem;
    transition: background 0.15s, color 0.15s;
}

.sh-mega-item:hover[b-7sn0bzroi0] {
    background: #f5f3ff;
    color: #5b21b6;
}

/* ---- Responsive ---- */

@media (max-width: 1024px) {
    .sh-icon-label[b-7sn0bzroi0] {
        display: none;
    }
}

@media (max-width: 900px) {
    .sh-inner[b-7sn0bzroi0] {
        gap: 0.875rem;
        padding: 0 1rem;
    }

    .sh-search span[b-7sn0bzroi0] {
        display: none;
    }

    .sh-search[b-7sn0bzroi0] {
        flex: 0 0 auto;
        max-width: none;
    }

    .sh-search kbd[b-7sn0bzroi0] {
        display: none;
    }

    .sh-user-name[b-7sn0bzroi0] {
        display: none;
    }

    /* touch: strip scrolls horizontally, tap navigates to domain home */
    .sh-domains-inner[b-7sn0bzroi0] {
        overflow-x: auto;
        scrollbar-width: none;
    }

    .sh-domains-inner[b-7sn0bzroi0]::-webkit-scrollbar {
        display: none;
    }

    .sh-mega[b-7sn0bzroi0] {
        display: none !important;
    }
}
/* /Components/Layout/SharedLayout/TabsContainer.razor.rz.scp.css */
/* Tabs Container */
.tabs-container[b-ye9qibenlp] {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Tab Headers */
.tabs-header[b-ye9qibenlp] {
    display: flex;
    gap: 4px;
    padding: 8px;
    background: #f8fafc;
    border-bottom: 2px solid #e2e8f0;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: #cbd5e1 #f8fafc;
}

.tabs-header[b-ye9qibenlp]::-webkit-scrollbar {
    height: 6px;
}

.tabs-header[b-ye9qibenlp]::-webkit-scrollbar-track {
    background: #f8fafc;
}

.tabs-header[b-ye9qibenlp]::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}

.tabs-header[b-ye9qibenlp]::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Tab Button */
.tab-button[b-ye9qibenlp] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border: none;
    background: transparent;
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    position: relative;
}

.tab-button:hover[b-ye9qibenlp] {
    background: #f1f5f9;
    color: #0f172a;
}

.tab-button.active[b-ye9qibenlp] {
    background: white;
    color: #667eea;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.tab-button i[b-ye9qibenlp] {
    font-size: 16px;
}

/* Tab Badge */
.tab-badge[b-ye9qibenlp] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    background: #ef4444;
    color: white;
    font-size: 11px;
    font-weight: 700;
    border-radius: 10px;
    line-height: 1;
}

.tab-button.active .tab-badge[b-ye9qibenlp] {
    background: #667eea;
}

/* Tab Content */
.tabs-content[b-ye9qibenlp] {
    padding: 24px;
    background: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .tabs-header[b-ye9qibenlp] {
        gap: 2px;
        padding: 6px;
    }

    .tab-button[b-ye9qibenlp] {
        padding: 10px 16px;
        font-size: 13px;
    }

    .tab-button i[b-ye9qibenlp] {
        font-size: 14px;
    }

    .tabs-content[b-ye9qibenlp] {
        padding: 16px;
    }
}

@media (max-width: 480px) {
    .tab-button[b-ye9qibenlp] {
        padding: 8px 12px;
        font-size: 12px;
    }

    .tab-button span[b-ye9qibenlp] {
        display: none;
    }

    .tab-button i[b-ye9qibenlp] {
        display: block;
        margin: 0;
    }

    .tabs-content[b-ye9qibenlp] {
        padding: 12px;
    }
}

/* Alternative Pill Style Tabs */
.tabs-container.tabs-pills .tabs-header[b-ye9qibenlp] {
    background: transparent;
    border-bottom: none;
    gap: 8px;
    padding: 16px;
}

.tabs-container.tabs-pills .tab-button[b-ye9qibenlp] {
    border-radius: 20px;
    padding: 10px 20px;
    border: 2px solid #e2e8f0;
}

.tabs-container.tabs-pills .tab-button.active[b-ye9qibenlp] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: transparent;
}

.tabs-container.tabs-pills .tab-button.active .tab-badge[b-ye9qibenlp] {
    background: rgba(255, 255, 255, 0.3);
}

/* Alternative Underline Style Tabs */
.tabs-container.tabs-underline .tabs-header[b-ye9qibenlp] {
    background: transparent;
    border-bottom: 2px solid #e2e8f0;
    gap: 24px;
    padding: 0 16px;
}

.tabs-container.tabs-underline .tab-button[b-ye9qibenlp] {
    border-radius: 0;
    padding: 16px 4px;
    position: relative;
}

.tabs-container.tabs-underline .tab-button[b-ye9qibenlp]::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: transparent;
    transition: background 0.2s ease;
}

.tabs-container.tabs-underline .tab-button.active[b-ye9qibenlp]::after {
    background: #667eea;
}

.tabs-container.tabs-underline .tab-button:hover[b-ye9qibenlp] {
    background: transparent;
}

.tabs-container.tabs-underline .tab-button.active[b-ye9qibenlp] {
    background: transparent;
    box-shadow: none;
}
/* /Components/Pages/Domains/DirectTaxesLanding.razor.rz.scp.css */
.dt-hero[b-qia1hel9tb] {
    padding: 4rem 1.5rem 3rem;
    background: linear-gradient(180deg, #faf5ff 0%, #ffffff 100%);
    border-bottom: 1px solid #f4f4f5;
}

.dt-inner[b-qia1hel9tb] {
    max-width: 1080px;
    margin: 0 auto;
}

.dt-eyebrow[b-qia1hel9tb] {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #6d28d9;
    background: #ede9fe;
    padding: 0.375rem 0.75rem;
    border-radius: 999px;
    margin-bottom: 1.25rem;
}

h1[b-qia1hel9tb] {
    font-size: clamp(1.875rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: #18181b;
    margin: 0 0 1rem;
}

.dt-sub[b-qia1hel9tb] {
    font-size: 1.0625rem;
    line-height: 1.6;
    color: #52525b;
    max-width: 680px;
    margin: 0 0 1.75rem;
}

.dt-cta[b-qia1hel9tb] {
    display: flex;
    gap: 0.625rem;
    flex-wrap: wrap;
}

.dt-btn-primary[b-qia1hel9tb], .dt-btn-secondary[b-qia1hel9tb] {
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    padding: 0.625rem 1.25rem;
    border-radius: 0.5rem;
    display: inline-block;
    transition: all 0.15s;
}

.dt-btn-primary[b-qia1hel9tb] {
    background: #5b21b6;
    color: #ffffff;
}

    .dt-btn-primary:hover[b-qia1hel9tb] {
        background: #4c1d95;
    }

.dt-btn-secondary[b-qia1hel9tb] {
    background: #ffffff;
    color: #5b21b6;
    border: 1px solid #e9d5ff;
}

    .dt-btn-secondary:hover[b-qia1hel9tb] {
        background: #faf5ff;
        border-color: #c4b5fd;
    }

.dt-section[b-qia1hel9tb] {
    padding: 3.5rem 1.5rem;
}

.dt-section-alt[b-qia1hel9tb] {
    background: #fafafa;
    border-top: 1px solid #f4f4f5;
}

.section-header[b-qia1hel9tb] {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

h2[b-qia1hel9tb] {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #18181b;
    margin: 0;
}

.see-all[b-qia1hel9tb] {
    text-decoration: none;
    color: #5b21b6;
    font-size: 0.875rem;
    font-weight: 600;
}

    .see-all:hover[b-qia1hel9tb] {
        color: #4c1d95;
    }

.dt-grid[b-qia1hel9tb] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
}

.dt-card[b-qia1hel9tb] {
    background: #ffffff;
    border: 1px solid #e4e4e7;
    border-radius: 0.75rem;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.dt-card-tag[b-qia1hel9tb] {
    align-self: flex-start;
    font-size: 0.75rem;
    font-weight: 600;
    color: #6d28d9;
    background: #ede9fe;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
}

.dt-card-title[b-qia1hel9tb] {
    font-weight: 700;
    color: #18181b;
    font-size: 1rem;
    margin: 0;
    line-height: 1.3;
}

.dt-card-meta[b-qia1hel9tb] {
    color: #52525b;
    font-size: 0.8125rem;
    margin: 0;
}

.dt-card-body[b-qia1hel9tb] {
    color: #52525b;
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0.25rem 0 0;
}

.dt-list[b-qia1hel9tb] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.dt-row[b-qia1hel9tb] {
    background: #ffffff;
    border: 1px solid #e4e4e7;
    border-radius: 0.75rem;
    padding: 1.25rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.dt-row-main[b-qia1hel9tb] {
    flex: 1;
    min-width: 0;
}

    .dt-row-main h3[b-qia1hel9tb] {
        font-size: 1rem;
        font-weight: 700;
        color: #18181b;
        margin: 0 0 0.25rem;
        line-height: 1.3;
    }

.dt-row-meta[b-qia1hel9tb] {
    color: #52525b;
    font-size: 0.8125rem;
    margin: 0 0 0.5rem;
}

.dt-row-body[b-qia1hel9tb] {
    color: #52525b;
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}

.dt-row-locked[b-qia1hel9tb] {
    font-size: 0.8125rem;
    color: #a1a1aa;
    margin: 0;
    font-style: italic;
}

.dt-row-side[b-qia1hel9tb] {
    flex-shrink: 0;
}

.dt-row-link[b-qia1hel9tb] {
    text-decoration: none;
    background: #faf5ff;
    color: #5b21b6;
    font-weight: 600;
    font-size: 0.8125rem;
    padding: 0.4rem 0.875rem;
    border-radius: 0.5rem;
    border: 1px solid #ede9fe;
}

    .dt-row-link:hover[b-qia1hel9tb] {
        background: #ede9fe;
    }

.dt-note[b-qia1hel9tb] {
    font-size: 0.875rem;
    color: #52525b;
    background: #fafafa;
    border: 1px dashed #e4e4e7;
    border-radius: 0.5rem;
    padding: 0.875rem 1rem;
    margin: 0;
}

.dt-section-sub[b-qia1hel9tb] {
    font-size: 0.9375rem;
    color: #52525b;
    margin: 0 0 1.5rem;
}

.dt-nav-grid[b-qia1hel9tb] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}

.dt-nav-card[b-qia1hel9tb] {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    padding: 1.25rem 1.375rem;
    background: #ffffff;
    border: 1px solid #e4e4e7;
    border-radius: 0.75rem;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.dt-nav-card:hover[b-qia1hel9tb] {
    border-color: #c4b5fd;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(91, 33, 182, 0.08);
}

.dt-nav-card-title[b-qia1hel9tb] {
    font-size: 1rem;
    font-weight: 600;
    color: #18181b;
}

.dt-nav-card-meta[b-qia1hel9tb] {
    font-size: 0.8125rem;
    color: #52525b;
    line-height: 1.45;
}

/* Keyboard focus rings and reduced-motion respect (a11y parity with home page). */
.dt-btn-primary:focus-visible[b-qia1hel9tb],
.dt-btn-secondary:focus-visible[b-qia1hel9tb],
.dt-nav-card:focus-visible[b-qia1hel9tb],
.dt-row-link:focus-visible[b-qia1hel9tb],
.see-all:focus-visible[b-qia1hel9tb] {
    outline: 2px solid #5b21b6;
    outline-offset: 2px;
    border-radius: 0.5rem;
}

@media (prefers-reduced-motion: reduce) {
    .dt-nav-card[b-qia1hel9tb],
    .dt-btn-primary[b-qia1hel9tb],
    .dt-btn-secondary[b-qia1hel9tb] {
        transition: none;
    }
    .dt-nav-card:hover[b-qia1hel9tb],
    .dt-btn-primary:hover[b-qia1hel9tb],
    .dt-btn-secondary:hover[b-qia1hel9tb] {
        transform: none;
    }
}
/* /Components/Pages/DT/DataDetail.razor.rz.scp.css */
.dt-detail-section[b-o2swaea3b3] {
    padding: 2rem 1.5rem 4rem;
}

.dt-detail-inner[b-o2swaea3b3] {
    max-width: 760px;
    margin: 0 auto;
}

.dt-back[b-o2swaea3b3] {
    text-decoration: none;
    color: #71717a;
    font-size: 0.8125rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

    .dt-back:hover[b-o2swaea3b3] {
        color: #5b21b6;
    }

h1[b-o2swaea3b3] {
    font-size: clamp(1.625rem, 3vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #18181b;
    margin: 0 0 1.5rem;
    line-height: 1.2;
}

.dt-meta[b-o2swaea3b3] {
    background: #fafafa;
    border: 1px solid #e4e4e7;
    border-radius: 0.75rem;
    padding: 1.25rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.875rem 1.5rem;
    margin: 0 0 2rem;
}

    .dt-meta div[b-o2swaea3b3] {
        display: flex;
        flex-direction: column;
        gap: 0.125rem;
    }

    .dt-meta dt[b-o2swaea3b3] {
        font-size: 0.6875rem;
        font-weight: 600;
        color: #71717a;
        text-transform: uppercase;
        letter-spacing: 0.06em;
    }

    .dt-meta dd[b-o2swaea3b3] {
        font-size: 0.9375rem;
        color: #18181b;
        margin: 0;
    }

.dt-detail-sub[b-o2swaea3b3] {
    color: #52525b;
    font-size: 0.9375rem;
    line-height: 1.55;
}

.dt-actions[b-o2swaea3b3] {
    display: flex;
    gap: 0.625rem;
    flex-wrap: wrap;
    margin: 1rem 0 1.5rem;
}

.dt-btn-primary[b-o2swaea3b3] {
    background: #5b21b6;
    color: #ffffff;
    border: none;
    border-radius: 0.5rem;
    padding: 0.625rem 1.25rem;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s;
}

    .dt-btn-primary:hover[b-o2swaea3b3] {
        background: #4c1d95;
    }

.dt-btn-disabled[b-o2swaea3b3] {
    background: #fafafa;
    color: #a1a1aa;
    border: 1px dashed #e4e4e7;
    border-radius: 0.5rem;
    padding: 0.625rem 1.25rem;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: not-allowed;
}

.dt-attachments[b-o2swaea3b3] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    margin: 0 0 2rem;
}

.dt-attach-block[b-o2swaea3b3] {
    background: #fafafa;
    border: 1px solid #e4e4e7;
    border-radius: 0.75rem;
    padding: 1rem 1.25rem;
}

    .dt-attach-block h3[b-o2swaea3b3] {
        font-size: 0.8125rem;
        font-weight: 700;
        color: #71717a;
        text-transform: uppercase;
        letter-spacing: 0.06em;
        margin: 0 0 0.625rem;
    }

    .dt-attach-block ul[b-o2swaea3b3] {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.375rem;
    }

    .dt-attach-block a[b-o2swaea3b3] {
        text-decoration: none;
        color: #5b21b6;
        font-size: 0.875rem;
        font-weight: 500;
    }

        .dt-attach-block a:hover[b-o2swaea3b3] {
            text-decoration: underline;
        }

.ft-dialog[b-o2swaea3b3] {
    border: none;
    border-radius: 0.75rem;
    padding: 0;
    width: min(900px, 95vw);
    max-height: 90vh;
    background: #ffffff;
    box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

    .ft-dialog[b-o2swaea3b3]::backdrop {
        background: rgba(24, 24, 27, 0.55);
    }

.ft-header[b-o2swaea3b3] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #e4e4e7;
    background: #fafafa;
}

    .ft-header h2[b-o2swaea3b3] {
        font-size: 1rem;
        font-weight: 700;
        color: #18181b;
        margin: 0;
        line-height: 1.3;
    }

.ft-close[b-o2swaea3b3] {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: #71717a;
    cursor: pointer;
    line-height: 1;
    padding: 0 0.375rem;
}

    .ft-close:hover[b-o2swaea3b3] {
        color: #18181b;
    }

.ft-body[b-o2swaea3b3] {
    padding: 1.5rem 1.75rem;
    overflow-y: auto;
    max-height: calc(90vh - 64px);
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #27272a;
}

[b-o2swaea3b3] .ft-body p {
    margin: 0 0 0.875rem;
}

[b-o2swaea3b3] .ft-body table {
    border-collapse: collapse;
    width: 100%;
    margin: 0.875rem 0;
}

[b-o2swaea3b3] .ft-body th, [b-o2swaea3b3] .ft-body td {
    border: 1px solid #e4e4e7;
    padding: 0.5rem 0.75rem;
    text-align: left;
}
/* /Components/Pages/DT/JudgmentDetail.razor.rz.scp.css */
.dt-detail-section[b-v4xx84i9pa] {
    padding: 3rem 1.5rem 4rem;
}

.dt-detail-inner[b-v4xx84i9pa] {
    max-width: 760px;
    margin: 0 auto;
}

.dt-back[b-v4xx84i9pa] {
    text-decoration: none;
    color: #71717a;
    font-size: 0.8125rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

    .dt-back:hover[b-v4xx84i9pa] {
        color: #5b21b6;
    }

h1[b-v4xx84i9pa] {
    font-size: clamp(1.625rem, 3vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #18181b;
    margin: 0 0 1.5rem;
    line-height: 1.2;
}

.dt-meta[b-v4xx84i9pa] {
    background: #fafafa;
    border: 1px solid #e4e4e7;
    border-radius: 0.75rem;
    padding: 1.25rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.875rem 1.5rem;
    margin: 0 0 2rem;
}

    .dt-meta div[b-v4xx84i9pa] {
        display: flex;
        flex-direction: column;
        gap: 0.125rem;
    }

    .dt-meta dt[b-v4xx84i9pa] {
        font-size: 0.6875rem;
        font-weight: 600;
        color: #71717a;
        text-transform: uppercase;
        letter-spacing: 0.06em;
    }

    .dt-meta dd[b-v4xx84i9pa] {
        font-size: 0.9375rem;
        color: #18181b;
        margin: 0;
    }

.dt-detail-body[b-v4xx84i9pa] {
    background: #ffffff;
    border: 1px solid #e4e4e7;
    border-radius: 0.75rem;
    padding: 1.75rem;
    margin: 0 0 1.5rem;
}

    .dt-detail-body h2[b-v4xx84i9pa] {
        font-size: 1rem;
        font-weight: 700;
        color: #18181b;
        margin: 0 0 1rem;
        text-transform: uppercase;
        letter-spacing: 0.04em;
    }

[b-v4xx84i9pa] .dt-detail-html {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #27272a;
}

[b-v4xx84i9pa] .dt-detail-html p {
    margin: 0 0 0.875rem;
}

.dt-detail-empty[b-v4xx84i9pa] {
    background: #fafafa;
    border: 1px dashed #e4e4e7;
    border-radius: 0.75rem;
    padding: 1.25rem;
    color: #71717a;
    font-size: 0.875rem;
    margin: 0 0 1.5rem;
}

.dt-detail-note[b-v4xx84i9pa] {
    color: #a1a1aa;
    font-size: 0.8125rem;
    text-align: center;
    margin: 0;
}

.dt-detail-sub[b-v4xx84i9pa] {
    color: #52525b;
    font-size: 0.9375rem;
    line-height: 1.55;
}

.dt-actions[b-v4xx84i9pa] {
    display: flex;
    gap: 0.625rem;
    flex-wrap: wrap;
    margin: 1rem 0 1.5rem;
}

.dt-btn-primary[b-v4xx84i9pa] {
    background: #5b21b6;
    color: #ffffff;
    border: none;
    border-radius: 0.5rem;
    padding: 0.625rem 1.25rem;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s;
}

    .dt-btn-primary:hover[b-v4xx84i9pa] {
        background: #4c1d95;
    }

.dt-btn-disabled[b-v4xx84i9pa] {
    background: #fafafa;
    color: #a1a1aa;
    border: 1px dashed #e4e4e7;
    border-radius: 0.5rem;
    padding: 0.625rem 1.25rem;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: not-allowed;
}

.dt-attachments[b-v4xx84i9pa] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    margin: 0 0 2rem;
}

.dt-attach-block[b-v4xx84i9pa] {
    background: #fafafa;
    border: 1px solid #e4e4e7;
    border-radius: 0.75rem;
    padding: 1rem 1.25rem;
}

    .dt-attach-block h3[b-v4xx84i9pa] {
        font-size: 0.8125rem;
        font-weight: 700;
        color: #71717a;
        text-transform: uppercase;
        letter-spacing: 0.06em;
        margin: 0 0 0.625rem;
    }

    .dt-attach-block ul[b-v4xx84i9pa] {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.375rem;
    }

    .dt-attach-block a[b-v4xx84i9pa] {
        text-decoration: none;
        color: #5b21b6;
        font-size: 0.875rem;
        font-weight: 500;
    }

        .dt-attach-block a:hover[b-v4xx84i9pa] {
            text-decoration: underline;
        }

.ft-dialog[b-v4xx84i9pa] {
    border: none;
    border-radius: 0.75rem;
    padding: 0;
    width: min(900px, 95vw);
    max-height: 90vh;
    background: #ffffff;
    box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

    .ft-dialog[b-v4xx84i9pa]::backdrop {
        background: rgba(24, 24, 27, 0.55);
    }

.ft-header[b-v4xx84i9pa] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #e4e4e7;
    background: #fafafa;
}

    .ft-header h2[b-v4xx84i9pa] {
        font-size: 1rem;
        font-weight: 700;
        color: #18181b;
        margin: 0;
        line-height: 1.3;
    }

.ft-close[b-v4xx84i9pa] {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: #71717a;
    cursor: pointer;
    line-height: 1;
    padding: 0 0.375rem;
}

    .ft-close:hover[b-v4xx84i9pa] {
        color: #18181b;
    }

.ft-body[b-v4xx84i9pa] {
    padding: 1.5rem 1.75rem;
    overflow-y: auto;
    max-height: calc(90vh - 64px);
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #27272a;
}

[b-v4xx84i9pa] .ft-body p {
    margin: 0 0 0.875rem;
}

[b-v4xx84i9pa] .ft-body table {
    border-collapse: collapse;
    width: 100%;
    margin: 0.875rem 0;
}

[b-v4xx84i9pa] .ft-body th, [b-v4xx84i9pa] .ft-body td {
    border: 1px solid #e4e4e7;
    padding: 0.5rem 0.75rem;
    text-align: left;
}

.dt-title-bar[b-v4xx84i9pa] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin: 0 0 1.5rem;
}

    .dt-title-bar h1[b-v4xx84i9pa] {
        margin: 0;
    }

.dt-bookmark-form[b-v4xx84i9pa] {
    flex-shrink: 0;
}

[b-v4xx84i9pa] .btn-bookmark-on, [b-v4xx84i9pa] .btn-bookmark-off {
    background: #ffffff;
    border: 1px solid #e4e4e7;
    border-radius: 0.5rem;
    padding: 0.5rem 0.875rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    color: #52525b;
    transition: all 0.15s;
}

[b-v4xx84i9pa] .btn-bookmark-on {
    background: #faf5ff;
    border-color: #c4b5fd;
    color: #5b21b6;
}

[b-v4xx84i9pa] .btn-bookmark-off:hover {
    border-color: #c4b5fd;
    color: #5b21b6;
}

.dt-notes[b-v4xx84i9pa] {
    margin: 2.5rem 0 0;
    padding: 1.5rem;
    background: #fafafa;
    border: 1px solid #e4e4e7;
    border-radius: 0.75rem;
}

    .dt-notes h2[b-v4xx84i9pa] {
        font-size: 1rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        color: #18181b;
        margin: 0 0 1rem;
    }

.dt-note-form[b-v4xx84i9pa] {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    margin-bottom: 1.25rem;
}

[b-v4xx84i9pa] .dt-note-title {
    background: #ffffff;
    border: 1px solid #e4e4e7;
    border-radius: 0.5rem;
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
    color: #18181b;
}

[b-v4xx84i9pa] .dt-note-body {
    background: #ffffff;
    border: 1px solid #e4e4e7;
    border-radius: 0.5rem;
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
    color: #18181b;
    font-family: inherit;
    resize: vertical;
}

[b-v4xx84i9pa] .dt-note-title:focus, [b-v4xx84i9pa] .dt-note-body:focus {
    outline: none;
    border-color: #8b5cf6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15);
}

.dt-note-actions[b-v4xx84i9pa] {
    display: flex;
    justify-content: flex-end;
}

.dt-notes-empty[b-v4xx84i9pa] {
    color: #a1a1aa;
    font-size: 0.875rem;
    font-style: italic;
    margin: 0;
}

.dt-notes-list[b-v4xx84i9pa] {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.dt-note-item[b-v4xx84i9pa] {
    background: #ffffff;
    border: 1px solid #e4e4e7;
    border-radius: 0.625rem;
    padding: 0.875rem 1rem;
}

    .dt-note-item header[b-v4xx84i9pa] {
        display: flex;
        justify-content: space-between;
        align-items: baseline;
        gap: 1rem;
        margin-bottom: 0.375rem;
    }

    .dt-note-item header strong[b-v4xx84i9pa] {
        font-size: 0.9375rem;
        color: #18181b;
    }

.dt-note-when[b-v4xx84i9pa] {
    font-size: 0.75rem;
    color: #a1a1aa;
}

.dt-note-text[b-v4xx84i9pa] {
    font-size: 0.875rem;
    color: #52525b;
    line-height: 1.55;
    margin: 0 0 0.5rem;
    white-space: pre-wrap;
}

.dt-note-del-form[b-v4xx84i9pa] {
    display: flex;
    justify-content: flex-end;
}

.dt-note-del[b-v4xx84i9pa] {
    background: transparent;
    border: none;
    color: #a1a1aa;
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    padding: 0.25rem 0.375rem;
}

    .dt-note-del:hover[b-v4xx84i9pa] {
        color: #dc2626;
    }
/* /Components/Pages/DT/JudgmentsList.razor.rz.scp.css */
.dt-list-section[b-k7cg7oh7lb] {
    padding: 3rem 1.5rem 4rem;
    min-height: calc(100vh - 64px);
}

.dt-list-inner[b-k7cg7oh7lb] {
    max-width: 1080px;
    margin: 0 auto;
}

.dt-list-header[b-k7cg7oh7lb] {
    margin-bottom: 1.75rem;
}

.dt-back[b-k7cg7oh7lb] {
    text-decoration: none;
    color: #71717a;
    font-size: 0.8125rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 0.875rem;
}

    .dt-back:hover[b-k7cg7oh7lb] {
        color: #5b21b6;
    }

h1[b-k7cg7oh7lb] {
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    color: #18181b;
    margin: 0 0 0.5rem;
}

.dt-list-sub[b-k7cg7oh7lb] {
    color: #71717a;
    font-size: 0.9375rem;
    margin: 0;
}

.dt-tabs[b-k7cg7oh7lb] {
    display: flex;
    gap: 0;
    margin: 0 0 1.25rem;
    border-bottom: 1px solid #e4e4e7;
}

.dt-tab[b-k7cg7oh7lb] {
    text-decoration: none;
    color: #71717a;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.625rem 1.125rem;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
}

    .dt-tab:hover[b-k7cg7oh7lb] {
        color: #18181b;
    }

.dt-tab-active[b-k7cg7oh7lb] {
    color: #5b21b6;
    border-bottom-color: #5b21b6;
}

.dt-pill[b-k7cg7oh7lb] {
    display: inline-block;
    background: #ede9fe;
    color: #5b21b6;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 0.125rem 0.5rem;
    border-radius: 0.375rem;
    text-transform: uppercase;
}

.dt-filters[b-k7cg7oh7lb] {
    display: flex;
    gap: 0.75rem;
    align-items: flex-end;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    background: #fafafa;
    border: 1px solid #e4e4e7;
    border-radius: 0.75rem;
    padding: 1rem;
}

.dt-field[b-k7cg7oh7lb] {
    display: flex;
    flex-direction: column;
    gap: 0.3125rem;
    flex: 1;
    min-width: 160px;
}

    .dt-field label[b-k7cg7oh7lb] {
        font-size: 0.75rem;
        font-weight: 600;
        color: #52525b;
        text-transform: uppercase;
        letter-spacing: 0.04em;
    }

    .dt-field select[b-k7cg7oh7lb],
    .dt-field input[type=text][b-k7cg7oh7lb] {
        background: #ffffff;
        border: 1px solid #e4e4e7;
        border-radius: 0.5rem;
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
        color: #18181b;
    }

        .dt-field select:focus[b-k7cg7oh7lb],
        .dt-field input[type=text]:focus[b-k7cg7oh7lb] {
            outline: none;
            border-color: #8b5cf6;
            box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15);
        }

.dt-filter-apply[b-k7cg7oh7lb] {
    background: #5b21b6;
    color: #ffffff;
    border: none;
    border-radius: 0.5rem;
    padding: 0.5rem 1.125rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
}

    .dt-filter-apply:hover[b-k7cg7oh7lb] {
        background: #4c1d95;
    }

.dt-filter-clear[b-k7cg7oh7lb] {
    color: #71717a;
    text-decoration: none;
    font-size: 0.8125rem;
    padding: 0.5rem 0.625rem;
}

    .dt-filter-clear:hover[b-k7cg7oh7lb] {
        color: #18181b;
    }

.dt-paywall[b-k7cg7oh7lb] {
    background: #faf5ff;
    border: 1px solid #ede9fe;
    color: #5b21b6;
    font-size: 0.875rem;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1.25rem;
}

    .dt-paywall a[b-k7cg7oh7lb] {
        color: #5b21b6;
        text-decoration: underline;
        font-weight: 600;
    }

.dt-count[b-k7cg7oh7lb] {
    color: #71717a;
    font-size: 0.8125rem;
    margin: 0 0 1rem;
}

.dt-rows[b-k7cg7oh7lb] {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.dt-row[b-k7cg7oh7lb] {
    background: #ffffff;
    border: 1px solid #e4e4e7;
    border-radius: 0.75rem;
    padding: 1.25rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.dt-row-main[b-k7cg7oh7lb] {
    flex: 1;
    min-width: 0;
}

    .dt-row-main h3[b-k7cg7oh7lb] {
        font-size: 1rem;
        font-weight: 700;
        color: #18181b;
        margin: 0 0 0.25rem;
        line-height: 1.3;
    }

.dt-row-meta[b-k7cg7oh7lb] {
    color: #71717a;
    font-size: 0.8125rem;
    margin: 0 0 0.5rem;
}

.dt-row-body[b-k7cg7oh7lb] {
    color: #52525b;
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}

.dt-row-side[b-k7cg7oh7lb] {
    flex-shrink: 0;
}

.dt-row-link[b-k7cg7oh7lb] {
    text-decoration: none;
    background: #faf5ff;
    color: #5b21b6;
    font-weight: 600;
    font-size: 0.8125rem;
    padding: 0.4rem 0.875rem;
    border-radius: 0.5rem;
    border: 1px solid #ede9fe;
}

    .dt-row-link:hover[b-k7cg7oh7lb] {
        background: #ede9fe;
    }

.dt-pager[b-k7cg7oh7lb] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0 0;
}

.dt-pager-btn[b-k7cg7oh7lb] {
    text-decoration: none;
    background: #ffffff;
    color: #5b21b6;
    border: 1px solid #e9d5ff;
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
}

    .dt-pager-btn:hover[b-k7cg7oh7lb] {
        background: #faf5ff;
    }

.dt-pager-state[b-k7cg7oh7lb] {
    color: #71717a;
    font-size: 0.875rem;
}

.dt-empty[b-k7cg7oh7lb] {
    text-align: center;
    color: #71717a;
    background: #fafafa;
    border: 1px dashed #e4e4e7;
    border-radius: 0.75rem;
    padding: 3rem 1rem;
}
/* /Components/Pages/DT/LandmarksList.razor.rz.scp.css */
.dt-list-section[b-x4aqzm6xcn] {
    padding: 3rem 1.5rem 4rem;
    min-height: calc(100vh - 64px);
}

.dt-list-inner[b-x4aqzm6xcn] {
    max-width: 1080px;
    margin: 0 auto;
}

.dt-list-header[b-x4aqzm6xcn] {
    margin-bottom: 1.75rem;
}

.dt-back[b-x4aqzm6xcn] {
    text-decoration: none;
    color: #71717a;
    font-size: 0.8125rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 0.875rem;
}

    .dt-back:hover[b-x4aqzm6xcn] {
        color: #5b21b6;
    }

h1[b-x4aqzm6xcn] {
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    color: #18181b;
    margin: 0 0 0.5rem;
}

.dt-list-sub[b-x4aqzm6xcn] {
    color: #71717a;
    font-size: 0.9375rem;
    margin: 0;
}

.dt-count[b-x4aqzm6xcn] {
    color: #71717a;
    font-size: 0.8125rem;
    margin: 0 0 1rem;
}

.dt-grid[b-x4aqzm6xcn] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
}

.dt-card[b-x4aqzm6xcn] {
    background: #ffffff;
    border: 1px solid #e4e4e7;
    border-radius: 0.75rem;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.dt-card-tag[b-x4aqzm6xcn] {
    align-self: flex-start;
    font-size: 0.75rem;
    font-weight: 600;
    color: #6d28d9;
    background: #ede9fe;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
}

.dt-card h3[b-x4aqzm6xcn] {
    font-weight: 700;
    color: #18181b;
    font-size: 1rem;
    margin: 0;
    line-height: 1.3;
}

.dt-card-meta[b-x4aqzm6xcn] {
    color: #71717a;
    font-size: 0.8125rem;
    margin: 0;
}

.dt-card-body[b-x4aqzm6xcn] {
    color: #52525b;
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0.25rem 0 0;
}

.dt-card-locked[b-x4aqzm6xcn] {
    color: #a1a1aa;
    font-size: 0.8125rem;
    font-style: italic;
    margin: 0.25rem 0 0;
}

.dt-pager[b-x4aqzm6xcn] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0 0;
}

.dt-pager-btn[b-x4aqzm6xcn] {
    text-decoration: none;
    background: #ffffff;
    color: #5b21b6;
    border: 1px solid #e9d5ff;
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
}

    .dt-pager-btn:hover[b-x4aqzm6xcn] {
        background: #faf5ff;
    }

.dt-pager-state[b-x4aqzm6xcn] {
    color: #71717a;
    font-size: 0.875rem;
}

.dt-empty[b-x4aqzm6xcn] {
    text-align: center;
    color: #71717a;
    background: #fafafa;
    border: 1px dashed #e4e4e7;
    border-radius: 0.75rem;
    padding: 3rem 1rem;
}
/* /Components/Pages/DT/Search.razor.rz.scp.css */
.dt-search-section[b-dcw4lcuk56] {
    padding: 3rem 1.5rem 4rem;
    min-height: calc(100vh - 64px);
}

.dt-search-inner[b-dcw4lcuk56] {
    max-width: 1080px;
    margin: 0 auto;
}

.dt-search-header[b-dcw4lcuk56] {
    margin-bottom: 1.5rem;
}

.dt-back[b-dcw4lcuk56] {
    text-decoration: none;
    color: #71717a;
    font-size: 0.8125rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 0.875rem;
}

    .dt-back:hover[b-dcw4lcuk56] {
        color: #5b21b6;
    }

h1[b-dcw4lcuk56] {
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    color: #18181b;
    margin: 0 0 0.5rem;
}

.dt-search-sub[b-dcw4lcuk56] {
    color: #71717a;
    font-size: 0.9375rem;
    margin: 0 0 1rem;
}

.dt-search-banner[b-dcw4lcuk56] {
    background: #fef3c7;
    border: 1px solid #fde68a;
    color: #92400e;
    font-size: 0.8125rem;
    padding: 0.625rem 0.875rem;
    border-radius: 0.5rem;
    margin: 0;
}

.dt-search-form[b-dcw4lcuk56] {
    margin: 1.5rem 0 1.5rem;
}

.dt-search-row[b-dcw4lcuk56] {
    display: flex;
    gap: 0.625rem;
}

/* Advanced options — Type of Search + Search Accuracy, restored from the legacy ASPX. */
.dt-search-adv[b-dcw4lcuk56] {
    margin-top: 0.75rem;
}

.dt-search-adv summary[b-dcw4lcuk56] {
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 600;
    color: #6d28d9;
    list-style: none;
}

.dt-search-adv summary[b-dcw4lcuk56]::-webkit-details-marker {
    display: none;
}

.dt-search-adv summary[b-dcw4lcuk56]::before {
    content: "\25B8";
    display: inline-block;
    margin-right: 0.375rem;
    transition: transform 0.15s ease;
}

.dt-search-adv[open] summary[b-dcw4lcuk56]::before {
    transform: rotate(90deg);
}

.dt-adv-grid[b-dcw4lcuk56] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.875rem;
    margin: 0.75rem 0 0;
    max-width: 640px;
}

.dt-adv-grid label[b-dcw4lcuk56] {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #52525b;
}

.dt-adv-grid select[b-dcw4lcuk56] {
    font-size: 0.9375rem;
    font-weight: 400;
    padding: 0.5rem 0.625rem;
    border: 1px solid #e4e4e7;
    border-radius: 0.5rem;
    background: #ffffff;
    color: #18181b;
}

.dt-adv-grid select:focus[b-dcw4lcuk56] {
    outline: none;
    border-color: #8b5cf6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15);
}

.dt-adv-note[b-dcw4lcuk56] {
    max-width: 640px;
    margin: 0.75rem 0 0;
    font-size: 0.75rem;
    line-height: 1.5;
    color: #71717a;
}

    .dt-search-form input[type=text][b-dcw4lcuk56] {
        flex: 1;
        background: #ffffff;
        border: 1px solid #e4e4e7;
        border-radius: 0.5rem;
        padding: 0.75rem 1rem;
        font-size: 1rem;
        color: #18181b;
    }

        .dt-search-form input[type=text]:focus[b-dcw4lcuk56] {
            outline: none;
            border-color: #8b5cf6;
            box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15);
        }

    .dt-search-form button[b-dcw4lcuk56] {
        background: #5b21b6;
        color: #ffffff;
        border: none;
        border-radius: 0.5rem;
        padding: 0.75rem 1.5rem;
        font-size: 0.9375rem;
        font-weight: 600;
        cursor: pointer;
    }

        .dt-search-form button:hover[b-dcw4lcuk56] {
            background: #4c1d95;
        }

.dt-search-hint[b-dcw4lcuk56] {
    color: #a1a1aa;
    font-size: 0.875rem;
    text-align: center;
    padding: 2rem 0;
    margin: 0;
}

.dt-count[b-dcw4lcuk56] {
    color: #71717a;
    font-size: 0.8125rem;
    margin: 0 0 1rem;
}

.dt-rows[b-dcw4lcuk56] {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.dt-row[b-dcw4lcuk56] {
    background: #ffffff;
    border: 1px solid #e4e4e7;
    border-radius: 0.75rem;
    padding: 1.25rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.dt-row-main[b-dcw4lcuk56] {
    flex: 1;
    min-width: 0;
}

    .dt-row-main h3[b-dcw4lcuk56] {
        font-size: 1rem;
        font-weight: 700;
        color: #18181b;
        margin: 0 0 0.25rem;
        line-height: 1.3;
    }

.dt-row-meta[b-dcw4lcuk56] {
    color: #71717a;
    font-size: 0.8125rem;
    margin: 0 0 0.5rem;
}

.dt-row-body[b-dcw4lcuk56] {
    color: #52525b;
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}

.dt-row-side[b-dcw4lcuk56] {
    flex-shrink: 0;
}

.dt-row-link[b-dcw4lcuk56] {
    text-decoration: none;
    background: #faf5ff;
    color: #5b21b6;
    font-weight: 600;
    font-size: 0.8125rem;
    padding: 0.4rem 0.875rem;
    border-radius: 0.5rem;
    border: 1px solid #ede9fe;
}

    .dt-row-link:hover[b-dcw4lcuk56] {
        background: #ede9fe;
    }

.dt-pager[b-dcw4lcuk56] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0 0;
}

.dt-pager-btn[b-dcw4lcuk56] {
    text-decoration: none;
    background: #ffffff;
    color: #5b21b6;
    border: 1px solid #e9d5ff;
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
}

    .dt-pager-btn:hover[b-dcw4lcuk56] {
        background: #faf5ff;
    }

.dt-pager-state[b-dcw4lcuk56] {
    color: #71717a;
    font-size: 0.875rem;
}

.dt-empty[b-dcw4lcuk56] {
    text-align: center;
    color: #71717a;
    background: #fafafa;
    border: 1px dashed #e4e4e7;
    border-radius: 0.75rem;
    padding: 3rem 1rem;
}

.dt-search-scope[b-dcw4lcuk56] {
    background: #fafafa;
    border: 1px solid #e4e4e7;
    border-radius: 0.75rem;
    padding: 0.875rem 1rem;
    margin: 0 0 1.25rem;
    font-size: 0.875rem;
}

.dt-search-scope summary[b-dcw4lcuk56] {
    cursor: pointer;
    font-weight: 600;
    color: #52525b;
}

.dt-scope-list[b-dcw4lcuk56] {
    list-style: none;
    padding: 0.75rem 0 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.375rem;
}

.dt-scope-list li label[b-dcw4lcuk56] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #18181b;
    cursor: pointer;
}

.dt-scope-meta[b-dcw4lcuk56] {
    color: #a1a1aa;
    font-size: 0.75rem;
    margin-left: auto;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

[b-dcw4lcuk56] .dt-row-synopsis {
    background: #fafafa;
    border-radius: 0.5rem;
    padding: 0.625rem 0.875rem;
    margin: 0.5rem 0 0;
    font-size: 0.875rem;
    line-height: 1.55;
    color: #3f3f46;
    max-height: 240px;
    overflow-y: auto;
}

[b-dcw4lcuk56] .dt-row-synopsis mark {
    background: #fef08a;
    padding: 0 1px;
    border-radius: 2px;
}
/* /Components/Pages/DT/TribunalDetail.razor.rz.scp.css */
.dt-detail-section[b-nzztrqv9cc] {
    padding: 3rem 1.5rem 4rem;
    min-height: calc(100vh - 64px);
}

.dt-detail-inner[b-nzztrqv9cc] {
    max-width: 880px;
    margin: 0 auto;
}

.dt-back[b-nzztrqv9cc] {
    text-decoration: none;
    color: #71717a;
    font-size: 0.8125rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

    .dt-back:hover[b-nzztrqv9cc] {
        color: #5b21b6;
    }

.dt-detail-head[b-nzztrqv9cc] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.dt-detail-head-main[b-nzztrqv9cc] {
    min-width: 0;
}

.dt-bookmark-form[b-nzztrqv9cc] {
    flex-shrink: 0;
}

[b-nzztrqv9cc] .btn-bookmark-on, [b-nzztrqv9cc] .btn-bookmark-off {
    background: #ffffff;
    border: 1px solid #e4e4e7;
    border-radius: 0.5rem;
    padding: 0.5rem 0.875rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    color: #52525b;
    transition: all 0.15s;
    white-space: nowrap;
}

[b-nzztrqv9cc] .btn-bookmark-on {
    background: #faf5ff;
    border-color: #c4b5fd;
    color: #5b21b6;
}

[b-nzztrqv9cc] .btn-bookmark-off:hover {
    border-color: #c4b5fd;
    color: #5b21b6;
}

.dt-pill[b-nzztrqv9cc] {
    display: inline-block;
    background: #ede9fe;
    color: #5b21b6;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 0.125rem 0.5rem;
    border-radius: 0.375rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

h1[b-nzztrqv9cc] {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #18181b;
    margin: 0 0 0.375rem;
    line-height: 1.25;
}

.dt-cit[b-nzztrqv9cc] {
    color: #71717a;
    font-size: 0.875rem;
    margin: 0;
}

.dt-meta-grid[b-nzztrqv9cc] {
    display: grid;
    grid-template-columns: max-content 1fr;
    gap: 0.5rem 1.25rem;
    background: #fafafa;
    border: 1px solid #e4e4e7;
    border-radius: 0.75rem;
    padding: 1.125rem 1.25rem;
    margin: 0 0 1.5rem;
}

    .dt-meta-grid dt[b-nzztrqv9cc] {
        color: #71717a;
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        align-self: center;
    }

    .dt-meta-grid dd[b-nzztrqv9cc] {
        margin: 0;
        color: #18181b;
        font-size: 0.9rem;
    }

.dt-headnote[b-nzztrqv9cc] {
    background: #ffffff;
    border: 1px solid #e4e4e7;
    border-radius: 0.75rem;
    padding: 1.5rem 1.625rem;
    margin: 0 0 1.5rem;
}

    .dt-headnote h2[b-nzztrqv9cc] {
        font-size: 0.8125rem;
        font-weight: 700;
        color: #71717a;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        margin: 0 0 0.875rem;
    }

.dt-headnote-body[b-nzztrqv9cc] {
    color: #27272a;
    font-size: 0.9375rem;
    line-height: 1.6;
}

    .dt-headnote-body p[b-nzztrqv9cc] {
        margin: 0 0 0.875rem;
    }

.dt-empty[b-nzztrqv9cc] {
    text-align: center;
    color: #71717a;
    background: #fafafa;
    border: 1px dashed #e4e4e7;
    border-radius: 0.75rem;
    padding: 3rem 1rem;
}

.dt-coming-soon[b-nzztrqv9cc] {
    background: #faf5ff;
    border: 1px dashed #d8b4fe;
    color: #5b21b6;
    font-size: 0.8125rem;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
}

.dt-actions[b-nzztrqv9cc] {
    display: flex;
    gap: 0.625rem;
    flex-wrap: wrap;
    margin: 0 0 1.5rem;
}

.dt-btn-primary[b-nzztrqv9cc] {
    background: #5b21b6;
    color: #ffffff;
    border: none;
    border-radius: 0.5rem;
    padding: 0.625rem 1.25rem;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s;
}

    .dt-btn-primary:hover[b-nzztrqv9cc] {
        background: #4c1d95;
    }

.dt-btn-disabled[b-nzztrqv9cc] {
    background: #fafafa;
    color: #a1a1aa;
    border: 1px dashed #e4e4e7;
    border-radius: 0.5rem;
    padding: 0.625rem 1.25rem;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: not-allowed;
}

.dt-attachments[b-nzztrqv9cc] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    margin: 0 0 1.5rem;
}

.dt-attach-block[b-nzztrqv9cc] {
    background: #fafafa;
    border: 1px solid #e4e4e7;
    border-radius: 0.75rem;
    padding: 1rem 1.25rem;
}

    .dt-attach-block h3[b-nzztrqv9cc] {
        font-size: 0.8125rem;
        font-weight: 700;
        color: #71717a;
        text-transform: uppercase;
        letter-spacing: 0.06em;
        margin: 0 0 0.625rem;
    }

    .dt-attach-block ul[b-nzztrqv9cc] {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.375rem;
    }

    .dt-attach-block a[b-nzztrqv9cc] {
        text-decoration: none;
        color: #5b21b6;
        font-size: 0.875rem;
        font-weight: 500;
    }

        .dt-attach-block a:hover[b-nzztrqv9cc] {
            text-decoration: underline;
        }

.ft-dialog[b-nzztrqv9cc] {
    border: none;
    border-radius: 0.75rem;
    padding: 0;
    width: min(900px, 95vw);
    max-height: 90vh;
    background: #ffffff;
    box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

    .ft-dialog[b-nzztrqv9cc]::backdrop {
        background: rgba(24, 24, 27, 0.55);
    }

.ft-header[b-nzztrqv9cc] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #e4e4e7;
    background: #fafafa;
}

    .ft-header h2[b-nzztrqv9cc] {
        font-size: 1rem;
        font-weight: 700;
        color: #18181b;
        margin: 0;
        line-height: 1.3;
    }

.ft-close[b-nzztrqv9cc] {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: #71717a;
    cursor: pointer;
    line-height: 1;
    padding: 0 0.375rem;
}

    .ft-close:hover[b-nzztrqv9cc] {
        color: #18181b;
    }

.ft-body[b-nzztrqv9cc] {
    padding: 1.5rem 1.75rem;
    overflow-y: auto;
    max-height: calc(90vh - 64px);
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #27272a;
}

[b-nzztrqv9cc] .ft-body p {
    margin: 0 0 0.875rem;
}

[b-nzztrqv9cc] .ft-body table {
    border-collapse: collapse;
    width: 100%;
    margin: 0.875rem 0;
}

[b-nzztrqv9cc] .ft-body th, [b-nzztrqv9cc] .ft-body td {
    border: 1px solid #e4e4e7;
    padding: 0.5rem 0.75rem;
    text-align: left;
}

.dt-notes[b-nzztrqv9cc] {
    margin: 2.5rem 0 0;
    padding: 1.5rem;
    background: #fafafa;
    border: 1px solid #e4e4e7;
    border-radius: 0.75rem;
}

    .dt-notes h2[b-nzztrqv9cc] {
        font-size: 1rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        color: #18181b;
        margin: 0 0 1rem;
    }

.dt-note-form[b-nzztrqv9cc] {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    margin-bottom: 1.25rem;
}

[b-nzztrqv9cc] .dt-note-title {
    background: #ffffff;
    border: 1px solid #e4e4e7;
    border-radius: 0.5rem;
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
    color: #18181b;
}

[b-nzztrqv9cc] .dt-note-body {
    background: #ffffff;
    border: 1px solid #e4e4e7;
    border-radius: 0.5rem;
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
    color: #18181b;
    font-family: inherit;
    resize: vertical;
}

[b-nzztrqv9cc] .dt-note-title:focus, [b-nzztrqv9cc] .dt-note-body:focus {
    outline: none;
    border-color: #8b5cf6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15);
}

.dt-note-actions[b-nzztrqv9cc] {
    display: flex;
    justify-content: flex-end;
}

.dt-notes-empty[b-nzztrqv9cc] {
    color: #a1a1aa;
    font-size: 0.875rem;
    font-style: italic;
    margin: 0;
}

.dt-notes-list[b-nzztrqv9cc] {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.dt-note-item[b-nzztrqv9cc] {
    background: #ffffff;
    border: 1px solid #e4e4e7;
    border-radius: 0.625rem;
    padding: 0.875rem 1rem;
}

    .dt-note-item header[b-nzztrqv9cc] {
        display: flex;
        justify-content: space-between;
        align-items: baseline;
        gap: 1rem;
        margin-bottom: 0.375rem;
    }

    .dt-note-item header strong[b-nzztrqv9cc] {
        font-size: 0.9375rem;
        color: #18181b;
    }

.dt-note-when[b-nzztrqv9cc] {
    font-size: 0.75rem;
    color: #a1a1aa;
}

.dt-note-text[b-nzztrqv9cc] {
    font-size: 0.875rem;
    color: #52525b;
    line-height: 1.55;
    margin: 0 0 0.5rem;
    white-space: pre-wrap;
}

.dt-note-del-form[b-nzztrqv9cc] {
    display: flex;
    justify-content: flex-end;
}

.dt-note-del[b-nzztrqv9cc] {
    background: transparent;
    border: none;
    color: #a1a1aa;
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    padding: 0.25rem 0.375rem;
}

    .dt-note-del:hover[b-nzztrqv9cc] {
        color: #dc2626;
    }
/* /Components/Pages/Home.razor.rz.scp.css */
.hero[b-qgvizjv10f] {
    padding: 5rem 1.5rem 4rem;
    background: linear-gradient(180deg, #faf5ff 0%, #ffffff 100%);
    border-bottom: 1px solid #f4f4f5;
}

.hero-inner[b-qgvizjv10f] {
    max-width: 1080px;
    margin: 0 auto;
    text-align: left;
}

.hero-eyebrow[b-qgvizjv10f] {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #6d28d9;
    background: #ede9fe;
    padding: 0.375rem 0.75rem;
    border-radius: 999px;
    margin-bottom: 1.5rem;
}

.hero-title[b-qgvizjv10f] {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: #18181b;
    margin: 0 0 1.25rem;
    max-width: 820px;
}

.hero-accent[b-qgvizjv10f] {
    background: linear-gradient(135deg, #5b21b6 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-sub[b-qgvizjv10f] {
    font-size: 1.0625rem;
    line-height: 1.6;
    color: #52525b;
    max-width: 640px;
    margin: 0 0 1.75rem;
}

.hero-search[b-qgvizjv10f] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #ffffff;
    border: 1px solid #e4e4e7;
    border-radius: 0.75rem;
    padding: 0.5rem 0.5rem 0.5rem 1rem;
    max-width: 640px;
    box-shadow: 0 2px 8px -2px rgba(91, 33, 182, 0.08);
    transition: border-color 0.15s, box-shadow 0.15s;
}

.hero-search:focus-within[b-qgvizjv10f] {
    border-color: #c4b5fd;
    box-shadow: 0 4px 16px -4px rgba(91, 33, 182, 0.18);
}

.hero-search-icon[b-qgvizjv10f] {
    color: #52525b;
    flex-shrink: 0;
}

.hero-search input[type="search"][b-qgvizjv10f] {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 1rem;
    font-family: inherit;
    color: #18181b;
    padding: 0.625rem 0;
    min-width: 0;
}

.hero-search input[type="search"][b-qgvizjv10f]::placeholder {
    color: #a1a1aa;
}

.hero-search-scope[b-qgvizjv10f] {
    border: none;
    outline: none;
    background: #f4f4f5;
    color: #3f3f46;
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.5rem 0.625rem;
    border-radius: 0.5rem;
    cursor: pointer;
    flex-shrink: 0;
    max-width: 11rem;
}

.hero-search-scope:focus-visible[b-qgvizjv10f] {
    outline: 2px solid #5b21b6;
    outline-offset: 1px;
}

.hero-search-btn[b-qgvizjv10f] {
    background: #5b21b6;
    color: #ffffff;
    border: none;
    font-weight: 600;
    font-size: 0.9375rem;
    padding: 0.625rem 1.25rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background 0.15s, transform 0.15s;
    flex-shrink: 0;
}

.hero-search-btn:hover[b-qgvizjv10f] {
    background: #4c1d95;
    transform: translateY(-1px);
}

.hero-search-note[b-qgvizjv10f] {
    font-size: 0.8125rem;
    color: #52525b;
    margin: 0.625rem 0 1.5rem;
    max-width: 640px;
}

.hero-search-note a[b-qgvizjv10f] {
    color: #5b21b6;
    text-decoration: none;
    font-weight: 500;
}

.hero-search-note a:hover[b-qgvizjv10f] {
    text-decoration: underline;
}

.hero-search-note em[b-qgvizjv10f] {
    font-style: normal;
    background: #f4f4f5;
    color: #18181b;
    padding: 0.0625rem 0.375rem;
    border-radius: 0.25rem;
    font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
    font-size: 0.75rem;
}

.visually-hidden[b-qgvizjv10f] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.hero-jump[b-qgvizjv10f] {
    font-size: 0.875rem;
    line-height: 1.7;
    color: #52525b;
    max-width: 820px;
    margin: 0 0 2rem;
}

.hero-jump a[b-qgvizjv10f] {
    color: #5b21b6;
    text-decoration: none;
    font-weight: 500;
}

.hero-jump a:hover[b-qgvizjv10f] {
    text-decoration: underline;
}

.stats[b-qgvizjv10f] {
    background: #ffffff;
    border-bottom: 1px solid #f4f4f5;
    padding: 2.5rem 1.5rem;
}

.stats-inner[b-qgvizjv10f] {
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.stat[b-qgvizjv10f] {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    padding: 0.5rem 0;
}

.stat-num[b-qgvizjv10f] {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #18181b;
    line-height: 1;
}

.stat-label[b-qgvizjv10f] {
    font-size: 0.875rem;
    color: #52525b;
}

.personal[b-qgvizjv10f] {
    padding: 3rem 1.5rem 1rem;
    background: linear-gradient(180deg, #faf5ff 0%, #ffffff 100%);
    border-bottom: 1px solid #f4f4f5;
}

.personal-grid[b-qgvizjv10f] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.875rem;
    margin-top: 0.5rem;
}

.personal-card[b-qgvizjv10f] {
    background: #ffffff;
    border: 1px solid #e9d5ff;
    border-radius: 0.75rem;
    padding: 1.125rem 1.25rem;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
}

.personal-card:hover[b-qgvizjv10f] {
    border-color: #8b5cf6;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px -4px rgba(91, 33, 182, 0.18);
}

.personal-card-title[b-qgvizjv10f] {
    font-weight: 700;
    color: #4c1d95;
    font-size: 1rem;
}

.personal-card-meta[b-qgvizjv10f] {
    color: #52525b;
    font-size: 0.8125rem;
    line-height: 1.45;
}

.domains[b-qgvizjv10f], .features[b-qgvizjv10f] {
    padding: 4rem 1.5rem;
}

.section-inner[b-qgvizjv10f] {
    max-width: 1080px;
    margin: 0 auto;
}

.section-title[b-qgvizjv10f] {
    font-size: 1.875rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #18181b;
    margin: 0 0 0.5rem;
}

.section-sub[b-qgvizjv10f] {
    color: #52525b;
    font-size: 1rem;
    margin: 0 0 2rem;
}

.domain-grid[b-qgvizjv10f] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 0.875rem;
}

.domain-card[b-qgvizjv10f] {
    background: #ffffff;
    border: 1px solid #e4e4e7;
    border-radius: 0.75rem;
    padding: 1.25rem;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
}

    .domain-card:hover[b-qgvizjv10f] {
        border-color: #c4b5fd;
        transform: translateY(-2px);
        box-shadow: 0 4px 16px -4px rgba(91, 33, 182, 0.12);
    }

.domain-card-title[b-qgvizjv10f] {
    font-weight: 700;
    color: #18181b;
    font-size: 1.0625rem;
    letter-spacing: -0.01em;
}

.domain-card-meta[b-qgvizjv10f] {
    color: #52525b;
    font-size: 0.875rem;
    line-height: 1.4;
}

.domain-card-stat[b-qgvizjv10f] {
    font-size: 0.75rem;
    font-weight: 600;
    color: #6d28d9;
    background: #f5f3ff;
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
    margin-top: 0.5rem;
    align-self: flex-start;
}

.features[b-qgvizjv10f] {
    background: #fafafa;
    border-top: 1px solid #f4f4f5;
}

.feature-grid[b-qgvizjv10f] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    margin-top: 0.5rem;
}

.feature-card[b-qgvizjv10f] {
    background: #ffffff;
    border: 1px solid #e4e4e7;
    border-radius: 0.75rem;
    padding: 1.5rem;
}

    .feature-card h3[b-qgvizjv10f] {
        font-size: 1.0625rem;
        font-weight: 700;
        margin: 0 0 0.5rem;
        color: #18181b;
    }

    .feature-card p[b-qgvizjv10f] {
        margin: 0;
        color: #52525b;
        font-size: 0.9375rem;
        line-height: 1.55;
    }

/* Keyboard focus rings — visible only for keyboard nav (not mouse clicks). */
.hero-search-btn:focus-visible[b-qgvizjv10f],
.hero-jump a:focus-visible[b-qgvizjv10f],
.hero-search-note a:focus-visible[b-qgvizjv10f],
.domain-card:focus-visible[b-qgvizjv10f],
.personal-card:focus-visible[b-qgvizjv10f] {
    outline: 2px solid #5b21b6;
    outline-offset: 2px;
    border-radius: 0.5rem;
}

.hero-search input[type="search"]:focus-visible[b-qgvizjv10f] {
    outline: none; /* parent .hero-search has focus-within ring instead */
}

/* Respect users who prefer reduced motion — disable hover-lift transforms. */
@media (prefers-reduced-motion: reduce) {
    .domain-card[b-qgvizjv10f],
    .personal-card[b-qgvizjv10f],
    .feature-card[b-qgvizjv10f],
    .hero-search[b-qgvizjv10f],
    .hero-search-btn[b-qgvizjv10f] {
        transition: none;
    }
    .domain-card:hover[b-qgvizjv10f],
    .personal-card:hover[b-qgvizjv10f],
    .hero-search-btn:hover[b-qgvizjv10f] {
        transform: none;
    }
}

@media (max-width: 640px) {
    .hero[b-qgvizjv10f] { padding: 3rem 1.25rem 2.5rem; }
    .domains[b-qgvizjv10f], .features[b-qgvizjv10f] { padding: 3rem 1.25rem; }
    .stats[b-qgvizjv10f] { padding: 2rem 1.25rem; }
    .personal[b-qgvizjv10f] { padding: 2rem 1.25rem 0.5rem; }

    .hero-search[b-qgvizjv10f] {
        flex-wrap: wrap;
        padding: 0.625rem;
    }
    .hero-search input[type="search"][b-qgvizjv10f] {
        flex-basis: 100%;
        order: 1;
        padding: 0.5rem 0;
    }
    .hero-search-icon[b-qgvizjv10f] {
        order: 0;
    }
    .hero-search-scope[b-qgvizjv10f] {
        order: 2;
        flex: 1;
        max-width: none;
        padding: 0.75rem 0.625rem;
    }
    .hero-search-btn[b-qgvizjv10f] {
        order: 3;
        flex: 1;
        padding: 0.75rem;
    }
}
/* /Components/Pages/ModernHome.razor.rz.scp.css */
/* Hero Section */
.dashboard-hero[b-l6fsutf7rn] {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 24px;
    padding: 80px 48px;
    margin-bottom: 48px;
    overflow: hidden;
    color: white;
}

.hero-content[b-l6fsutf7rn] {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title[b-l6fsutf7rn] {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero-subtitle[b-l6fsutf7rn] {
    font-size: 20px;
    opacity: 0.95;
    margin-bottom: 32px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.hero-button[b-l6fsutf7rn] {
    background: white;
    color: #667eea;
    border: none;
    border-radius: 12px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.hero-button:hover[b-l6fsutf7rn] {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.hero-button i[b-l6fsutf7rn] {
    font-size: 20px;
}

.hero-hint[b-l6fsutf7rn] {
    margin-top: 24px;
    font-size: 14px;
    opacity: 0.9;
}

.hero-hint kbd[b-l6fsutf7rn] {
    padding: 4px 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    font-size: 12px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    margin: 0 2px;
}

/* Decorative circles */
.hero-circle[b-l6fsutf7rn] {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

.hero-circle-1[b-l6fsutf7rn] {
    width: 400px;
    height: 400px;
    top: -200px;
    right: -100px;
}

.hero-circle-2[b-l6fsutf7rn] {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -100px;
    opacity: 0.5;
}

.hero-circle-3[b-l6fsutf7rn] {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 10%;
    opacity: 0.3;
}

/* Dashboard Grid */
.dashboard-grid[b-l6fsutf7rn] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-bottom: 64px;
}

/* Section Title */
.section-title[b-l6fsutf7rn] {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 32px;
    color: #0f172a;
}

/* Features Section */
.features-section[b-l6fsutf7rn] {
    margin-bottom: 64px;
}

.features-grid[b-l6fsutf7rn] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.feature-card[b-l6fsutf7rn] {
    text-align: center;
    padding: 32px 24px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover[b-l6fsutf7rn] {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px -4px rgba(0, 0, 0, 0.15);
}

.feature-icon[b-l6fsutf7rn] {
    font-size: 48px;
    color: #667eea;
    margin-bottom: 16px;
    display: block;
}

.feature-title[b-l6fsutf7rn] {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #0f172a;
}

.feature-description[b-l6fsutf7rn] {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

/* Quick Start Section */
.quick-start-section[b-l6fsutf7rn] {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 24px;
    padding: 48px 32px;
}

.quick-start-grid[b-l6fsutf7rn] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.quick-start-card[b-l6fsutf7rn] {
    background: white;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.quick-start-card:hover[b-l6fsutf7rn] {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px -4px rgba(0, 0, 0, 0.15);
}

.step-number[b-l6fsutf7rn] {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-size: 28px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.step-title[b-l6fsutf7rn] {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #0f172a;
}

.step-description[b-l6fsutf7rn] {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .dashboard-hero[b-l6fsutf7rn] {
        padding: 48px 24px;
        margin-bottom: 32px;
    }

    .hero-title[b-l6fsutf7rn] {
        font-size: 32px;
    }

    .hero-subtitle[b-l6fsutf7rn] {
        font-size: 16px;
    }

    .hero-button[b-l6fsutf7rn] {
        padding: 12px 24px;
        font-size: 14px;
    }

    .hero-circle[b-l6fsutf7rn] {
        display: none;
    }

    .dashboard-grid[b-l6fsutf7rn] {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 48px;
    }

    .section-title[b-l6fsutf7rn] {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .features-grid[b-l6fsutf7rn],
    .quick-start-grid[b-l6fsutf7rn] {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .quick-start-section[b-l6fsutf7rn] {
        padding: 32px 20px;
    }
}

@media (max-width: 480px) {
    .dashboard-hero[b-l6fsutf7rn] {
        padding: 32px 16px;
        border-radius: 16px;
    }

    .hero-title[b-l6fsutf7rn] {
        font-size: 24px;
    }

    .hero-subtitle[b-l6fsutf7rn] {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .hero-button[b-l6fsutf7rn] {
        width: 100%;
        justify-content: center;
    }

    .feature-card[b-l6fsutf7rn],
    .quick-start-card[b-l6fsutf7rn] {
        padding: 24px 16px;
    }
}
/* /Components/Pages/Settings/UserSettings.razor.rz.scp.css */
.settings-page[b-ec3b90r9l4] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 20px 48px;
    background: linear-gradient(180deg, #faf8ff 0%, #f5f3ff 100%);
    min-height: calc(100vh - 80px);
}

.settings-header[b-ec3b90r9l4] {
    margin-bottom: 32px;
    background: #fff;
    border: 1px solid #ede9fe;
    border-radius: 16px;
    padding: 22px 26px;
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    box-shadow: 0 4px 18px -6px rgba(91, 33, 182, 0.10);
}

.settings-header h1[b-ec3b90r9l4] {
    font-size: 26px;
    font-weight: 800;
    color: #1e1b4b;
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    letter-spacing: -0.01em;
    flex: 1;
    min-width: 220px;
}

.settings-header h1 i[b-ec3b90r9l4] {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #5b21b6 0%, #7c3aed 50%, #8b5cf6 100%);
    color: #fff;
    font-size: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px -3px rgba(124, 58, 237, 0.45);
}

.settings-header p[b-ec3b90r9l4] {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    flex-basis: 100%;
    margin-top: 4px;
}

.settings-grid[b-ec3b90r9l4] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

.settings-card[b-ec3b90r9l4] {
    background: white;
    border: 1px solid #ede9fe;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 10px -3px rgba(76, 29, 149, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.settings-card:hover[b-ec3b90r9l4] {
    border-color: #c4b5fd;
    box-shadow: 0 8px 22px -6px rgba(124, 58, 237, 0.18);
    transform: translateY(-1px);
}

/* Firm AI Suite — full-width hero card at top of grid */
.firm-ai-card[b-ec3b90r9l4] {
    grid-column: 1 / -1;
    border: 2px solid #ddd6fe;
    box-shadow: 0 6px 28px -8px rgba(124, 58, 237, 0.25);
}

.firm-ai-card:hover[b-ec3b90r9l4] {
    box-shadow: 0 10px 32px -6px rgba(124, 58, 237, 0.35);
    transform: translateY(-1px);
}

.firm-ai-header[b-ec3b90r9l4] {
    padding: 24px 28px;
    background: linear-gradient(135deg, #4c1d95 0%, #6d28d9 50%, #7c3aed 100%);
    color: #fff;
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.firm-ai-header-icon[b-ec3b90r9l4] {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
    backdrop-filter: blur(4px);
}

.firm-ai-header-text[b-ec3b90r9l4] {
    flex: 1;
    min-width: 240px;
}

.firm-ai-header-text h2[b-ec3b90r9l4] {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 4px 0;
    color: #fff;
    letter-spacing: -0.01em;
}

.firm-ai-header-text p[b-ec3b90r9l4] {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.45;
}

.firm-ai-badge[b-ec3b90r9l4] {
    background: rgba(255, 255, 255, 0.22);
    color: #fff;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(4px);
}

.firm-ai-body[b-ec3b90r9l4] {
    padding: 20px 28px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.firm-ai-cta[b-ec3b90r9l4] {
    padding: 11px 24px;
    background: linear-gradient(135deg, #6d28d9 0%, #a855f7 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px -2px rgba(124, 58, 237, 0.4);
}

.firm-ai-cta:hover[b-ec3b90r9l4] {
    background: linear-gradient(135deg, #5b21b6 0%, #9333ea 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px -2px rgba(124, 58, 237, 0.5);
    color: #fff;
}

.firm-ai-link[b-ec3b90r9l4] {
    color: #6d28d9;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
}

.firm-ai-link:hover[b-ec3b90r9l4] {
    color: #4c1d95;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .firm-ai-header[b-ec3b90r9l4] {
        padding: 20px;
        gap: 14px;
    }

    .firm-ai-body[b-ec3b90r9l4] {
        padding: 16px 20px;
        flex-direction: column;
        align-items: stretch;
    }

    .firm-ai-cta[b-ec3b90r9l4] {
        justify-content: center;
        width: 100%;
    }

    .firm-ai-link[b-ec3b90r9l4] {
        text-align: center;
    }
}

.card-header[b-ec3b90r9l4] {
    padding: 16px 22px;
    background: #faf8ff;
    border-bottom: 1px solid #ede9fe;
    display: flex;
    align-items: center;
    gap: 12px;
}

.card-header i[b-ec3b90r9l4] {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
    color: #7c3aed;
    font-size: 17px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: inset 0 0 0 1px rgba(167, 139, 250, 0.25);
}

.card-header h2[b-ec3b90r9l4] {
    font-size: 16px;
    font-weight: 700;
    color: #4c1d95;
    margin: 0;
}

.card-body[b-ec3b90r9l4] {
    padding: 24px;
}

.setting-item[b-ec3b90r9l4] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.setting-info[b-ec3b90r9l4] {
    flex: 1;
    min-width: 0;
}

.setting-info label[b-ec3b90r9l4] {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 4px;
}

.setting-description[b-ec3b90r9l4] {
    display: block;
    font-size: 13px;
    color: #64748b;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.setting-divider[b-ec3b90r9l4] {
    height: 1px;
    background: #f1f5f9;
    margin: 14px 0;
}

.btn-primary[b-ec3b90r9l4] {
    padding: 8px 20px;
    background: linear-gradient(135deg, #5b21b6 0%, #7c3aed 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s ease;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
    box-shadow: 0 3px 10px -2px rgba(124, 58, 237, 0.4);
}

.btn-primary:hover[b-ec3b90r9l4] {
    transform: translateY(-1px);
    background: linear-gradient(135deg, #4c1d95 0%, #6d28d9 100%);
    box-shadow: 0 5px 14px -2px rgba(124, 58, 237, 0.5);
}

.btn-secondary[b-ec3b90r9l4] {
    padding: 8px 20px;
    background: white;
    color: #6d28d9;
    border: 1.5px solid #c4b5fd;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s ease;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
}

.btn-secondary:hover:not(:disabled)[b-ec3b90r9l4] {
    background: #f5f3ff;
    border-color: #a78bfa;
    color: #4c1d95;
}

.btn-secondary:disabled[b-ec3b90r9l4] {
    opacity: 0.55;
    cursor: not-allowed;
    color: #94a3b8;
    border-color: #e2e8f0;
}

.setting-select[b-ec3b90r9l4] {
    padding: 8px 14px;
    border: 1.5px solid #e9e5fb;
    border-radius: 8px;
    font-size: 14px;
    color: #1e1b4b;
    background: #faf8ff;
    cursor: pointer;
    transition: all 0.15s ease;
}

.setting-select:hover:not(:disabled)[b-ec3b90r9l4] {
    border-color: #c4b5fd;
}

.setting-select:focus[b-ec3b90r9l4] {
    outline: none;
    border-color: #a78bfa;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(167, 139, 250, 0.15);
}

.setting-select:disabled[b-ec3b90r9l4] {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Toggle Switch */
.toggle-switch[b-ec3b90r9l4] {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 28px;
}

.toggle-switch input[b-ec3b90r9l4] {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider[b-ec3b90r9l4] {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #cbd5e1;
    transition: 0.3s;
    border-radius: 28px;
}

.toggle-slider[b-ec3b90r9l4]:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

input:checked + .toggle-slider[b-ec3b90r9l4] {
    background: linear-gradient(135deg, #5b21b6 0%, #7c3aed 100%);
}

input:checked + .toggle-slider[b-ec3b90r9l4]:before {
    transform: translateX(22px);
}

input:disabled + .toggle-slider[b-ec3b90r9l4] {
    opacity: 0.5;
    cursor: not-allowed;
}

.settings-footer[b-ec3b90r9l4] {
    margin-top: 32px;
    padding: 18px 24px;
    background: #faf8ff;
    border: 1px dashed #ddd6fe;
    border-radius: 12px;
    text-align: center;
}

.footer-note[b-ec3b90r9l4] {
    margin: 0;
    font-size: 13px;
    color: #6d28d9;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 500;
}

.footer-note i[b-ec3b90r9l4] {
    color: #8b5cf6;
    font-size: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .settings-page[b-ec3b90r9l4] {
        padding: 20px 16px;
    }

    .settings-header h1[b-ec3b90r9l4] {
        font-size: 24px;
    }

    .settings-grid[b-ec3b90r9l4] {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .setting-item[b-ec3b90r9l4] {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .btn-primary[b-ec3b90r9l4],
    .btn-secondary[b-ec3b90r9l4] {
        width: 100%;
        text-align: center;
    }

    .setting-select[b-ec3b90r9l4] {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .card-header[b-ec3b90r9l4] {
        padding: 16px;
    }

    .card-body[b-ec3b90r9l4] {
        padding: 16px;
    }

    .settings-header h1[b-ec3b90r9l4] {
        font-size: 20px;
    }

    .settings-header p[b-ec3b90r9l4] {
        font-size: 14px;
    }
}
/* /Components/Shared/DomainPlaceholder.razor.rz.scp.css */
.placeholder-hero[b-5sla4d3tgp] {
    padding: 5rem 1.5rem 4rem;
    background: linear-gradient(180deg, #faf5ff 0%, #ffffff 100%);
    border-bottom: 1px solid #f4f4f5;
}

.placeholder-inner[b-5sla4d3tgp] {
    max-width: 760px;
    margin: 0 auto;
}

.placeholder-eyebrow[b-5sla4d3tgp] {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #6d28d9;
    background: #ede9fe;
    padding: 0.375rem 0.75rem;
    border-radius: 999px;
    margin-bottom: 1.5rem;
}

h1[b-5sla4d3tgp] {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: #18181b;
    margin: 0 0 1rem;
}

.placeholder-sub[b-5sla4d3tgp] {
    font-size: 1rem;
    line-height: 1.6;
    color: #52525b;
    margin: 0 0 0.75rem;
}

.placeholder-meta[b-5sla4d3tgp] {
    font-size: 0.9rem;
    color: #71717a;
    background: #fafafa;
    border: 1px dashed #e4e4e7;
    border-radius: 0.5rem;
    padding: 0.875rem 1rem;
    margin: 1.5rem 0 2rem;
}

.placeholder-cta[b-5sla4d3tgp] {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.ph-btn-primary[b-5sla4d3tgp], .ph-btn-secondary[b-5sla4d3tgp] {
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    padding: 0.625rem 1.125rem;
    border-radius: 0.5rem;
    display: inline-block;
    transition: all 0.15s;
}

.ph-btn-primary[b-5sla4d3tgp] {
    background: #5b21b6;
    color: #ffffff;
}

    .ph-btn-primary:hover[b-5sla4d3tgp] {
        background: #4c1d95;
    }

.ph-btn-secondary[b-5sla4d3tgp] {
    background: #ffffff;
    color: #52525b;
    border: 1px solid #e4e4e7;
}

    .ph-btn-secondary:hover[b-5sla4d3tgp] {
        background: #fafafa;
        color: #18181b;
    }
/* /Components/Shared/DomainSearch.razor.rz.scp.css */
.dt-search-section[b-4pvcc3dpwk] {
    padding: 3rem 1.5rem 4rem;
    min-height: calc(100vh - 64px);
}

.dt-search-inner[b-4pvcc3dpwk] {
    max-width: 1080px;
    margin: 0 auto;
}

.dt-search-header[b-4pvcc3dpwk] {
    margin-bottom: 1.5rem;
}

.dt-back[b-4pvcc3dpwk] {
    text-decoration: none;
    color: #71717a;
    font-size: 0.8125rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 0.875rem;
}

    .dt-back:hover[b-4pvcc3dpwk] {
        color: #5b21b6;
    }

h1[b-4pvcc3dpwk] {
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    color: #18181b;
    margin: 0 0 0.5rem;
}

.dt-search-sub[b-4pvcc3dpwk] {
    color: #71717a;
    font-size: 0.9375rem;
    margin: 0 0 1rem;
}

.dt-search-form[b-4pvcc3dpwk] {
    margin: 1.5rem 0 1.5rem;
}

.dt-search-row[b-4pvcc3dpwk] {
    display: flex;
    gap: 0.625rem;
}

/* Advanced options — Type of Search + Search Accuracy, same as DT/Search. */
.dt-search-adv[b-4pvcc3dpwk] {
    margin-top: 0.75rem;
}

.dt-search-adv summary[b-4pvcc3dpwk] {
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 600;
    color: #6d28d9;
    list-style: none;
}

.dt-search-adv summary[b-4pvcc3dpwk]::-webkit-details-marker {
    display: none;
}

.dt-search-adv summary[b-4pvcc3dpwk]::before {
    content: "\25B8";
    display: inline-block;
    margin-right: 0.375rem;
    transition: transform 0.15s ease;
}

.dt-search-adv[open] summary[b-4pvcc3dpwk]::before {
    transform: rotate(90deg);
}

.dt-adv-grid[b-4pvcc3dpwk] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.875rem;
    margin: 0.75rem 0 0;
    max-width: 640px;
}

.dt-adv-grid label[b-4pvcc3dpwk] {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #52525b;
}

.dt-adv-grid select[b-4pvcc3dpwk] {
    font-size: 0.9375rem;
    font-weight: 400;
    padding: 0.5rem 0.625rem;
    border: 1px solid #e4e4e7;
    border-radius: 0.5rem;
    background: #ffffff;
    color: #18181b;
}

.dt-adv-grid select:focus[b-4pvcc3dpwk] {
    outline: none;
    border-color: #8b5cf6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15);
}

.dt-adv-note[b-4pvcc3dpwk] {
    max-width: 640px;
    margin: 0.75rem 0 0;
    font-size: 0.75rem;
    line-height: 1.5;
    color: #71717a;
}

    .dt-search-form input[type=text][b-4pvcc3dpwk] {
        flex: 1;
        background: #ffffff;
        border: 1px solid #e4e4e7;
        border-radius: 0.5rem;
        padding: 0.75rem 1rem;
        font-size: 1rem;
        color: #18181b;
    }

        .dt-search-form input[type=text]:focus[b-4pvcc3dpwk] {
            outline: none;
            border-color: #8b5cf6;
            box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15);
        }

    .dt-search-form button[b-4pvcc3dpwk] {
        background: #5b21b6;
        color: #ffffff;
        border: none;
        border-radius: 0.5rem;
        padding: 0.75rem 1.5rem;
        font-size: 0.9375rem;
        font-weight: 600;
        cursor: pointer;
    }

        .dt-search-form button:hover[b-4pvcc3dpwk] {
            background: #4c1d95;
        }

.dt-search-hint[b-4pvcc3dpwk] {
    color: #a1a1aa;
    font-size: 0.875rem;
    text-align: center;
    padding: 2rem 0;
    margin: 0;
}

.dt-count[b-4pvcc3dpwk] {
    color: #71717a;
    font-size: 0.8125rem;
    margin: 0 0 1rem;
}

.dt-rows[b-4pvcc3dpwk] {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.dt-row[b-4pvcc3dpwk] {
    background: #ffffff;
    border: 1px solid #e4e4e7;
    border-radius: 0.75rem;
    padding: 1.25rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.dt-row-main[b-4pvcc3dpwk] {
    flex: 1;
    min-width: 0;
}

    .dt-row-main h3[b-4pvcc3dpwk] {
        font-size: 1rem;
        font-weight: 700;
        color: #18181b;
        margin: 0 0 0.25rem;
        line-height: 1.3;
    }

.dt-row-meta[b-4pvcc3dpwk] {
    color: #71717a;
    font-size: 0.8125rem;
    margin: 0 0 0.5rem;
}

.dt-row-side[b-4pvcc3dpwk] {
    flex-shrink: 0;
}

.dt-row-link[b-4pvcc3dpwk] {
    text-decoration: none;
    background: #faf5ff;
    color: #5b21b6;
    font-weight: 600;
    font-size: 0.8125rem;
    padding: 0.4rem 0.875rem;
    border-radius: 0.5rem;
    border: 1px solid #ede9fe;
}

    .dt-row-link:hover[b-4pvcc3dpwk] {
        background: #ede9fe;
    }

.dt-pager[b-4pvcc3dpwk] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0 0;
}

.dt-pager-btn[b-4pvcc3dpwk] {
    text-decoration: none;
    background: #ffffff;
    color: #5b21b6;
    border: 1px solid #e9d5ff;
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
}

    .dt-pager-btn:hover[b-4pvcc3dpwk] {
        background: #faf5ff;
    }

.dt-pager-state[b-4pvcc3dpwk] {
    color: #71717a;
    font-size: 0.875rem;
}

.dt-empty[b-4pvcc3dpwk] {
    text-align: center;
    color: #71717a;
    background: #fafafa;
    border: 1px dashed #e4e4e7;
    border-radius: 0.75rem;
    padding: 3rem 1rem;
}

.dt-search-scope[b-4pvcc3dpwk] {
    background: #fafafa;
    border: 1px solid #e4e4e7;
    border-radius: 0.75rem;
    padding: 0.875rem 1rem;
    margin: 0 0 1.25rem;
    font-size: 0.875rem;
}

.dt-search-scope summary[b-4pvcc3dpwk] {
    cursor: pointer;
    font-weight: 600;
    color: #52525b;
}

.dt-scope-list[b-4pvcc3dpwk] {
    list-style: none;
    padding: 0.75rem 0 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.375rem;
}

.dt-scope-list li label[b-4pvcc3dpwk] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #18181b;
    cursor: pointer;
}

.dt-scope-meta[b-4pvcc3dpwk] {
    color: #a1a1aa;
    font-size: 0.75rem;
    margin-left: auto;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.dt-filter-apply[b-4pvcc3dpwk] {
    margin-top: 0.75rem;
    background: #5b21b6;
    color: #ffffff;
    border: none;
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
}

[b-4pvcc3dpwk] .dt-row-synopsis {
    background: #fafafa;
    border-radius: 0.5rem;
    padding: 0.625rem 0.875rem;
    margin: 0.5rem 0 0;
    font-size: 0.875rem;
    line-height: 1.55;
    color: #3f3f46;
    max-height: 240px;
    overflow-y: auto;
}

[b-4pvcc3dpwk] .dt-row-synopsis mark {
    background: #fef08a;
    padding: 0 1px;
    border-radius: 2px;
}
/* /Components/Shared/DtSubNav.razor.rz.scp.css */
.dt-subnav[b-ch4fbmauuc] {
    background: #ffffff;
    border-bottom: 1px solid #e4e4e7;
}

.dt-subnav-inner[b-ch4fbmauuc] {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    gap: 0.25rem;
    overflow-x: auto;
    scrollbar-width: none;
}

    .dt-subnav-inner[b-ch4fbmauuc]::-webkit-scrollbar { display: none; }

[b-ch4fbmauuc] .dt-subnav-link {
    text-decoration: none;
    color: #71717a;
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.75rem 0.875rem;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: color 0.15s, border-color 0.15s;
}

[b-ch4fbmauuc] .dt-subnav-link:hover {
    color: #18181b;
}

[b-ch4fbmauuc] .dt-subnav-link.active {
    color: #5b21b6;
    border-bottom-color: #5b21b6;
}
