/* _content/AITalker/Components/Layout/CookieConsent.razor.rz.scp.css */
.cookie-consent-banner[b-b8j135yt76] {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(33, 37, 41, 0.95);
    color: white;
    padding: 1rem;
    z-index: 9999;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

.cookie-consent-content[b-b8j135yt76] {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.cookie-consent-text[b-b8j135yt76] {
    flex: 1;
    min-width: 280px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-policy-link[b-b8j135yt76] {
    color: #8bb9fe;
    text-decoration: underline;
    margin-left: 0.25rem;
}

.cookie-policy-link:hover[b-b8j135yt76] {
    color: #aed1ff;
}

.cookie-consent-buttons[b-b8j135yt76] {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.cookie-consent-buttons .btn[b-b8j135yt76] {
    white-space: nowrap;
    font-weight: 500;
}

@media (max-width: 576px) {
    .cookie-consent-content[b-b8j135yt76] {
        flex-direction: column;
        text-align: center;
    }

    .cookie-consent-buttons[b-b8j135yt76] {
        width: 100%;
        justify-content: center;
    }
}
/* _content/AITalker/Components/Layout/MainLayout.razor.rz.scp.css */
/* ============================================
   MAIN LAYOUT - MODERN DESIGN
   ============================================ */

.page[b-38qy3h462e] {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main[b-38qy3h462e] {
    flex: 1;
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
}

/* Sidebar with Warm Golden Gradient */
.sidebar[b-38qy3h462e] {
    background: linear-gradient(180deg, #1f2937 0%, #111827 100%);
    box-shadow: 4px 0 16px rgba(0, 0, 0, 0.15);
    position: relative;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.sidebar[b-38qy3h462e]::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.sidebar[b-38qy3h462e]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.08) 0%, rgba(251, 146, 60, 0.05) 100%);
    pointer-events: none;
}

.sidebar[b-38qy3h462e]::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23f59e0b' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
    pointer-events: none;
}

/* Top Bar */
.top-row[b-38qy3h462e] {
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    border-bottom: 1px solid #e5e7eb;
    justify-content: flex-end;
    height: 4rem;
    display: flex;
    align-items: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(8px);
    background-color: rgba(255, 255, 255, 0.95);
}

.top-row[b-38qy3h462e]  a, 
.top-row[b-38qy3h462e]  .btn-link {
    white-space: nowrap;
    margin-left: 1.5rem;
    text-decoration: none;
    color: #4b5563;
    font-weight: 500;
    transition: color 200ms ease;
}

.top-row[b-38qy3h462e]  a:hover, 
.top-row[b-38qy3h462e]  .btn-link:hover {
    color: #f59e0b;
}

.top-row[b-38qy3h462e]  a:first-child {
    overflow: hidden;
    text-overflow: ellipsis;
}

.top-row img[b-38qy3h462e] {
    border-radius: 0.75rem;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.2);
    transition: transform 200ms ease;
}

.top-row img:hover[b-38qy3h462e] {
    transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 640.98px) {
    .top-row[b-38qy3h462e] {
        justify-content: space-between;
        height: 3.5rem;
    }

    .top-row[b-38qy3h462e]  a, 
    .top-row[b-38qy3h462e]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-38qy3h462e] {
        flex-direction: row;
    }

    .sidebar[b-38qy3h462e] {
        width: 260px;
        height: 100vh;
        position: sticky;
        top: 0;
        overflow-y: auto;
    }

    .top-row[b-38qy3h462e] {
        position: sticky;
        top: 0;
        z-index: 10;
    }

    .top-row.auth[b-38qy3h462e]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-38qy3h462e], article[b-38qy3h462e] {
        padding-left: 2.5rem !important;
        padding-right: 2.5rem !important;
    }
}

/* Content Area */
article[b-38qy3h462e] {
    animation: fadeIn-b-38qy3h462e 400ms ease;
}

@keyframes fadeIn-b-38qy3h462e {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Error UI */
#blazor-error-ui[b-38qy3h462e] {
    color-scheme: light only;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    bottom: 0;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 1rem 1.5rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
    border-top: 3px solid #f59e0b;
    border-radius: 0.75rem 0.75rem 0 0;
}

