/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* ============================================
   QUALIS - MODERN LAYOUT SYSTEM
   Premium Gradient Theme
   ============================================ */

/* Root layout container */
.page[b-4bufrvtmxc] {
    position: relative;
    display: flex;
    flex-direction: row;
    min-height: 100vh;
    background: #f0f4f8;
}

/* Main content wrapper */
main[b-4bufrvtmxc] {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
    background: #f8fafc;
    overflow: hidden;
    padding-top: 64px; /* Space for fixed header */
}

/* ============================================
   SIDEBAR - Qualis Gradient Style
   ============================================ */
.sidebar[b-4bufrvtmxc] {
    width: 260px;
    height: calc(100vh - 64px); /* Subtract header height */
    margin-top: 64px; /* Start below fixed header */
    background: linear-gradient(180deg, #00b1ba 0%, #6dc3c5 50%, #d1d947 100%);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: sticky;
    top: 64px; /* Stick below header */
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.1);
}

/* ============================================
   TOP BAR - Premium Fixed Header
   ============================================ */
.top-bar[b-4bufrvtmxc] {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.98) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    height: 64px;
    display: flex;
    align-items: center;
    padding: 0 1.5rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

/* Gradient accent line at bottom of header */
.top-bar[b-4bufrvtmxc]::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00b1ba 0%, #6dc3c5 35%, #d1d947 70%, #00b1ba 100%);
    background-size: 200% 100%;
    animation: gradientFlow-b-4bufrvtmxc 4s ease infinite;
}

@keyframes gradientFlow-b-4bufrvtmxc {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.top-bar-content[b-4bufrvtmxc] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.top-bar-left[b-4bufrvtmxc] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* ============================================
   HEADER BRAND - Logo in Header
   ============================================ */
.header-brand[b-4bufrvtmxc] {
    display: flex;
    align-items: center;
    padding: 0.5rem 0.75rem;
    margin-left: 0.5rem;
}

.header-logo[b-4bufrvtmxc] {
    height: 36px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 177, 186, 0.2));
}

/* ============================================
   ANIMATED SIDEBAR TOGGLE BUTTON
   ============================================ */
.sidebar-toggle[b-4bufrvtmxc] {
    position: relative;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #00b1ba, #d1d947);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 177, 186, 0.3);
}

.sidebar-toggle:hover[b-4bufrvtmxc] {
    transform: scale(1.08);
    box-shadow: 0 4px 15px rgba(0, 177, 186, 0.4);
}

.sidebar-toggle:active[b-4bufrvtmxc] {
    transform: scale(0.95);
}

/* Toggle Icon - Animated Bars */
.toggle-icon[b-4bufrvtmxc] {
    position: relative;
    width: 18px;
    height: 14px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.toggle-icon .bar[b-4bufrvtmxc] {
    display: block;
    width: 100%;
    height: 2.5px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-origin: center;
}

/* Expanded State (hamburger) */
.sidebar-toggle .bar-1[b-4bufrvtmxc] {
    transform: translateY(0) rotate(0);
}

.sidebar-toggle .bar-2[b-4bufrvtmxc] {
    opacity: 1;
    transform: scaleX(1);
}

.sidebar-toggle .bar-3[b-4bufrvtmxc] {
    transform: translateY(0) rotate(0);
}

/* Collapsed State (arrow pointing right) */
.sidebar-toggle.collapsed .bar-1[b-4bufrvtmxc] {
    width: 60%;
    transform: translateY(5.5px) translateX(3px) rotate(45deg);
}

.sidebar-toggle.collapsed .bar-2[b-4bufrvtmxc] {
    opacity: 1;
    transform: scaleX(0.75) translateX(2px);
}

.sidebar-toggle.collapsed .bar-3[b-4bufrvtmxc] {
    width: 60%;
    transform: translateY(-5.5px) translateX(3px) rotate(-45deg);
}

/* ============================================
   MOBILE HAMBURGER BUTTON
   ============================================ */
.mobile-menu-btn[b-4bufrvtmxc] {
    display: none;
    background: linear-gradient(135deg, #00b1ba, #d1d947);
    border: none;
    font-size: 1.25rem;
    color: white;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 177, 186, 0.3);
}

.mobile-menu-btn:hover[b-4bufrvtmxc] {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 177, 186, 0.4);
}

/* ============================================
   USER MENU - Modern Dropdown
   ============================================ */
.user-menu[b-4bufrvtmxc] {
    margin-left: auto;
}

.user-dropdown[b-4bufrvtmxc] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none !important;
    color: #1e293b;
    padding: 0.5rem 0.75rem;
    border-radius: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    border: 1px solid transparent;
    position: relative;
}

.user-dropdown:hover[b-4bufrvtmxc] {
    background: linear-gradient(135deg, rgba(0, 177, 186, 0.1), rgba(209, 217, 71, 0.08));
    border-color: rgba(0, 177, 186, 0.25);
    color: #1e293b;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 177, 186, 0.15);
}

