/* _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 - Updated for Bootstrap Icons */
.bi[b-17cfmv0dad] {
    display: inline-block;
    margin-right: 0.75rem;
    font-size: 1.1rem;
    vertical-align: middle;
    color: #fbbf24;
}

/* Keep golden color for icons in active/hover states */
.nav-item[b-17cfmv0dad]  a.active .bi,
.nav-item[b-17cfmv0dad]  a:hover .bi {
    color: #fbbf24;
}

/* 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;
    }
}