#blazor-error-ui .dismiss[b-38qy3h462e] {
    cursor: pointer;
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 1.5rem;
    color: #92400e;
    opacity: 0.7;
    transition: opacity 200ms ease;
}

#blazor-error-ui .dismiss:hover[b-38qy3h462e] {
    opacity: 1;
}

#blazor-error-ui .reload[b-38qy3h462e] {
    color: #92400e;
    font-weight: 600;
    text-decoration: underline;
    margin-left: 0.5rem;
}

/* Footer */
.site-footer[b-38qy3h462e] {
    margin-top: auto;
    border-top: 1px solid #e5e7eb;
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
    text-align: center;
    font-size: 0.875rem;
    color: #6b7280;
    padding: 1.5rem 1rem;
}

.footer-links[b-38qy3h462e] {
    margin-bottom: 0.75rem;
}

.footer-links a[b-38qy3h462e] {
    color: #6b7280;
    text-decoration: none;
    font-weight: 500;
    transition: color 200ms ease;
}

.footer-links a:hover[b-38qy3h462e] {
    color: #f59e0b;
}

.footer-links .separator[b-38qy3h462e] {
    margin: 0 0.75rem;
    color: #d1d5db;
}

.footer-copyright[b-38qy3h462e] {
    font-size: 0.8125rem;
    color: #9ca3af;
}
/* _content/AITalker/Components/Layout/NavMenu.razor.rz.scp.css */
/* ============================================
   NAVIGATION SIDEBAR - MODERN DESIGN
   ============================================ */

.navbar-toggler[b-17cfmv0dad] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 0.5rem;
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28245, 158, 11, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(245, 158, 11, 0.1);
    transition: all 200ms ease;
}

.navbar-toggler:hover[b-17cfmv0dad] {
    background-color: rgba(245, 158, 11, 0.15);
    border-color: rgba(245, 158, 11, 0.4);
}

.navbar-toggler:checked[b-17cfmv0dad] {
    background-color: rgba(245, 158, 11, 0.25);
    border-color: rgba(245, 158, 11, 0.5);
}

.top-row[b-17cfmv0dad] {
    min-height: 3.5rem;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.12), rgba(251, 146, 60, 0.08));
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(245, 158, 11, 0.2);
}

.navbar-brand[b-17cfmv0dad] {
    font-size: 1.35rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

/* Icon Styles */
.bi[b-17cfmv0dad] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
    filter: drop-shadow(0 1px 2px rgba(245, 158, 11, 0.3));
}

/* Updated icon SVGs with golden color */
.bi-house-door-fill-nav-menu[b-17cfmv0dad] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23fbbf24' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-17cfmv0dad] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23fbbf24' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-17cfmv0dad] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23fbbf24' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.bi-lock-nav-menu[b-17cfmv0dad] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23fbbf24' class='bi bi-lock' viewBox='0 0 16 16'%3E%3Cpath d='M8 1a2 2 0 0 1 2 2v4H6V3a2 2 0 0 1 2-2zm3 6V3a3 3 0 0 0-6 0v4a2 2 0 0 0-2 2v5a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2zM5 8h6a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1V9a1 1 0 0 1 1-1z'/%3E%3C/svg%3E");
}

.bi-person-nav-menu[b-17cfmv0dad] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23fbbf24' class='bi bi-person' viewBox='0 0 16 16'%3E%3Cpath d='M8 8a3 3 0 1 0 0-6 3 3 0 0 0 0 6Zm2-3a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm4 8c0 1-1 1-1 1H3s-1 0-1-1 1-4 6-4 6 3 6 4Zm-1-.004c-.001-.246-.154-.986-.832-1.664C11.516 10.68 10.289 10 8 10c-2.29 0-3.516.68-4.168 1.332-.678.678-.83 1.418-.832 1.664h10Z'/%3E%3C/svg%3E");
}