.user-avatar-sm[b-4bufrvtmxc] {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, #00b1ba 0%, #6dc3c5 50%, #d1d947 100%);
    background-size: 150% 150%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 4px 12px rgba(0, 177, 186, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: avatarGlow-b-4bufrvtmxc 3s ease-in-out infinite;
}

@keyframes avatarGlow-b-4bufrvtmxc {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.user-dropdown:hover .user-avatar-sm[b-4bufrvtmxc] {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(0, 177, 186, 0.4);
}

.user-avatar-container[b-4bufrvtmxc] {
    width: 38px;
    height: 38px;
    min-width: 38px;
    min-height: 38px;
    max-width: 38px;
    max-height: 38px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #00b1ba 0%, #6dc3c5 100%);
    box-shadow: 0 4px 12px rgba(0, 177, 186, 0.3);
}

.user-avatar-img[b-4bufrvtmxc] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.user-name-text[b-4bufrvtmxc] {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1e293b;
}

.user-dropdown .bi-chevron-down[b-4bufrvtmxc] {
    font-size: 0.65rem;
    color: #64748b;
    transition: transform 0.2s ease;
}

.dropdown.show .user-dropdown .bi-chevron-down[b-4bufrvtmxc] {
    transform: rotate(180deg);
}

/* Dropdown Menu Styling */
.dropdown-menu[b-4bufrvtmxc] {
    background: white;
    border: none;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15),
                0 0 0 1px rgba(0, 0, 0, 0.05);
    padding: 0.5rem;
    min-width: 200px;
    animation: dropdownFade-b-4bufrvtmxc 0.2s ease;
}

@keyframes dropdownFade-b-4bufrvtmxc {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item[b-4bufrvtmxc] {
    padding: 0.625rem 1rem;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #475569;
    transition: all 0.15s ease;
    display: flex;
    align-items: center;
}

.dropdown-item:hover[b-4bufrvtmxc] {
    background: linear-gradient(135deg, rgba(0, 177, 186, 0.1), rgba(209, 217, 71, 0.1));
    color: #0f172a;
}

.dropdown-item .bi[b-4bufrvtmxc] {
    font-size: 1rem;
    opacity: 0.7;
}

.dropdown-item.text-danger:hover[b-4bufrvtmxc] {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
}

.dropdown-divider[b-4bufrvtmxc] {
    margin: 0.5rem 0;
    border-color: #e2e8f0;
}

/* ============================================
   CONTENT AREA
   ============================================ */
.content[b-4bufrvtmxc] {
    padding: 1.5rem 2rem !important;
    flex: 1;
    overflow-y: auto;
}

/* ============================================
   SIDEBAR COLLAPSED STATE
   ============================================ */
.sidebar.collapsed[b-4bufrvtmxc] {
    width: 72px;
    overflow-x: hidden;
}

.sidebar.collapsed[b-4bufrvtmxc]  .nav-scrollable {
    overflow-x: hidden;
}

.sidebar.collapsed[b-4bufrvtmxc]  .nav-item {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
}

.sidebar.collapsed[b-4bufrvtmxc]  .nav-link {
    justify-content: center !important;
    padding: 0.75rem !important;
}

.sidebar.collapsed[b-4bufrvtmxc]  .bi {
    margin-right: 0 !important;
}

/* Hide text and extras in collapsed state */
.sidebar.collapsed[b-4bufrvtmxc]  .nav-text,
.sidebar.collapsed[b-4bufrvtmxc]  .nav-chevron,
.sidebar.collapsed[b-4bufrvtmxc]  .submenu,
.sidebar.collapsed[b-4bufrvtmxc]  .nav-badge,
.sidebar.collapsed[b-4bufrvtmxc]  .feedback-popup {
    display: none !important;
}

.sidebar.collapsed[b-4bufrvtmxc]  .nav-footer {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
}

.sidebar.collapsed[b-4bufrvtmxc]  .feedback-btn-nav {
    justify-content: center !important;
    padding: 0.75rem !important;
}

.sidebar.collapsed[b-4bufrvtmxc]  .nav-mobile-header {
    display: none !important;
}

/* ============================================
   SIDEBAR OVERLAY (Mobile)
   ============================================ */
.sidebar-overlay[b-4bufrvtmxc] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sidebar-overlay.show[b-4bufrvtmxc] {
    opacity: 1;
    visibility: visible;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 768px) {
    .page[b-4bufrvtmxc] {
        flex-direction: column;
        background: #f8fafc;
    }

    .sidebar[b-4bufrvtmxc] {
        position: fixed;
        top: 64px; /* Below fixed header */
        left: 0;
        width: 280px;
        height: calc(100vh - 64px);
        margin: 0;
        border-radius: 0 20px 20px 0;
        z-index: 1050;
        transform: translateX(-100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .sidebar.mobile-open[b-4bufrvtmxc] {
        transform: translateX(0);
    }

    /* Force show text in mobile sidebar */
    .sidebar.mobile-open.collapsed[b-4bufrvtmxc]  .nav-text,
    .sidebar.mobile-open.collapsed[b-4bufrvtmxc]  .nav-chevron,
    .sidebar.mobile-open.collapsed[b-4bufrvtmxc]  .submenu,
    .sidebar.mobile-open.collapsed[b-4bufrvtmxc]  .nav-badge {
        display: inline !important;
    }

    .sidebar.mobile-open.collapsed[b-4bufrvtmxc] {
        width: 280px;
    }

    main[b-4bufrvtmxc] {
        margin: 0;
        border-radius: 0;
        width: 100%;
    }

    .mobile-menu-btn[b-4bufrvtmxc] {
        display: flex;
    }

    .top-bar[b-4bufrvtmxc] {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .top-bar-left[b-4bufrvtmxc] {
        gap: 0.75rem;
    }

    .header-logo[b-4bufrvtmxc] {
        height: 32px;
    }

    .content[b-4bufrvtmxc] {
        padding: 1rem !important;
    }

    .dropdown-menu[b-4bufrvtmxc] {
        position: fixed !important;
        top: 64px !important;
        left: 1rem !important;
        right: 1rem !important;
        width: auto !important;
        transform: none !important;
        margin: 0 !important;
        z-index: 1100;
    }

    .user-menu .dropdown[b-4bufrvtmxc] {
        position: static;
    }

    .user-name-text[b-4bufrvtmxc] {
        display: none;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .sidebar[b-4bufrvtmxc] {
        width: 220px;
    }

    .sidebar.collapsed[b-4bufrvtmxc] {
        width: 72px;
    }

    .content[b-4bufrvtmxc] {
        padding: 1.25rem 1.5rem !important;
    }
}

/* ============================================
   BLAZOR ERROR UI
   ============================================ */
#blazor-error-ui[b-4bufrvtmxc] {
    color-scheme: light only;
    background: #fef2f2;
    border-top: 3px solid #ef4444;
    bottom: 0;
    box-shadow: 0 -4px 20px rgba(239, 68, 68, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.75rem 1.5rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
    font-size: 0.875rem;
    color: #991b1b;
}

#blazor-error-ui .dismiss[b-4bufrvtmxc] {
    cursor: pointer;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.6;
    transition: opacity 0.2s;
}

#blazor-error-ui .dismiss:hover[b-4bufrvtmxc] {
    opacity: 1;
}

#blazor-error-ui .reload[b-4bufrvtmxc] {
    color: #dc2626;
    font-weight: 600;
    text-decoration: underline;
}

/* ============================================
   DARK MODE SUPPORT
   ============================================ */
@media (prefers-color-scheme: dark) {
    .page[b-4bufrvtmxc] {
        background: #121212;
    }

    main[b-4bufrvtmxc] {
        background: #121212;
    }

    .top-bar[b-4bufrvtmxc] {
        background: linear-gradient(135deg, rgba(30, 30, 30, 0.98) 0%, rgba(18, 18, 18, 0.98) 100%);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    }


    .user-dropdown[b-4bufrvtmxc] {
        color: #e4e4e4;
    }

    .user-dropdown:hover[b-4bufrvtmxc] {
        background: linear-gradient(135deg, rgba(0, 177, 186, 0.2), rgba(209, 217, 71, 0.15));
        border-color: rgba(0, 177, 186, 0.35);
        color: #e4e4e4;
    }

    .user-name-text[b-4bufrvtmxc] {
        color: #e4e4e4;
    }

    .user-dropdown .bi-chevron-down[b-4bufrvtmxc] {
        color: #a0a0a0;
    }

    .dropdown-menu[b-4bufrvtmxc] {
        background: #1e1e1e;
        border: 1px solid #3d3d3d;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5),
                    0 0 0 1px rgba(255, 255, 255, 0.05);
    }

    .dropdown-item[b-4bufrvtmxc] {
        color: #e4e4e4;
    }

    .dropdown-item:hover[b-4bufrvtmxc] {
        background: linear-gradient(135deg, rgba(0, 177, 186, 0.2), rgba(209, 217, 71, 0.15));
        color: #ffffff;
    }

    .dropdown-item.text-danger:hover[b-4bufrvtmxc] {
        background: rgba(239, 68, 68, 0.2);
    }

    .dropdown-divider[b-4bufrvtmxc] {
        border-color: #3d3d3d;
    }

    .sidebar-overlay[b-4bufrvtmxc] {
        background: rgba(0, 0, 0, 0.7);
    }

    #blazor-error-ui[b-4bufrvtmxc] {
        background: #3b1414;
        color: #fca5a5;
    }

    #blazor-error-ui .reload[b-4bufrvtmxc] {
        color: #f87171;
    }

    /* Mobile responsive adjustments */
    @media (max-width: 768px) {
        .page[b-4bufrvtmxc] {
            background: #121212;
        }
    }
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
/* ============================================
   QUALIS - NAVIGATION MENU
   Gradient Theme with Modern Styling
   ============================================ */

.navbar-toggler[b-3hplrqregr] {
    display: none;
}

/* ============================================
   MOBILE HEADER - Close Button
   ============================================ */
.nav-mobile-header[b-3hplrqregr] {
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 0 16px 0 0;
    margin: 0.5rem 0.5rem 0 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.nav-mobile-title[b-3hplrqregr] {
    font-weight: 600;
    font-size: 1rem;
    color: #1e293b;
}

.sidebar-close[b-3hplrqregr] {
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 10px;
    color: #1e293b;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.sidebar-close:hover[b-3hplrqregr] {
    background: rgba(239, 68, 68, 0.15);
    color: #dc2626;
}

.sidebar-close .bi[b-3hplrqregr] {
    font-size: 1.1rem;
    margin: 0;
}

/* ============================================
   NAVIGATION SCROLLABLE AREA
   ============================================ */
.nav-scrollable[b-3hplrqregr] {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 0.75rem;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

.nav-scrollable[b-3hplrqregr]::-webkit-scrollbar {
    width: 4px;
}

.nav-scrollable[b-3hplrqregr]::-webkit-scrollbar-track {
    background: transparent;
}

.nav-scrollable[b-3hplrqregr]::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
}

.nav-scrollable[b-3hplrqregr]::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* ============================================
   NAVIGATION ITEMS
   ============================================ */
.nav-item[b-3hplrqregr] {
    margin-bottom: 0.25rem;
}

.nav-item:first-of-type[b-3hplrqregr] {
    padding-top: 0;
}

.nav-item:last-of-type[b-3hplrqregr] {
    padding-bottom: 0;
}

.nav-item[b-3hplrqregr]  .nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    background: transparent;
    border: none;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
}

.nav-item[b-3hplrqregr]  .nav-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.15);
}

.nav-item[b-3hplrqregr]  a.active {
    color: white;
    background: rgba(255, 255, 255, 0.25);
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Icons */
.bi[b-3hplrqregr] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    font-size: 1.15rem;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.nav-item[b-3hplrqregr]  .nav-link:hover .bi {
    transform: scale(1.1);
}

/* Nav Text */
.nav-text[b-3hplrqregr] {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: opacity 0.2s ease;
}

/* Nav Chevron */
.nav-chevron[b-3hplrqregr] {
    font-size: 0.7rem !important;
    width: auto !important;
    height: auto !important;
    opacity: 0.7;
    margin-left: auto;
}

/* ============================================
   SUBMENU STYLES
   ============================================ */
.submenu[b-3hplrqregr] {
    margin-left: 1.5rem;
    margin-top: 0.25rem;
    padding-left: 0.75rem;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.submenu-item[b-3hplrqregr] {
    height: auto !important;
    padding: 0.5rem 0.75rem !important;
    font-size: 0.8rem !important;
    margin-bottom: 0.125rem;
}

.submenu-item .bi[b-3hplrqregr] {
    font-size: 0.95rem;
    width: 18px;
    height: 18px;
}

.submenu-divider[b-3hplrqregr] {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0.5rem 0;
}

/* ============================================
   NAVIGATION FOOTER
   ============================================ */
.nav-footer[b-3hplrqregr] {
    padding: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Feedback Button */
.feedback-btn-nav[b-3hplrqregr] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9) !important;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
}

.feedback-btn-nav:hover[b-3hplrqregr] {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
    color: white !important;
}

/* ============================================
   FEEDBACK POPUP
   ============================================ */
.feedback-popup[b-3hplrqregr] {
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(30, 41, 59, 0.98));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    z-index: 1000;
    animation: slideUp-b-3hplrqregr 0.2s ease-out;
}