.bi-person-badge-nav-menu[b-17cfmv0dad] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23fbbf24' class='bi bi-person-badge' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 2a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1h-3zM11 8a3 3 0 1 1-6 0 3 3 0 0 1 6 0z'/%3E%3Cpath d='M4.5 0A2.5 2.5 0 0 0 2 2.5V14a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V2.5A2.5 2.5 0 0 0 11.5 0h-7zM3 2.5A1.5 1.5 0 0 1 4.5 1h7A1.5 1.5 0 0 1 13 2.5v10.795a4.2 4.2 0 0 0-.776-.492C11.392 12.387 10.063 12 8 12s-3.392.387-4.224.803a4.2 4.2 0 0 0-.776.492V2.5z'/%3E%3C/svg%3E");
}

.bi-person-fill-nav-menu[b-17cfmv0dad] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23fbbf24' class='bi bi-person-fill' viewBox='0 0 16 16'%3E%3Cpath d='M3 14s-1 0-1-1 1-4 6-4 6 3 6 4-1 1-1 1H3Zm5-6a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z'/%3E%3C/svg%3E");
}

.bi-arrow-bar-left-nav-menu[b-17cfmv0dad] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23fbbf24' class='bi bi-arrow-bar-left' viewBox='0 0 16 16'%3E%3Cpath d='M12.5 15a.5.5 0 0 1-.5-.5v-13a.5.5 0 0 1 1 0v13a.5.5 0 0 1-.5.5ZM10 8a.5.5 0 0 1-.5.5H3.707l2.147 2.146a.5.5 0 0 1-.708.708l-3-3a.5.5 0 0 1 0-.708l3-3a.5.5 0 1 1 .708.708L3.707 7.5H9.5a.5.5 0 0 1 .5.5Z'/%3E%3C/svg%3E");
}

.bi-camera-video-nav-menu[b-17cfmv0dad] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23fbbf24' class='bi bi-camera-video' viewBox='0 0 16 16'%3E%3Cpath d='M0 5a2 2 0 0 1 2-2h7.5a2 2 0 0 1 1.983 1.738l3.11-1.382A1 1 0 0 1 16 4.269v7.462a1 1 0 0 1-1.406.913l-3.111-1.382A2 2 0 0 1 9.5 13H2a2 2 0 0 1-2-2V5z'/%3E%3C/svg%3E");
}

.bi-mic-fill[b-17cfmv0dad] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23fbbf24' class='bi bi-mic-fill' viewBox='0 0 16 16'%3E%3Cpath d='M5 3a3 3 0 0 1 6 0v5a3 3 0 0 1-6 0V3z'/%3E%3Cpath d='M3.5 6.5A.5.5 0 0 1 4 7v1a4 4 0 0 0 8 0V7a.5.5 0 0 1 1 0v1a5 5 0 0 1-4.5 4.975V15h3a.5.5 0 0 1 0 1h-7a.5.5 0 0 1 0-1h3v-2.025A5 5 0 0 1 3 8V7a.5.5 0 0 1 .5-.5z'/%3E%3C/svg%3E");
}

.bi-credit-card[b-17cfmv0dad] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23fbbf24' class='bi bi-credit-card' viewBox='0 0 16 16'%3E%3Cpath d='M0 4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V4zm2-1a1 1 0 0 0-1 1v1h14V4a1 1 0 0 0-1-1H2zm13 4H1v5a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V7z'/%3E%3Cpath d='M2 10a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1v-1z'/%3E%3C/svg%3E");
}

.bi-gear-fill[b-17cfmv0dad] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23fbbf24' class='bi bi-gear-fill' viewBox='0 0 16 16'%3E%3Cpath d='M9.405 1.05c-.413-1.4-2.397-1.4-2.81 0l-.1.34a1.464 1.464 0 0 1-2.105.872l-.31-.17c-1.283-.698-2.686.705-1.987 1.987l.169.311c.446.82.023 1.841-.872 2.105l-.34.1c-1.4.413-1.4 2.397 0 2.81l.34.1a1.464 1.464 0 0 1 .872 2.105l-.17.31c-.698 1.283.705 2.686 1.987 1.987l.311-.169a1.464 1.464 0 0 1 2.105.872l.1.34c.413 1.4 2.397 1.4 2.81 0l.1-.34a1.464 1.464 0 0 1 2.105-.872l.31.17c1.283.698 2.686-.705 1.987-1.987l-.169-.311a1.464 1.464 0 0 1 .872-2.105l.34-.1c1.4-.413 1.4-2.397 0-2.81l-.34-.1a1.464 1.464 0 0 1-.872-2.105l.17-.31c.698-1.283-.705-2.686-1.987-1.987l-.311.169a1.464 1.464 0 0 1-2.105-.872l-.1-.34zM8 10.93a2.929 2.929 0 1 1 0-5.86 2.929 2.929 0 0 1 0 5.858z'/%3E%3C/svg%3E");
}