@keyframes slideUp-b-3hplrqregr {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feedback-popup-header[b-3hplrqregr] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.875rem 1rem;
    background: rgba(0, 0, 0, 0.2);
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.feedback-popup-body[b-3hplrqregr] {
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.feedback-option[b-3hplrqregr] {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.875rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
    width: 100%;
    color: white;
}

.feedback-option:hover[b-3hplrqregr] {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 177, 186, 0.3);
    transform: translateX(4px);
}

.feedback-option .bi[b-3hplrqregr] {
    font-size: 1.5rem;
    margin: 0;
    width: auto;
    height: auto;
    color: #00b1ba;
}

.feedback-option-text[b-3hplrqregr] {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.feedback-option-text strong[b-3hplrqregr] {
    font-size: 0.9rem;
    font-weight: 600;
}

.feedback-option-text small[b-3hplrqregr] {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
}

.feedback-popup-footer[b-3hplrqregr] {
    padding: 0.625rem 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* ============================================
   MOBILE STYLES
   ============================================ */
@media (max-width: 768px) {
    .nav-mobile-header[b-3hplrqregr] {
        display: flex;
    }

    .nav-scrollable[b-3hplrqregr] {
        padding: 0.5rem;
    }

    .nav-item[b-3hplrqregr]  .nav-link {
        padding: 0.875rem 1rem;
    }
}

@media (min-width: 769px) {
    .nav-mobile-header[b-3hplrqregr] {
        display: none;
    }
}

/* ============================================
   NAV MENU CONTENT - Fade In Animation
   ============================================ */

@keyframes navMenuFadeIn-b-3hplrqregr {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.nav-menu-content[b-3hplrqregr] {
    animation: navMenuFadeIn-b-3hplrqregr 0.3s ease-out forwards;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* ============================================
   NAV SKELETON - Loading State
   ============================================ */

@keyframes navSkeletonShimmer-b-3hplrqregr {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

@keyframes navSkeletonFadeIn-b-3hplrqregr {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.nav-skeleton[b-3hplrqregr] {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 1rem 0.75rem;
}

.nav-skeleton-items[b-3hplrqregr] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.nav-skeleton-item[b-3hplrqregr] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    opacity: 0;
    animation: navSkeletonFadeIn-b-3hplrqregr 0.4s ease-out forwards;
}

.nav-skeleton-icon[b-3hplrqregr] {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    background: linear-gradient(90deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0.05) 100%);
    background-size: 200% 100%;
    animation: navSkeletonShimmer-b-3hplrqregr 1.5s ease-in-out infinite;
    flex-shrink: 0;
}

.nav-skeleton-text[b-3hplrqregr] {
    height: 14px;
    border-radius: 7px;
    background: linear-gradient(90deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0.05) 100%);
    background-size: 200% 100%;
    animation: navSkeletonShimmer-b-3hplrqregr 1.5s ease-in-out infinite;
    width: 70%;
}

.nav-skeleton-item:nth-child(1) .nav-skeleton-text[b-3hplrqregr] { width: 65%; }
.nav-skeleton-item:nth-child(2) .nav-skeleton-text[b-3hplrqregr] { width: 80%; }
.nav-skeleton-item:nth-child(3) .nav-skeleton-text[b-3hplrqregr] { width: 55%; }
.nav-skeleton-item:nth-child(4) .nav-skeleton-text[b-3hplrqregr] { width: 70%; }
.nav-skeleton-item:nth-child(5) .nav-skeleton-text[b-3hplrqregr] { width: 60%; }
.nav-skeleton-item:nth-child(6) .nav-skeleton-text[b-3hplrqregr] { width: 75%; }

.nav-skeleton-footer[b-3hplrqregr] {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: auto;
}

.nav-skeleton-footer .nav-skeleton-item[b-3hplrqregr] {
    animation-delay: 0.5s;
}

/* Collapsed sidebar skeleton */
[b-3hplrqregr] .sidebar.collapsed .nav-skeleton-text {
    display: none;
}

[b-3hplrqregr] .sidebar.collapsed .nav-skeleton-item {
    justify-content: center;
    padding: 0.75rem;
}

[b-3hplrqregr] .sidebar.collapsed .nav-skeleton-icon {
    width: 24px;
    height: 24px;
}

/* ============================================
   DARK MODE SUPPORT
   ============================================ */
@media (prefers-color-scheme: dark) {
    .nav-mobile-header[b-3hplrqregr] {
        background: rgba(30, 30, 30, 0.95);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .nav-mobile-title[b-3hplrqregr] {
        color: #e4e4e4;
    }

    .sidebar-close[b-3hplrqregr] {
        background: rgba(255, 255, 255, 0.1);
        color: #e4e4e4;
    }

    .sidebar-close:hover[b-3hplrqregr] {
        background: rgba(239, 68, 68, 0.25);
        color: #f87171;
    }

    .feedback-popup[b-3hplrqregr] {
        background: linear-gradient(135deg, rgba(18, 18, 18, 0.98), rgba(30, 30, 30, 0.98));
        border-color: rgba(255, 255, 255, 0.08);
    }

    .feedback-option[b-3hplrqregr] {
        background: rgba(255, 255, 255, 0.03);
        border-color: rgba(255, 255, 255, 0.05);
    }

    .feedback-option:hover[b-3hplrqregr] {
        background: rgba(255, 255, 255, 0.06);
        border-color: rgba(0, 177, 186, 0.4);
    }
}
/* /Components/Pages/Accounts/Index.razor.rz.scp.css */
.credit-card-item[b-78z5x49caw] {
    transition: all 0.2s ease;
}

.credit-card-item:hover[b-78z5x49caw] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
/* /Components/Pages/Admin/ReportsManagement.razor.rz.scp.css */
.donut-chart[b-yio228m8vq] {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: conic-gradient(
        #dc3545 0deg calc(var(--bug) * 3.6deg),
        #0dcaf0 calc(var(--bug) * 3.6deg) calc((var(--bug) + var(--improvement)) * 3.6deg),
        #198754 calc((var(--bug) + var(--improvement)) * 3.6deg) calc((var(--bug) + var(--improvement) + var(--feature)) * 3.6deg),
        #ffc107 calc((var(--bug) + var(--improvement) + var(--feature)) * 3.6deg) 360deg
    );
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.donut-center[b-yio228m8vq] {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
}

.chart-legend[b-yio228m8vq] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.legend-item[b-yio228m8vq] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.legend-color[b-yio228m8vq] {
    width: 12px;
    height: 12px;
    border-radius: 2px;
    flex-shrink: 0;
}

@media (max-width: 576px) {
    .donut-chart[b-yio228m8vq] {
        width: 100px;
        height: 100px;
    }

    .donut-center[b-yio228m8vq] {
        width: 60px;
        height: 60px;
    }

    .donut-center span.fs-4[b-yio228m8vq] {
        font-size: 1rem !important;
    }
}

/* Timeline styles */
.timeline-container[b-yio228m8vq] {
    position: relative;
    padding-left: 20px;
}

.timeline-container[b-yio228m8vq]::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background-color: #dee2e6;
}

.timeline-item[b-yio228m8vq] {
    position: relative;
}

.timeline-dot[b-yio228m8vq] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    position: absolute;
    left: -19px;
    top: 8px;
    z-index: 1;
}

/* Trend Chart */
.trend-chart[b-yio228m8vq] {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 120px;
    gap: 4px;
    padding: 10px 0;
}

.trend-bar[b-yio228m8vq] {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.trend-bar .bar[b-yio228m8vq] {
    width: 100%;
    min-height: 4px;
    border-radius: 3px 3px 0 0;
    transition: height 0.3s ease;
}

.trend-bar .label[b-yio228m8vq] {
    font-size: 0.65rem;
    color: #6c757d;
    margin-top: 4px;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.cursor-pointer[b-yio228m8vq] {
    cursor: pointer;
}

.cursor-pointer:hover[b-yio228m8vq] {
    background-color: rgba(0,0,0,0.05);
}
/* /Components/Pages/CashFlow/Components/CalendarView.razor.rz.scp.css */
.calendar-legend-dot[b-gh6xfbqlfb] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.calendar-grid[b-gh6xfbqlfb] {
    display: flex;
    flex-direction: column;
}

.calendar-header[b-gh6xfbqlfb] {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 8px;
}

.calendar-weekday[b-gh6xfbqlfb] {
    text-align: center;
    padding: 8px 0;
}

.calendar-days[b-gh6xfbqlfb] {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.calendar-day[b-gh6xfbqlfb] {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    position: relative;
}

.calendar-day:hover:not(.calendar-day-empty)[b-gh6xfbqlfb] {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1;
}

.calendar-day-empty[b-gh6xfbqlfb] {
    background: transparent;
    cursor: default;
}

.calendar-day-today[b-gh6xfbqlfb] {
    outline: 3px solid #0d6efd;
    outline-offset: -1px;
}

.calendar-day-past[b-gh6xfbqlfb] {
    opacity: 0.6;
}

.calendar-day-number[b-gh6xfbqlfb] {
    font-weight: 600;
    font-size: 0.9rem;
}

.calendar-day-indicator[b-gh6xfbqlfb] {
    position: absolute;
    bottom: 4px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
}

.calendar-day-high[b-gh6xfbqlfb] {
    background: #198754;
    color: white;
}

.calendar-day-good[b-gh6xfbqlfb] {
    background: #0d6efd;
    color: white;
}

.calendar-day-warning[b-gh6xfbqlfb] {
    background: #ffc107;
    color: #000;
}

.calendar-day-danger[b-gh6xfbqlfb] {
    background: #dc3545;
    color: white;
}

.selected-day-details[b-gh6xfbqlfb] {
    border-left: 4px solid #0d6efd;
}
/* /Components/Pages/CashFlow/Components/KpiPanel.razor.rz.scp.css */
.kpi-card[b-xhf14e0pqt] {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.kpi-card:hover[b-xhf14e0pqt] {
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1) !important;
}

.kpi-icon[b-xhf14e0pqt] {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}
/* /Components/Pages/CashFlow/Components/WhatIfSimulator.razor.rz.scp.css */
.text-purple[b-2sdtlabkdy] {
    color: #6f42c1;
}

.btn-close-sm[b-2sdtlabkdy] {
    font-size: 0.5rem;
    padding: 0.25rem;
}

.whatif-items .badge[b-2sdtlabkdy] {
    font-size: 0.85rem;
}
/* /Components/Pages/CashFlow/Index.razor.rz.scp.css */
/* CashFlow Table Styles - Compact and minimal scrollbars */

/* Make scrollbars very thin and almost invisible */
[b-otjw164kwy] .table-responsive {
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 177, 186, 0.2) transparent;
    overflow-x: auto;
    overflow-y: hidden;
}

[b-otjw164kwy] .table-responsive::-webkit-scrollbar {
    height: 4px;
}

[b-otjw164kwy] .table-responsive::-webkit-scrollbar-track {
    background: transparent;
}

[b-otjw164kwy] .table-responsive::-webkit-scrollbar-thumb {
    background-color: rgba(0, 177, 186, 0.2);
    border-radius: 2px;
}

[b-otjw164kwy] .table-responsive::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0, 177, 186, 0.4);
}

/* Reduce table font size for compactness */
[b-otjw164kwy] .table-sm {
    font-size: 0.78rem;
}

/* Reduce column widths and padding */
[b-otjw164kwy] .table th,
[b-otjw164kwy] .table td {
    padding: 0.3rem 0.4rem;
    white-space: nowrap;
}

/* Card container styling */
[b-otjw164kwy] .card {
    overflow: hidden;
}

/* Ensure table doesn't add unnecessary space */
[b-otjw164kwy] .card-body.p-0 {
    padding: 0 !important;
}

[b-otjw164kwy] .table {
    margin-bottom: 0 !important;
}

/* Summary cards more compact */
[b-otjw164kwy] .row.g-3.mb-4 .card-body {
    padding: 0.75rem;
}
/* /Components/Pages/CreditCards/Index.razor.rz.scp.css */
.credit-card-item[b-3e297sxnxw] {
    transition: all 0.2s ease;
}

.credit-card-item:hover[b-3e297sxnxw] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
/* /Components/Pages/Feedback/Index.razor.rz.scp.css */
.hover-shadow:hover[b-v273bb93o4] {
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
    transition: box-shadow 0.2s ease-in-out;
}

/* Mobile responsive fixes */
.report-card[b-v273bb93o4] {
    overflow: hidden;
}

.report-card .card-body[b-v273bb93o4] {
    overflow: hidden;
}

.report-title[b-v273bb93o4] {
    word-break: break-word;
    overflow-wrap: break-word;
}

.report-description[b-v273bb93o4] {
    word-break: break-word;
    overflow-wrap: break-word;
}

/* Make filter tabs scrollable on mobile */
@media (max-width: 576px) {
    [b-v273bb93o4] .nav-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    [b-v273bb93o4] .nav-tabs .nav-item {
        flex-shrink: 0;
    }

    [b-v273bb93o4] .nav-tabs .nav-link {
        white-space: nowrap;
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
    }

    .report-content[b-v273bb93o4] {
        min-width: 0;
    }

    .report-icon[b-v273bb93o4] {
        flex-shrink: 0;
    }
}
/* /Components/Pages/Onboarding/Setup.razor.rz.scp.css */
/* ========================================
   QUALIS ONBOARDING - IMMERSIVE DESIGN
   ======================================== */

.setup-immersive[b-82x9y27txj] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0a1628 0%, #1a365d 50%, #0d2847 100%);
}

.setup-background[b-82x9y27txj] {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.gradient-orb[b-82x9y27txj] {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: floatOrb-b-82x9y27txj 10s ease-in-out infinite;
}

.orb-1[b-82x9y27txj] {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #00b1ba, #6dc3c5);
    top: -20%;
    left: -10%;
}

.orb-2[b-82x9y27txj] {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #d1d947, #38bdf8);
    bottom: -15%;
    right: -10%;
    animation-delay: -4s;
}

.orb-3[b-82x9y27txj] {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #a78bfa, #00b1ba);
    top: 60%;
    left: 20%;
    animation-delay: -7s;
}

.orb-4[b-82x9y27txj] {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #00b1ba, #d1d947);
    top: 10%;
    right: 20%;
    animation-delay: -2s;
}

@keyframes floatOrb-b-82x9y27txj {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

.setup-wrapper[b-82x9y27txj] {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 560px;
}

/* Header */
.setup-header[b-82x9y27txj] {
    text-align: center;
    margin-bottom: 1.5rem;
}

.setup-logo[b-82x9y27txj] {
    width: 56px;
    height: 56px;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 20px rgba(0, 177, 186, 0.3));
}

.setup-title[b-82x9y27txj] {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin: 0 0 0.5rem;
    letter-spacing: -0.5px;
}

.setup-subtitle[b-82x9y27txj] {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Progress */
.progress-container[b-82x9y27txj] {
    margin-bottom: 1.5rem;
}

.progress-track[b-82x9y27txj] {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-fill[b-82x9y27txj] {
    height: 100%;
    background: linear-gradient(90deg, #00b1ba, #d1d947);
    border-radius: 2px;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-steps[b-82x9y27txj] {
    display: flex;
    justify-content: space-between;
}

.step[b-82x9y27txj] {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.step-circle[b-82x9y27txj] {
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    overflow: hidden;
}

.step-circle .bi[b-82x9y27txj] {
    font-size: 0.9rem;
    line-height: 1;
}

.step.active .step-circle[b-82x9y27txj] {
    background: #00b1ba;
    border-color: #00b1ba;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 177, 186, 0.4);
}

.step.current .step-circle[b-82x9y27txj] {
    transform: scale(1.15);
    background: #00b1ba;
    border-color: #00b1ba;
}

.step-label[b-82x9y27txj] {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.step.active .step-label[b-82x9y27txj] {
    color: rgba(255, 255, 255, 0.9);
}

/* Card */
.setup-card[b-82x9y27txj] {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.4);
}

.step-content[b-82x9y27txj] {
    animation: fadeIn-b-82x9y27txj 0.4s ease;
}

.fade-in[b-82x9y27txj] {
    animation: fadeIn-b-82x9y27txj 0.4s ease;
}

@keyframes fadeIn-b-82x9y27txj {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

.step-icon[b-82x9y27txj] {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, rgba(0, 177, 186, 0.1), rgba(209, 217, 71, 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon .bi[b-82x9y27txj] {
    font-size: 1.75rem;
    background: linear-gradient(135deg, #00b1ba, #d1d947);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.step-icon.success[b-82x9y27txj] {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(52, 211, 153, 0.1));
}

.step-icon.success .bi[b-82x9y27txj] {
    background: linear-gradient(135deg, #10b981, #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.step-content h2[b-82x9y27txj] {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    text-align: center;
    margin: 0 0 0.5rem;
}

.step-description[b-82x9y27txj] {
    text-align: center;
    color: #64748b;
    font-size: 0.9rem;
    margin: 0 0 1.5rem;
}

/* Form Elements */
.form-group[b-82x9y27txj] {
    margin-bottom: 1.25rem;
}

.form-group label[b-82x9y27txj] {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 0.5rem;
}

.select-wrapper[b-82x9y27txj] {
    position: relative;
}

.select-wrapper select[b-82x9y27txj],
.form-group input[b-82x9y27txj] {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 0.95rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    background: #f8fafc;
    color: #0f172a;
    transition: all 0.2s ease;
    appearance: none;
}

.select-wrapper .bi-chevron-down[b-82x9y27txj] {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    pointer-events: none;
}

.form-group input:focus[b-82x9y27txj],
.select-wrapper select:focus[b-82x9y27txj] {
    outline: none;
    border-color: #00b1ba;
    background: white;
    box-shadow: 0 0 0 4px rgba(0, 177, 186, 0.1);
}

.input-with-prefix[b-82x9y27txj] {
    position: relative;
}

.input-with-prefix .prefix[b-82x9y27txj] {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
    font-weight: 600;
}

.input-with-prefix input[b-82x9y27txj] {
    padding-left: 2.5rem;
}

/* Option Cards */
.option-cards[b-82x9y27txj] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.option-card[b-82x9y27txj] {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.5rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.option-card:hover[b-82x9y27txj] {
    border-color: #00b1ba;
    transform: translateY(-2px);
}

.option-card.selected[b-82x9y27txj] {
    border-color: #00b1ba;
    background: linear-gradient(135deg, rgba(0, 177, 186, 0.05), rgba(209, 217, 71, 0.05));
}

.option-icon[b-82x9y27txj] {
    width: 48px;
    height: 48px;
    margin: 0 auto 0.75rem;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.option-icon.default[b-82x9y27txj] {
    background: linear-gradient(135deg, rgba(0, 177, 186, 0.15), rgba(0, 177, 186, 0.05));
}

.option-icon.default .bi[b-82x9y27txj] {
    color: #00b1ba;
    font-size: 1.25rem;
}

.option-icon.import[b-82x9y27txj] {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(16, 185, 129, 0.05));
}

.option-icon.import .bi[b-82x9y27txj] {
    color: #10b981;
    font-size: 1.25rem;
}

.option-card h4[b-82x9y27txj] {
    font-size: 0.9rem;
    font-weight: 600;
    color: #0f172a;
    margin: 0 0 0.35rem;
}

.option-card p[b-82x9y27txj] {
    font-size: 0.75rem;
    color: #64748b;
    margin: 0;
    line-height: 1.4;
}

.option-check[b-82x9y27txj] {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    color: #00b1ba;
    font-size: 1.1rem;
}

/* Import Section */
.import-section[b-82x9y27txj] {
    margin-top: 1rem;
}

.info-banner[b-82x9y27txj] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    background: rgba(0, 177, 186, 0.08);
    border-radius: 10px;
    color: #0f172a;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.info-banner .bi[b-82x9y27txj] {
    color: #00b1ba;
    font-size: 1.1rem;
}

.import-buttons[b-82x9y27txj] {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
}

.btn-import[b-82x9y27txj] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: #334155;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-import:hover[b-82x9y27txj] {
    border-color: #00b1ba;
    color: #00b1ba;
}

/* Goal Toggle */
.goal-toggle[b-82x9y27txj] {
    display: flex;
    background: #f1f5f9;
    border-radius: 12px;
    padding: 4px;
    margin-bottom: 1.5rem;
}

.toggle-btn[b-82x9y27txj] {
    flex: 1;
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #64748b;
    background: transparent;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.toggle-btn.active[b-82x9y27txj] {
    background: white;
    color: #0f172a;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Goal Suggestions */
.goal-suggestions[b-82x9y27txj] {
    margin-top: 1.25rem;
    text-align: center;
}

.suggestions-label[b-82x9y27txj] {
    font-size: 0.8rem;
    color: #64748b;
    display: block;
    margin-bottom: 0.75rem;
}

.suggestion-chips[b-82x9y27txj] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.chip[b-82x9y27txj] {
    padding: 0.5rem 0.875rem;
    font-size: 0.8rem;
    color: #475569;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.chip:hover[b-82x9y27txj] {
    border-color: #00b1ba;
    color: #00b1ba;
    background: rgba(0, 177, 186, 0.05);
}

/* Tips */
.tips-list[b-82x9y27txj] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tip-item[b-82x9y27txj] {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 14px;
    transition: all 0.2s ease;
}

.tip-item:hover[b-82x9y27txj] {
    transform: translateX(4px);
    background: linear-gradient(135deg, rgba(0, 177, 186, 0.05), rgba(209, 217, 71, 0.05));
}

.tip-number[b-82x9y27txj] {
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: linear-gradient(135deg, #00b1ba, #d1d947);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.8rem;
}

.tip-content[b-82x9y27txj] {
    display: flex;
    gap: 0.75rem;
    flex: 1;
}

.tip-icon[b-82x9y27txj] {
    font-size: 1.25rem;
    color: #00b1ba;
    margin-top: 2px;
}

.tip-content h5[b-82x9y27txj] {
    font-size: 0.9rem;
    font-weight: 600;
    color: #0f172a;
    margin: 0 0 0.25rem;
}

.tip-content p[b-82x9y27txj] {
    font-size: 0.8rem;
    color: #64748b;
    margin: 0;
    line-height: 1.4;
}

.ready-banner[b-82x9y27txj] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(52, 211, 153, 0.1));
    border-radius: 12px;
    color: #059669;
    font-weight: 600;
    font-size: 1rem;
}

.ready-banner .bi[b-82x9y27txj] {
    font-size: 1.25rem;
}

/* Navigation */
.setup-nav[b-82x9y27txj] {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
}

.btn-nav[b-82x9y27txj] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.btn-nav.back[b-82x9y27txj] {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    backdrop-filter: blur(10px);
}

.btn-nav.back:hover[b-82x9y27txj] {
    background: rgba(255, 255, 255, 0.25);
}

.btn-nav.next[b-82x9y27txj] {
    background: linear-gradient(135deg, #00b1ba, #d1d947);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 177, 186, 0.4);
}

.btn-nav.next:hover[b-82x9y27txj] {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 177, 186, 0.5);
}

.btn-nav.finish[b-82x9y27txj] {
    background: linear-gradient(135deg, #10b981, #34d399);
    color: white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.btn-nav.finish:hover[b-82x9y27txj] {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
}

.btn-nav:disabled[b-82x9y27txj] {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.spinner[b-82x9y27txj] {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin-b-82x9y27txj 0.8s linear infinite;
}

@keyframes spin-b-82x9y27txj {
    to { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 576px) {
    .setup-immersive[b-82x9y27txj] {
        padding: 1rem;
    }

    .setup-card[b-82x9y27txj] {
        padding: 1.5rem;
    }

    .option-cards[b-82x9y27txj] {
        grid-template-columns: 1fr;
    }

    .step-label[b-82x9y27txj] {
        display: none;
    }

    .import-buttons[b-82x9y27txj] {
        flex-direction: column;
    }

    .btn-import[b-82x9y27txj] {
        width: 100%;
        justify-content: center;
    }

    .tip-item[b-82x9y27txj] {
        flex-direction: column;
        text-align: center;
    }

    .tip-number[b-82x9y27txj] {
        margin: 0 auto;
    }

    .tip-content[b-82x9y27txj] {
        flex-direction: column;
        align-items: center;
    }
}
/* /Components/Pages/Onboarding/Welcome.razor.rz.scp.css */
.onboarding-container[b-f9e9bzdkhq] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 2rem;
}

.welcome-screen[b-f9e9bzdkhq] {
    text-align: center;
    max-width: 550px;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 3rem 2.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.welcome-screen.fade-in[b-f9e9bzdkhq] {
    opacity: 1;
    transform: translateY(0);
}

.logo-container[b-f9e9bzdkhq] {
    margin-bottom: 1.5rem;
}

.welcome-logo[b-f9e9bzdkhq] {
    width: 100px;
    height: 100px;
    filter: drop-shadow(0 0 30px rgba(var(--bs-primary-rgb), 0.5));
    transition: transform 0.5s ease;
}

.logo-container.animate .welcome-logo[b-f9e9bzdkhq] {
    animation: pulse-b-f9e9bzdkhq 2s infinite;
}

@keyframes pulse-b-f9e9bzdkhq {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.welcome-title[b-f9e9bzdkhq] {
    font-size: 2rem;
    font-weight: 300;
    color: white;
    margin-bottom: 1rem;
}

.multilang-messages[b-f9e9bzdkhq] {
    height: 35px;
    margin-bottom: 1rem;
    position: relative;
}

.message-item[b-f9e9bzdkhq] {
    position: absolute;
    width: 100%;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.6);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s ease;
    font-style: italic;
}

.message-item.active[b-f9e9bzdkhq] {
    opacity: 1;
    transform: translateY(0);
}

.welcome-subtitle[b-f9e9bzdkhq] {
    font-size: 1rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.welcome-features[b-f9e9bzdkhq] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
    text-align: left;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.feature-item[b-f9e9bzdkhq] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
}

.feature-item .bi[b-f9e9bzdkhq] {
    font-size: 1.25rem;
    width: 24px;
}

.start-button[b-f9e9bzdkhq] {
    padding: 0.875rem 2.5rem;
    font-size: 1.05rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(var(--bs-primary-rgb), 0.4);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 280px;
}

.start-button:hover[b-f9e9bzdkhq] {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(var(--bs-primary-rgb), 0.5);
}

@media (max-width: 576px) {
    .welcome-screen[b-f9e9bzdkhq] {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }

    .welcome-title[b-f9e9bzdkhq] {
        font-size: 1.75rem;
    }
}
/* /Components/Shared/CategoryAutocomplete.razor.rz.scp.css */
.category-autocomplete[b-5q2e0h5rxs] {
    position: relative;
}

.category-selected[b-5q2e0h5rxs] {
    cursor: pointer;
    transition: border-color 0.15s ease;
}

.category-selected:hover[b-5q2e0h5rxs] {
    border-color: var(--qualis-accent, #0d6efd);
}

.category-dropdown[b-5q2e0h5rxs] {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: var(--qualis-z-dropdown, 1000);
    max-height: 280px;
    overflow-y: auto;
    border: 1px solid var(--qualis-border-color, #dee2e6);
    border-radius: var(--qualis-radius-md, 0.5rem);
    background-color: var(--qualis-bg-card, #ffffff);
    margin-top: 2px;
}

.category-dropdown .list-group-item[b-5q2e0h5rxs] {
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    border-left: none;
    border-right: none;
    cursor: pointer;
}

.category-dropdown .list-group-item:first-child[b-5q2e0h5rxs] {
    border-top: none;
}

.category-dropdown .list-group-item:last-child[b-5q2e0h5rxs] {
    border-bottom: none;
}

.category-dropdown .list-group-item.active[b-5q2e0h5rxs] {
    background-color: var(--qualis-bg-tertiary, #f0f0f0);
    color: var(--qualis-text-primary, #212529);
    border-color: var(--qualis-border-color, #dee2e6);
}

@media (max-width: 576px) {
    .category-dropdown[b-5q2e0h5rxs] {
        max-height: 200px;
    }
}
/* /Components/Shared/MonthYearPicker.razor.rz.scp.css */
.month-year-picker .month-select[b-egin6pbo9u] {
    width: auto;
    min-width: 120px;
}

.month-year-picker .year-select[b-egin6pbo9u] {
    width: auto;
    min-width: 80px;
}

.month-year-picker .btn[b-egin6pbo9u] {
    border-color: var(--bs-border-color);
}

.month-year-picker .btn:hover[b-egin6pbo9u] {
    background-color: var(--bs-tertiary-bg);
}
/* /Components/Shared/SessionTimeout.razor.rz.scp.css */
.session-timeout-overlay[b-sq6pkc33b3] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    backdrop-filter: blur(4px);
    animation: fadeIn-b-sq6pkc33b3 0.3s ease;
}

.session-timeout-modal[b-sq6pkc33b3] {
    background: linear-gradient(135deg, #1a365d 0%, #0d2847 100%);
    border-radius: 20px;
    padding: 2rem;
    max-width: 400px;
    width: 90%;
    text-align: center;
    color: white;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: slideUp-b-sq6pkc33b3 0.3s ease;
}

.session-timeout-icon[b-sq6pkc33b3] {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #00b1ba 0%, #d1d947 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse-b-sq6pkc33b3 2s infinite;
}

.session-timeout-icon svg[b-sq6pkc33b3] {
    width: 40px;
    height: 40px;
    stroke: white;
}

.session-timeout-modal h4[b-sq6pkc33b3] {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.session-timeout-modal p[b-sq6pkc33b3] {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.session-timeout-progress[b-sq6pkc33b3] {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    height: 8px;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.session-timeout-progress-bar[b-sq6pkc33b3] {
    background: linear-gradient(90deg, #00b1ba, #d1d947);
    height: 100%;
    border-radius: 10px;
    transition: width 1s linear;
}

.session-timeout-actions[b-sq6pkc33b3] {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.session-timeout-actions .btn[b-sq6pkc33b3] {
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 500;
}

.session-timeout-actions .btn-primary[b-sq6pkc33b3] {
    background: linear-gradient(135deg, #00b1ba 0%, #d1d947 100%);
    border: none;
}

.session-timeout-actions .btn-primary:hover[b-sq6pkc33b3] {
    transform: scale(1.05);
}

.session-timeout-actions .btn-outline-secondary[b-sq6pkc33b3] {
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.session-timeout-actions .btn-outline-secondary:hover[b-sq6pkc33b3] {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

@keyframes fadeIn-b-sq6pkc33b3 {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp-b-sq6pkc33b3 {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse-b-sq6pkc33b3 {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .session-timeout-modal[b-sq6pkc33b3] {
        background: linear-gradient(135deg, #1e1e1e 0%, #2d2d2d 100%);
    }
}

@media (max-width: 480px) {
    .session-timeout-modal[b-sq6pkc33b3] {
        padding: 1.5rem;
    }

    .session-timeout-actions[b-sq6pkc33b3] {
        flex-direction: column;
    }

    .session-timeout-actions .btn[b-sq6pkc33b3] {
        width: 100%;
    }
}