.bi-info-circle[b-17cfmv0dad] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23fbbf24' class='bi bi-info-circle' viewBox='0 0 16 16'%3E%3Cpath d='M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14zm0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16z'/%3E%3Cpath d='m8.93 6.588-2.29.287-.082.38.45.083c.294.07.352.176.288.469l-.738 3.468c-.194.897.105 1.319.808 1.319.545 0 1.178-.252 1.465-.598l.088-.416c-.2.176-.492.246-.686.246-.275 0-.375-.193-.304-.533L8.93 6.588zM9 4.5a1 1 0 1 1-2 0 1 1 0 0 1 2 0z'/%3E%3C/svg%3E");
}

.bi-envelope[b-17cfmv0dad] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23fbbf24' class='bi bi-envelope' viewBox='0 0 16 16'%3E%3Cpath d='M0 4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V4Zm2-1a1 1 0 0 0-1 1v.217l7 4.2 7-4.2V4a1 1 0 0 0-1-1H2Zm13 2.383-4.708 2.825L15 11.105V5.383Zm-.034 6.876-5.64-3.471L8 9.583l-1.326-.795-5.64 3.47A1 1 0 0 0 2 13h12a1 1 0 0 0 .966-.741ZM1 11.105l4.708-2.897L1 5.383v5.722Z'/%3E%3C/svg%3E");
}

/* Navigation Items */
.nav-item[b-17cfmv0dad] {
    font-size: 0.9375rem;
    padding-bottom: 0.375rem;
    padding-top: 0.375rem;
}

.nav-item:first-of-type[b-17cfmv0dad] {
    padding-top: 1rem;
}

.nav-item:last-of-type[b-17cfmv0dad] {
    padding-bottom: 1rem;
}

.nav-item[b-17cfmv0dad]  .nav-link {
    color: rgba(229, 231, 235, 0.85);
    background: none;
    border: none;
    border-radius: 0.625rem;
    height: 2.75rem;
    display: flex;
    align-items: center;
    line-height: 2.75rem;
    width: 100%;
    padding: 0 0.875rem;
    font-weight: 500;
    transition: all 200ms ease;
    position: relative;
    overflow: hidden;
}

.nav-item[b-17cfmv0dad]  .nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #fbbf24, #f59e0b);
    transform: translateX(-3px);
    opacity: 0;
    transition: all 200ms ease;
    box-shadow: 0 0 12px rgba(245, 158, 11, 0.6);
}

.nav-item[b-17cfmv0dad]  a.active {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.25), rgba(251, 146, 60, 0.15));
    color: #fbbf24;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.2);
}

.nav-item[b-17cfmv0dad]  a.active::before {
    transform: translateX(0);
    opacity: 1;
}

.nav-item[b-17cfmv0dad]  .nav-link:hover {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.18), rgba(251, 146, 60, 0.1));
    color: #fbbf24;
    transform: translateX(2px);
}

/* Badge in Navigation */
.nav-item .badge[b-17cfmv0dad] {
    font-size: 0.6875rem;
    padding: 0.2rem 0.5rem;
    font-weight: 700;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Scrollable Area */
.nav-scrollable[b-17cfmv0dad] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-17cfmv0dad] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-17cfmv0dad] {
        display: none;
    }

    .nav-scrollable[b-17cfmv0dad] {
        display: block;
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
        padding-bottom: 1rem;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE and Edge */
    }
    
    /* Hide scrollbar for Chrome, Safari and Opera */
    .nav-scrollable[b-17cfmv0dad]::-webkit-scrollbar {
        display: none;
    }
}
