/* _content/MusicTheoryMastery.Web/Components/Areas/Admin/Layout/AdminLayout.razor.rz.scp.css */
.admin-layout[b-4rtoz4md2x] {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--bg);
    color: var(--text);
}

.admin-header[b-4rtoz4md2x] {
    flex-shrink: 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
    background: #212529;
}

.admin-main[b-4rtoz4md2x] {
    flex-grow: 1;
    background-color: var(--bg);
    padding: 2rem;
    color: var(--text);
}

.admin-footer[b-4rtoz4md2x] {
    flex-shrink: 0;
    background-color: #212529;
    color: white;
    padding: 1rem 0;
}

/* Dark theme for all admin content */
.admin-main[b-4rtoz4md2x],
.admin-main h1[b-4rtoz4md2x],
.admin-main h2[b-4rtoz4md2x],
.admin-main h3[b-4rtoz4md2x],
.admin-main h4[b-4rtoz4md2x],
.admin-main h5[b-4rtoz4md2x],
.admin-main h6[b-4rtoz4md2x],
.admin-main p[b-4rtoz4md2x],
.admin-main div[b-4rtoz4md2x],
.admin-main span[b-4rtoz4md2x],
.admin-main li[b-4rtoz4md2x] {
    color: var(--text);
}

/* Admin card styling - Dark theme */
.admin-main .card[b-4rtoz4md2x] {
    background: var(--card);
    color: var(--text);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow-sm);
    border-radius: var(--border-radius-lg);
}

.admin-main .card-header[b-4rtoz4md2x] {
    background: rgba(255,255,255,0.02);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    color: var(--text);
}

.admin-main .card-body[b-4rtoz4md2x] {
    color: var(--text);
    background: var(--card);
}

.admin-main .card-title[b-4rtoz4md2x] {
    color: var(--text);
    margin-bottom: 0;
}

/* Special handling for colored cards in admin dashboard - keep these bright */
.admin-main .card.bg-primary[b-4rtoz4md2x] {
    background: linear-gradient(135deg, var(--brand1), var(--brand2)) !important;
    color: white !important;
}

.admin-main .card.bg-primary .card-body[b-4rtoz4md2x],
.admin-main .card.bg-primary .card-title[b-4rtoz4md2x],
.admin-main .card.bg-primary h5[b-4rtoz4md2x],
.admin-main .card.bg-primary .card-footer[b-4rtoz4md2x] {
    color: white !important;
}

.admin-main .card.bg-success[b-4rtoz4md2x] {
    background: #28a745 !important;
    color: white !important;
}

.admin-main .card.bg-success .card-body[b-4rtoz4md2x],
.admin-main .card.bg-success .card-title[b-4rtoz4md2x],
.admin-main .card.bg-success h5[b-4rtoz4md2x],
.admin-main .card.bg-success .card-footer[b-4rtoz4md2x] {
    color: white !important;
}

.admin-main .card.bg-info[b-4rtoz4md2x] {
    background: #17a2b8 !important;
    color: white !important;
}

.admin-main .card.bg-info .card-body[b-4rtoz4md2x],
.admin-main .card.bg-info .card-title[b-4rtoz4md2x],
.admin-main .card.bg-info h5[b-4rtoz4md2x],
.admin-main .card.bg-info .card-footer[b-4rtoz4md2x] {
    color: white !important;
}

.admin-main .card.bg-warning[b-4rtoz4md2x] {
    background: #ffc107 !important;
    color: #212529 !important;
}

.admin-main .card.bg-warning .card-body[b-4rtoz4md2x],
.admin-main .card.bg-warning .card-title[b-4rtoz4md2x],
.admin-main .card.bg-warning h5[b-4rtoz4md2x],
.admin-main .card.bg-warning .card-footer[b-4rtoz4md2x] {
    color: #212529 !important;
}

/* Table styling for admin pages */
.admin-main .table[b-4rtoz4md2x] {
    color: var(--text);
    background: var(--card);
}

.admin-main .table th[b-4rtoz4md2x] {
    background-color: rgba(255,255,255,0.02);
    border-color: rgba(255,255,255,0.08);
    font-weight: 600;
    color: var(--text);
}

.admin-main .table td[b-4rtoz4md2x] {
    color: var(--text);
    border-color: rgba(255,255,255,0.08);
}

.admin-main .table-light[b-4rtoz4md2x] {
    background-color: rgba(255,255,255,0.02);
    color: var(--text);
}

.admin-main .table-striped > tbody > tr:nth-of-type(odd) > td[b-4rtoz4md2x] {
    background-color: rgba(255,255,255,0.02);
}

/* Alert styling for admin pages - Dark theme */
.admin-main .alert[b-4rtoz4md2x] {
    color: inherit;
}

.admin-main .alert-warning[b-4rtoz4md2x] {
    background: rgba(250, 204, 21, 0.1);
    border-color: rgba(250, 204, 21, 0.3);
    color: #fde047;
}

.admin-main .alert-success[b-4rtoz4md2x] {
    background: rgba(74, 222, 128, 0.1);
    border-color: rgba(74, 222, 128, 0.3);
    color: #86efac;
}

.admin-main .alert-danger[b-4rtoz4md2x] {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
    color: #fca5a5;
}

.admin-main .alert-info[b-4rtoz4md2x] {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
    color: #93c5fd;
}

/* Form styling for admin pages - Dark theme */
.admin-main .form-control[b-4rtoz4md2x],
.admin-main .form-select[b-4rtoz4md2x] {
    color: var(--text);
    background-color: #0c1326;
    border: 1px solid rgba(255,255,255,0.16);
}

.admin-main .form-control:focus[b-4rtoz4md2x],
.admin-main .form-select:focus[b-4rtoz4md2x] {
    color: var(--text);
    background-color: #0c1326;
    border-color: var(--brand1);
    box-shadow: 0 0 0 3px rgba(255, 127, 80, 0.2);
}

.admin-main .form-control[b-4rtoz4md2x]::placeholder {
    color: var(--muted);
}

.admin-main .form-label[b-4rtoz4md2x] {
    color: var(--text);
    font-weight: 500;
}

/* Badge styling for admin pages */
.admin-main .badge[b-4rtoz4md2x] {
    color: white;
}

.admin-main .badge.bg-success[b-4rtoz4md2x] {
    background-color: #28a745 !important;
}

.admin-main .badge.bg-danger[b-4rtoz4md2x] {
    background-color: #dc3545 !important;
}

.admin-main .badge.bg-warning[b-4rtoz4md2x] {
    background-color: #ffc107 !important;
    color: #212529 !important;
}

.admin-main .badge.bg-secondary[b-4rtoz4md2x] {
    background-color: #6c757d !important;
}

/* List group styling - Dark theme */
.admin-main .list-group-item[b-4rtoz4md2x] {
    color: var(--text);
    background-color: var(--card);
    border: 1px solid rgba(255,255,255,0.08);
}

.admin-main .list-group-item.active[b-4rtoz4md2x] {
    background-color: var(--brand1);
    border-color: var(--brand1);
    color: white;
}

.admin-main .list-group-item:hover[b-4rtoz4md2x] {
    background-color: rgba(255,255,255,0.1);
    color: var(--text);
}

/* Button styling */
.admin-main .btn-primary[b-4rtoz4md2x] {
    background: linear-gradient(135deg, var(--brand1), var(--brand2));
    border-color: var(--brand1);
    color: white;
}

.admin-main .btn-primary:hover[b-4rtoz4md2x] {
    background: linear-gradient(135deg, #ff6a35, #ff3333);
    border-color: #ff6a35;
    color: white;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.navbar-brand[b-4rtoz4md2x] {
    font-weight: 600;
    color: white;
}

.dropdown-item[b-4rtoz4md2x] {
    font-size: 0.9rem;
}

/* Code styling for configuration page */
code[b-4rtoz4md2x] {
    background-color: rgba(255,255,255,0.1);
    padding: 0.2rem 0.4rem;
    border-radius: 0.25rem;
    font-size: 0.875em;
    color: var(--brand1);
    border: 1px solid rgba(255,255,255,0.08);
}

/* Modal styling for dark theme */
.admin-main .modal-content[b-4rtoz4md2x] {
    background-color: var(--card);
    color: var(--text);
    border: 1px solid rgba(255,255,255,0.08);
}

.admin-main .modal-header[b-4rtoz4md2x] {
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.admin-main .modal-footer[b-4rtoz4md2x] {
    border-top: 1px solid rgba(255,255,255,0.08);
}

.admin-main .btn-close[b-4rtoz4md2x] {
    filter: invert(1) grayscale(100%) brightness(200%);
}

#blazor-error-ui[b-4rtoz4md2x] {
    background: linear-gradient(135deg, var(--danger-color), #dc2626);
    bottom: 0;
    box-shadow: var(--shadow-lg);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
    color: white;
    font-weight: 500;
}

#blazor-error-ui .dismiss[b-4rtoz4md2x] {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
    color: white;
    opacity: 0.8;
}

#blazor-error-ui .dismiss:hover[b-4rtoz4md2x] {
    opacity: 1;
}
/* _content/MusicTheoryMastery.Web/Components/Areas/Admin/Pages/Configuration.razor.rz.scp.css */
.status-item[b-bxdtzzpzy6] {
    margin-bottom: 0.5rem;
}

.text-truncate[b-bxdtzzpzy6] {
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

code[b-bxdtzzpzy6] {
    background-color: rgba(255,255,255,0.1);
    padding: 0.2rem 0.4rem;
    border-radius: 0.25rem;
    font-size: 0.875em;
    color: var(--brand1);
    border: 1px solid rgba(255,255,255,0.08);
}

.form-check-input:checked[b-bxdtzzpzy6] {
    background-color: var(--brand1);
    border-color: var(--brand1);
}

.form-check-input:focus[b-bxdtzzpzy6] {
    border-color: var(--brand1);
    box-shadow: 0 0 0 0.25rem rgba(255, 127, 80, 0.25);
}

.form-switch .form-check-input[b-bxdtzzpzy6] {
    width: 3rem;
    height: 1.5rem;
    margin-left: 0;
}

.form-switch .form-check-label[b-bxdtzzpzy6] {
    margin-left: 0.5rem;
    font-weight: 500;
}
/* _content/MusicTheoryMastery.Web/Components/Areas/Admin/Pages/ContactSubmissions.razor.rz.scp.css */
.sortable-header[b-gda2v7gcno] {
    cursor: pointer;
    user-select: none;
    transition: background-color 0.15s ease;
}

.sortable-header:hover[b-gda2v7gcno] {
    background-color: rgba(var(--bs-primary-rgb), 0.1);
}
/* _content/MusicTheoryMastery.Web/Components/Areas/Admin/Pages/Documentation.razor.rz.scp.css */
.docs-sidebar[b-cndxqvsu2e] {
    overflow-y: auto;
    border-right: 1px solid #dee2e6;
    min-height: calc(100vh - 200px);
}

/* Mobile sidebar styles */
@media (max-width: 767.98px) {
    .docs-sidebar[b-cndxqvsu2e] {
        position: fixed;
        top: 0;
        left: 0;
        width: 280px;
        height: 100vh;
        z-index: 1050;
        background-color: #f8f9fa;
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
    }

        .docs-sidebar.show-mobile[b-cndxqvsu2e] {
            transform: translateX(0);
        }
            /* Overlay for mobile */
            .docs-sidebar.show-mobile[b-cndxqvsu2e]::before {
                content: '';
                position: fixed;
                top: 0;
                left: 280px;
                width: calc(100vw - 280px);
                height: 100vh;
                background-color: rgba(0, 0, 0, 0.5);
                z-index: -1;
            }
}

.docs-content[b-cndxqvsu2e] {
    min-height: calc(100vh - 200px);
    scroll-margin-top: 2rem;
}

.nav-link.active[b-cndxqvsu2e] {
    background-color: #e7f3ff;
    color: #0d6efd !important;
    border-radius: 0.25rem;
}

.documentation-content[b-cndxqvsu2e] {
    max-width: none;
    scroll-behavior: smooth;
}

    .documentation-content h1[b-cndxqvsu2e], .documentation-content h2[b-cndxqvsu2e] {
        border-bottom: 1px solid #dee2e6;
        padding-bottom: 0.5rem;
        margin-bottom: 1rem;
        scroll-margin-top: 2rem;
    }

    .documentation-content pre[b-cndxqvsu2e] {
        border: 1px solid #e9ecef;
        border-radius: 0.375rem;
        padding: 1rem;
        overflow-x: auto;
    }

    .documentation-content code[b-cndxqvsu2e] {
        padding: 0.125rem 0.25rem;
        border-radius: 0.25rem;
        font-size: 0.875em;
    }

    .documentation-content blockquote[b-cndxqvsu2e] {
        border-left: 4px solid #dee2e6;
        padding-left: 1rem;
        margin: 1rem 0;
        color: #6c757d;
    }

/* Collapsible navigation styles */
.nav-section-header[b-cndxqvsu2e] {
    transition: color 0.15s ease-in-out;
    user-select: none;
}

    .nav-section-header:hover[b-cndxqvsu2e] {
        color: #495057 !important;
    }

.nav-chevron[b-cndxqvsu2e] {
    transition: transform 0.2s ease-in-out;
    font-size: 0.8em;
}

.nav-section .collapse.show ~ .nav-section-header .nav-chevron[b-cndxqvsu2e] {
    transform: rotate(0deg);
}

.nav-section .collapse:not(.show) ~ .nav-section-header .nav-chevron[b-cndxqvsu2e] {
    transform: rotate(-90deg);
}

/* Smooth scrolling for navigation links */
html[b-cndxqvsu2e] {
    scroll-behavior: smooth;
}

/* Mobile toggle button styles */
.mobile-sidebar-toggle[b-cndxqvsu2e] {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1030;
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
    .mobile-sidebar-toggle[b-cndxqvsu2e] {
        display: none;
    }
}
/* _content/MusicTheoryMastery.Web/Components/Areas/Admin/Pages/SentEmails.razor.rz.scp.css */
.sortable-header[b-czvobk1dtt] {
    cursor: pointer;
    user-select: none;
    transition: background-color 0.15s ease;
}

.sortable-header:hover[b-czvobk1dtt] {
    background-color: rgba(var(--bs-primary-rgb), 0.1);
}
/* _content/MusicTheoryMastery.Web/Components/Areas/Admin/Pages/Waitlist.razor.rz.scp.css */
.sortable-header[b-j7x4b3rcle] {
    cursor: pointer;
    user-select: none;
    transition: background-color 0.15s ease;
}

.sortable-header:hover[b-j7x4b3rcle] {
    background-color: rgba(var(--bs-primary-rgb), 0.1);
}

.table-active[b-j7x4b3rcle] {
    background-color: rgba(var(--bs-primary-rgb), 0.1) !important;
}
/* _content/MusicTheoryMastery.Web/Components/Areas/Members/Layout/MembersLayout.razor.rz.scp.css */
.page-container[b-ydbi5e6uh8] {
    display: flex;
    min-height: 100vh;
    background: var(--bg);
    color: var(--text);
}

.sidebar[b-ydbi5e6uh8] {
    width: 200px;
    background: #212529;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    overflow-y: auto;
    z-index: 1000;
}

.main-content[b-ydbi5e6uh8] {
    flex: 1;
    margin-left: 200px;
    min-height: 100vh;
    background: var(--bg);
    color: var(--text);
}

.content-wrapper[b-ydbi5e6uh8] {
    padding: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Dark theme for all member pages */
.main-content[b-ydbi5e6uh8],
.main-content h1[b-ydbi5e6uh8], 
.main-content h2[b-ydbi5e6uh8], 
.main-content h3[b-ydbi5e6uh8], 
.main-content h4[b-ydbi5e6uh8], 
.main-content h5[b-ydbi5e6uh8], 
.main-content h6[b-ydbi5e6uh8],
.main-content p[b-ydbi5e6uh8],
.main-content div[b-ydbi5e6uh8],
.main-content span[b-ydbi5e6uh8],
.main-content li[b-ydbi5e6uh8] {
    color: var(--text);
}

/* Card styling for member pages - Dark theme */
.main-content .card[b-ydbi5e6uh8] {
    background: var(--card);
    color: var(--text);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow-sm);
    border-radius: var(--border-radius-lg);
}

.main-content .card-header[b-ydbi5e6uh8] {
    background: rgba(255,255,255,0.02);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    color: var(--text);
}

.main-content .card-body[b-ydbi5e6uh8] {
    color: var(--text);
    background: var(--card);
}

.main-content .card-footer[b-ydbi5e6uh8] {
    background: rgba(255,255,255,0.02);
    border-top: 1px solid rgba(255,255,255,0.08);
    color: var(--text);
}

/* Text utilities for member pages */
.main-content .text-muted[b-ydbi5e6uh8] {
    color: var(--muted) !important;
}

.main-content .text-primary[b-ydbi5e6uh8] {
    color: var(--brand1) !important;
}

/* Alert styling for member pages - Dark theme */
.main-content .alert[b-ydbi5e6uh8] {
    color: inherit;
}

.main-content .alert-success[b-ydbi5e6uh8] {
    background: rgba(74, 222, 128, 0.1);
    border-color: rgba(74, 222, 128, 0.3);
    color: #86efac;
}

.main-content .alert-danger[b-ydbi5e6uh8] {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
    color: #fca5a5;
}

.main-content .alert-warning[b-ydbi5e6uh8] {
    background: rgba(250, 204, 21, 0.1);
    border-color: rgba(250, 204, 21, 0.3);
    color: #fde047;
}

.main-content .alert-info[b-ydbi5e6uh8] {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
    color: #93c5fd;
}

/* Form styling for member pages - Dark theme */
.main-content .form-control[b-ydbi5e6uh8],
.main-content .form-select[b-ydbi5e6uh8] {
    color: var(--text);
    background-color: #0c1326;
    border: 1px solid rgba(255,255,255,0.16);
}

.main-content .form-control:focus[b-ydbi5e6uh8],
.main-content .form-select:focus[b-ydbi5e6uh8] {
    color: var(--text);
    background-color: #0c1326;
    border-color: var(--brand1);
    box-shadow: 0 0 0 3px rgba(255, 127, 80, 0.2);
}

.main-content .form-control[b-ydbi5e6uh8]::placeholder {
    color: var(--muted);
}

.main-content .form-label[b-ydbi5e6uh8] {
    color: var(--text);
}

/* Button styling for member pages */
.main-content .btn-primary[b-ydbi5e6uh8] {
    background: linear-gradient(135deg, var(--brand1), var(--brand2));
    border-color: var(--brand1);
    color: white;
}

.main-content .btn-primary:hover[b-ydbi5e6uh8] {
    background: linear-gradient(135deg, #ff6a35, #ff3333);
    border-color: #ff6a35;
    color: white;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.main-content .btn-outline-secondary[b-ydbi5e6uh8] {
    color: var(--muted);
    border-color: rgba(255,255,255,0.16);
    background: transparent;
}

.main-content .btn-outline-secondary:hover[b-ydbi5e6uh8] {
    color: var(--text);
    background-color: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.3);
}

.main-content .btn-secondary[b-ydbi5e6uh8] {
    background-color: var(--card);
    color: var(--text);
    border: 1px solid rgba(255,255,255,0.16);
}

.main-content .btn-secondary:hover[b-ydbi5e6uh8] {
    background-color: rgba(255,255,255,0.1);
    color: var(--text);
}

/* Badge styling for member pages */
.main-content .badge[b-ydbi5e6uh8] {
    color: var(--text);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.14);
}

.main-content .badge.bg-primary[b-ydbi5e6uh8] {
    background: linear-gradient(135deg, var(--brand1), var(--brand2)) !important;
    border: none;
    color: white;
}

/* Table styling for dark theme */
.main-content .table[b-ydbi5e6uh8] {
    color: var(--text);
    background: var(--card);
}

.main-content .table th[b-ydbi5e6uh8] {
    background-color: rgba(255,255,255,0.02);
    border-color: rgba(255,255,255,0.08);
    color: var(--text);
}

.main-content .table td[b-ydbi5e6uh8] {
    border-color: rgba(255,255,255,0.08);
    color: var(--text);
}

.main-content .table-striped > tbody > tr:nth-of-type(odd) > td[b-ydbi5e6uh8] {
    background-color: rgba(255,255,255,0.02);
}

/* List group styling for dark theme */
.main-content .list-group-item[b-ydbi5e6uh8] {
    background-color: var(--card);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--text);
}

.main-content .list-group-item.active[b-ydbi5e6uh8] {
    background-color: var(--brand1);
    border-color: var(--brand1);
    color: white;
}

.main-content .list-group-item:hover[b-ydbi5e6uh8] {
    background-color: rgba(255,255,255,0.1);
    color: var(--text);
}

/* Progress bar styling */
.main-content .progress[b-ydbi5e6uh8] {
    background-color: rgba(255,255,255,0.1);
}

.main-content .progress-bar[b-ydbi5e6uh8] {
    background: linear-gradient(135deg, var(--brand1), var(--brand2));
}

/* Mobile hamburger menu for main content area */
.mobile-nav-toggle[b-ydbi5e6uh8] {
    display: none;
    position: fixed;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 1200;
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 6px;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.mobile-nav-toggle:hover[b-ydbi5e6uh8] {
    background: rgba(0, 0, 0, 0.95);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.05);
}

.mobile-nav-toggle span[b-ydbi5e6uh8] {
    width: 14px;
    height: 2px;
    background: white;
    transition: var(--transition);
    border-radius: 1px;
}

.mobile-nav-toggle.active span:nth-child(1)[b-ydbi5e6uh8] {
    transform: rotate(45deg) translate(3px, 3px);
}

.mobile-nav-toggle.active span:nth-child(2)[b-ydbi5e6uh8] {
    opacity: 0;
}

.mobile-nav-toggle.active span:nth-child(3)[b-ydbi5e6uh8] {
    transform: rotate(-45deg) translate(4px, -4px);
}

/* Mobile overlay */
.mobile-sidebar-overlay[b-ydbi5e6uh8] {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1100;
    backdrop-filter: blur(4px);
}

.mobile-sidebar-overlay.show[b-ydbi5e6uh8] {
    display: block;
}

/* Responsive design */
@media (max-width: 767px) {
    .main-content[b-ydbi5e6uh8] {
        margin-left: 0;
    }

    .content-wrapper[b-ydbi5e6uh8] {
        padding: 0.75rem;
    }
}

@media (max-width: 640px) {
    .mobile-nav-toggle[b-ydbi5e6uh8] {
        display: flex;
    }

    .sidebar[b-ydbi5e6uh8] {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 1150;
    }

    .page-container.sidebar-open .sidebar[b-ydbi5e6uh8] {
        transform: translateX(0);
    }

    .main-content[b-ydbi5e6uh8] {
        margin-left: 0;
    }
    
    .content-wrapper[b-ydbi5e6uh8] {
        padding-top: 4rem; /* Add space for the mobile toggle button */
    }
}
/* _content/MusicTheoryMastery.Web/Components/Areas/Members/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-4v7pzr97b0] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--border-radius);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%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(255, 255, 255, 0.06);
    transition: var(--transition);
}

.navbar-toggler:checked[b-4v7pzr97b0] {
    background-color: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.top-row[b-4v7pzr97b0] {
    min-height: 4rem;
    background: rgba(17, 24, 42, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar-brand[b-4v7pzr97b0] {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    transition: var(--transition);
}

.navbar-brand:hover[b-4v7pzr97b0] {
    color: var(--brand1);
    transform: scale(1.02);
    text-decoration: none;
}

/* Improved brand container layout */
.brand-container[b-4v7pzr97b0] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-logo[b-4v7pzr97b0] {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background-image: url('/img/music-theory-mastery-logo-only.svg');
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 14px;
    color: white;
    overflow: hidden;
}

.brand-text[b-4v7pzr97b0] {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    letter-spacing: 0.5px;
}

/* Improved Bootstrap Icons alignment */
.bi[b-4v7pzr97b0] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    vertical-align: middle;
    transition: var(--transition);
}

.nav-item[b-4v7pzr97b0] {
    font-size: 0.95rem;
    padding: 0.25rem 0;
    margin: 0.125rem 0;
}

.nav-item:first-of-type[b-4v7pzr97b0] {
    padding-top: 1rem;
}

.nav-item:last-of-type[b-4v7pzr97b0] {
    padding-bottom: 1rem;
}

/* Standard nav links - covers NavLink components */
.nav-item[b-4v7pzr97b0]  a {
    color: rgba(255, 255, 255, 0.8);
    border-radius: var(--border-radius);
    height: 3rem;
    display: flex;
    align-items: center;
    line-height: 3rem;
    text-decoration: none;
    padding: 0 1rem;
    margin: 0 0.5rem;
    transition: var(--transition);
    font-weight: 500;
}

.nav-item[b-4v7pzr97b0]  a.active {
    background: rgba(255, 127, 80, 0.2);
    color: white;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 127, 80, 0.3);
    transform: translateX(4px);
}

.nav-item[b-4v7pzr97b0]  a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transform: translateX(2px);
}

/* Comprehensive LogoutButton styling - covers all possible selectors */
.nav-item[b-4v7pzr97b0]  .nav-link,
.nav-item[b-4v7pzr97b0]  button.nav-link,
.nav-item[b-4v7pzr97b0]  a.nav-link,
.nav-item[b-4v7pzr97b0]  .logout-button,
.nav-item[b-4v7pzr97b0]  button.logout-button,
.nav-item[b-4v7pzr97b0]  a.logout-button {
    color: rgba(255, 255, 255, 0.8) !important;
    border-radius: var(--border-radius) !important;
    height: 3rem !important;
    display: flex !important;
    align-items: center !important;
    line-height: 3rem !important;
    text-decoration: none !important;
    padding: 0 1rem !important;
    margin: 0 0.5rem !important;
    transition: var(--transition) !important;
    font-weight: 500 !important;
    background: none !important;
    border: none !important;
    width: calc(100% - 1rem) !important;
    text-align: left !important;
    justify-content: flex-start !important;
    cursor: pointer !important;
    font-size: 0.95rem !important;
    font-family: inherit !important;
}

.nav-item[b-4v7pzr97b0]  .nav-link:hover,
.nav-item[b-4v7pzr97b0]  button.nav-link:hover,
.nav-item[b-4v7pzr97b0]  a.nav-link:hover,
.nav-item[b-4v7pzr97b0]  .logout-button:hover,
.nav-item[b-4v7pzr97b0]  button.logout-button:hover,
.nav-item[b-4v7pzr97b0]  a.logout-button:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    transform: translateX(2px) !important;
    text-decoration: none !important;
}

/* Ensure icons in logout buttons are properly aligned */
.nav-item[b-4v7pzr97b0]  .nav-link .bi,
.nav-item[b-4v7pzr97b0]  .logout-button .bi {
    flex-shrink: 0;
    margin-right: 0.75rem;
    width: 1.25rem;
    height: 1.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.nav-divider[b-4v7pzr97b0] {
    margin: 1rem 1.5rem;
    border-color: rgba(255, 255, 255, 0.16);
    border-style: solid;
    border-width: 1px 0 0 0;
}

.nav-scrollable[b-4v7pzr97b0] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-4v7pzr97b0] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-4v7pzr97b0] {
        display: none;
    }

    .nav-scrollable[b-4v7pzr97b0] {
        display: block;
        height: calc(100vh - 4rem);
        overflow-y: auto;
        padding-bottom: 1rem;
    }

    .nav-scrollable[b-4v7pzr97b0]::-webkit-scrollbar {
        width: 6px;
    }

    .nav-scrollable[b-4v7pzr97b0]::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.05);
    }

    .nav-scrollable[b-4v7pzr97b0]::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.2);
        border-radius: 3px;
    }

    .nav-scrollable[b-4v7pzr97b0]::-webkit-scrollbar-thumb:hover {
        background: rgba(255, 255, 255, 0.3);
    }
}

@media (max-width: 640px) {
    /* Hide the internal navbar toggler on mobile since we have our own mobile toggle */
    .navbar-toggler[b-4v7pzr97b0] {
        display: none;
    }
    
    /* Always show nav-scrollable when sidebar is visible on mobile */
    .nav-scrollable[b-4v7pzr97b0] {
        display: block;
        padding-top: 1rem;
    }
    .container-fluid[b-4v7pzr97b0] {
        justify-content: flex-end;
    }

}



/* Ensure consistent icon alignment for all nav items */
.nav-item .nav-link .bi[b-4v7pzr97b0],
.nav-item[b-4v7pzr97b0]  .nav-link .bi,
.nav-item[b-4v7pzr97b0]  a .bi {
    flex-shrink: 0;
}
/* _content/MusicTheoryMastery.Web/Components/Areas/Members/Pages/MyAccount.razor.rz.scp.css */
.account-page[b-2039qufpu2] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}



.streak-stat[b-2039qufpu2] {
    padding: 1rem;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(255, 165, 0, 0.1));
    border: 1px solid rgba(255, 107, 107, 0.2);
    margin-bottom: 1rem;
}

.streak-icon[b-2039qufpu2] {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.streak-number[b-2039qufpu2] {
    font-size: 2rem;
    font-weight: bold;
    color: var(--bs-primary);
    margin-bottom: 0.25rem;
}

.streak-label[b-2039qufpu2] {
    color: var(--bs-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.brand-gradient[b-2039qufpu2] {
    background: linear-gradient(45deg, var(--brand1, #ff7f50), var(--brand2, #ff4d4d)) !important;
}



/* Updated gradient using brand colors for dark theme */
.profile-summary[b-2039qufpu2] {
    background: linear-gradient(135deg, var(--brand1, #ff7f50) 0%, var(--brand2, #ff4d4d) 100%);
    color: white;
    border: none;
    box-shadow: 0 5px 15px rgba(255, 77, 77, 0.2);
}

.profile-summary .card-body[b-2039qufpu2] {
    padding: 2rem;
    color: white;
}

.profile-picture-container[b-2039qufpu2] {
    position: relative;
    display: inline-block;
}

.profile-picture[b-2039qufpu2] {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.3);
    display: block;
    background: rgba(255, 255, 255, 0.1);
}

.profile-picture-placeholder[b-2039qufpu2] {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid rgba(255, 255, 255, 0.3);
}

.profile-picture-placeholder i[b-2039qufpu2] {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.8);
}

.profile-stats[b-2039qufpu2] {
    margin-top: 1rem;
}

.profile-stats .stat[b-2039qufpu2] {
    text-align: center;
}

.profile-stats .stat .fw-bold[b-2039qufpu2] {
    font-size: 1.1rem;
    margin-top: 0.25rem;
    color: white;
}

.badge[b-2039qufpu2] {
    font-size: 0.75rem;
    padding: 0.35em 0.65em;
    color: white;
}

/* Ensure all text in profile summary is white */
.profile-summary h4[b-2039qufpu2],
.profile-summary p[b-2039qufpu2],
.profile-summary div[b-2039qufpu2],
.profile-summary small[b-2039qufpu2] {
    color: white !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .account-page[b-2039qufpu2] {
        padding: 1rem 0.5rem;
    }
    
    .profile-summary .card-body[b-2039qufpu2] {
        padding: 1.5rem;
    }
}
/* _content/MusicTheoryMastery.Web/Components/Areas/Members/Pages/Profile.razor.rz.scp.css */
.profile-edit-page[b-tolyta0f20] {
    max-width: 800px;
    margin: 2rem auto;
    padding: 1rem;
    color: var(--text, #ffffff);
}

.profile-form .form-label[b-tolyta0f20] {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text, #ffffff);
}

.profile-form .form-control[b-tolyta0f20],
.profile-form .form-select[b-tolyta0f20] {
    border-radius: 0.375rem;
    border: 1px solid rgba(255,255,255,0.16);
    background: #0c1326;
    color: var(--text, #ffffff);
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.profile-form .form-control:focus[b-tolyta0f20],
.profile-form .form-select:focus[b-tolyta0f20] {
    border-color: var(--brand1, #ff7f50);
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(255, 127, 80, 0.25);
    background: #0c1326;
    color: var(--text, #ffffff);
}

.form-text[b-tolyta0f20] {
    font-size: 0.875rem;
    color: var(--muted, #9fb0d0);
    margin-top: 0.25rem;
}

.validation-summary[b-tolyta0f20] {
    margin-top: 1rem;
}

.validation-summary ul[b-tolyta0f20] {
    margin: 0;
    padding-left: 1.5rem;
}

.alert[b-tolyta0f20] {
    border-radius: 0.375rem;
    margin-bottom: 1rem;
}

.alert-success[b-tolyta0f20] {
    background-color: rgba(74, 222, 128, 0.1);
    border-color: rgba(74, 222, 128, 0.3);
    color: #86efac;
}

.alert-danger[b-tolyta0f20] {
    background-color: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
    color: #fca5a5;
}

.spinner-border-sm[b-tolyta0f20] {
    width: 1rem;
    height: 1rem;
}

/* ========================================
   NOTATION PREFERENCES - FIX ISSUE #1
   ======================================== */
.notation-examples[b-tolyta0f20] {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 1rem;
}

.notation-example[b-tolyta0f20] {
    padding: 0.75rem;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 0.375rem;
    background-color: rgba(255,255,255,0.02);
    text-align: center;
    transition: all 0.2s ease;
    color: var(--muted, #9fb0d0); /* Ensure text is visible when not active */
}

.notation-example.active[b-tolyta0f20] {
    border-color: var(--brand1, #ff7f50);
    background-color: rgba(255, 127, 80, 0.1);
    color: var(--text, #ffffff); /* Better contrast when active */
}

.notation-example .example-title[b-tolyta0f20] {
    font-weight: 600;
    font-size: 0.875rem;
    color: inherit;
    margin-bottom: 0.25rem;
}

.notation-example .example-notes[b-tolyta0f20] {
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
    font-weight: 500;
    color: inherit;
}

/* ========================================
   MODAL FIXES - FIX ISSUES #2 & #4
   ======================================== */
/* Ensure modal backdrop blocks scrolling and interaction */
.modal.show[b-tolyta0f20] {
    display: flex !important;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* Prevent background scrolling */
}

.modal-dialog[b-tolyta0f20] {
    margin: 1rem;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    z-index: 1051;
}

.modal-content[b-tolyta0f20] {
    background: var(--card, #11182a);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    color: var(--text, #ffffff);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-header[b-tolyta0f20] {
    background: rgba(255,255,255,0.02);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    color: var(--text, #ffffff);
}

.modal-title[b-tolyta0f20] {
    color: var(--text, #ffffff);
}

.modal-body[b-tolyta0f20] {
    background: var(--card, #11182a);
    color: var(--text, #ffffff);
}

.modal-footer[b-tolyta0f20] {
    background: rgba(255,255,255,0.02);
    border-top: 1px solid rgba(255,255,255,0.08);
}

/* Form controls in modals */
.modal .form-control[b-tolyta0f20],
.modal .form-select[b-tolyta0f20] {
    background: #0c1326;
    border: 1px solid rgba(255,255,255,0.16);
    color: var(--text, #ffffff);
}

.modal .form-control:focus[b-tolyta0f20],
.modal .form-select:focus[b-tolyta0f20] {
    background: #0c1326;
    border-color: var(--brand1, #ff7f50);
    color: var(--text, #ffffff);
    box-shadow: 0 0 0 0.25rem rgba(255, 127, 80, 0.25);
}

.modal .form-label[b-tolyta0f20] {
    color: var(--text, #ffffff);
}

/* ========================================
   CHECKBOX VISIBILITY - FIX ISSUE #2 & #4
   ======================================== */
.form-check-input[b-tolyta0f20] {
    background-color: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 0.25rem;
    margin-right: 0.5rem;
    width: 1.2em;
    height: 1.2em;
    transition: all 0.2s ease;
}

.form-check-input:checked[b-tolyta0f20] {
    background-color: var(--brand1, #ff7f50);
    border-color: var(--brand1, #ff7f50);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}

.form-check-input:focus[b-tolyta0f20] {
    border-color: var(--brand1, #ff7f50);
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(255, 127, 80, 0.25);
}

.form-check-input:not(:checked)[b-tolyta0f20] {
    background-color: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.3);
}

.form-check-label[b-tolyta0f20] {
    color: var(--text, #ffffff);
    margin-left: 0.5rem;
}

/* Make "Set as default" checkbox more prominent */
.form-check[b-tolyta0f20] {
    padding: 0.5rem;
    border-radius: 0.375rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.form-check:hover[b-tolyta0f20] {
    background: rgba(255,255,255,0.05);
}

/* ========================================
   EMAIL PREFERENCES - FIX ISSUE #5
   ======================================== */
.email-preferences-list[b-tolyta0f20] {
    background: transparent;
    border: none;
    padding: 0;
}

.email-preference-item[b-tolyta0f20] {
    min-height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1rem;
    border: 1px solid rgba(255,255,255,0.08); /* Remove white border, use subtle dark border */
    border-radius: 0.375rem;
    margin-bottom: 0.75rem;
    background: rgba(255,255,255,0.02);
    transition: all 0.2s ease;
}

.email-preference-item:hover[b-tolyta0f20] {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.16);
}

.email-preference-item:last-child[b-tolyta0f20] {
    margin-bottom: 0;
}

.email-preference-content[b-tolyta0f20] {
    flex: 1;
    margin-right: 1rem;
}

.email-preference-content h6[b-tolyta0f20] {
    color: var(--text, #ffffff);
    margin-bottom: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
}

.email-preference-content p[b-tolyta0f20] {
    color: var(--muted, #9fb0d0);
    margin: 0;
}

.email-preference-toggle[b-tolyta0f20] {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    min-height: 60px;
}

.email-preference-toggle .form-check[b-tolyta0f20] {
    margin-bottom: 0;
    background: transparent;
    border: none;
    padding: 0;
}

.email-preference-toggle .form-check-label[b-tolyta0f20] {
    font-size: 0.875rem;
    margin-top: 0.25rem;
    margin-left: 0.5rem;
}

/* Form select in email preferences */
.email-preference-content .form-select[b-tolyta0f20] {
    background: #0c1326;
    border: 1px solid rgba(255,255,255,0.16);
    color: var(--text, #ffffff);
    width: auto;
    display: inline-block;
    margin-top: 0.5rem;
}

/* ========================================
   BETTER SUCCESS/ERROR MESSAGING
   ======================================== */
.alert[b-tolyta0f20] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 0.5rem;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.alert i[b-tolyta0f20] {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.alert-success[b-tolyta0f20] {
    background: rgba(74, 222, 128, 0.15);
    border: 1px solid rgba(74, 222, 128, 0.4);
    color: #86efac;
}

.alert-danger[b-tolyta0f20] {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #fca5a5;
}

.alert-warning[b-tolyta0f20] {
    background: rgba(250, 204, 21, 0.15);
    border: 1px solid rgba(250, 204, 21, 0.4);
    color: #fde047;
}

.alert-info[b-tolyta0f20] {
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.4);
    color: #93c5fd;
}

/* ========================================
   INSTRUMENT CARDS IMPROVEMENTS
   ======================================== */
.card[b-tolyta0f20] {
    background: var(--card, #11182a);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--text, #ffffff);
}

.card.border-primary[b-tolyta0f20] {
    border-color: var(--brand1, #ff7f50) !important;
    box-shadow: 0 0 0 1px rgba(255, 127, 80, 0.2);
}

.card-title[b-tolyta0f20] {
    color: var(--text, #ffffff);
}

.badge.bg-primary[b-tolyta0f20] {
    background: linear-gradient(135deg, var(--brand1, #ff7f50), var(--brand2, #ff4d4d)) !important;
    color: white;
    border: none;
}

.dropdown-menu[b-tolyta0f20] {
    background: var(--card, #11182a);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 0.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.dropdown-item[b-tolyta0f20] {
    color: var(--text, #ffffff);
    transition: all 0.2s ease;
}

.dropdown-item:hover[b-tolyta0f20] {
    background: rgba(255,255,255,0.1);
    color: var(--text, #ffffff);
}

.dropdown-item.text-danger[b-tolyta0f20] {
    color: #fca5a5 !important;
}

.dropdown-item.text-danger:hover[b-tolyta0f20] {
    background: rgba(239, 68, 68, 0.1);
    color: #fca5a5 !important;
}

/* ========================================
   RESPONSIVE IMPROVEMENTS
   ======================================== */
@media (max-width: 768px) {
    .profile-edit-page[b-tolyta0f20] {
        padding: 1rem 0.5rem;
        margin: 1rem auto;
    }

    .modal-dialog[b-tolyta0f20] {
        margin: 0.5rem;
        width: calc(100% - 1rem);
        max-height: 95vh;
    }

    .email-preference-item[b-tolyta0f20] {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        padding: 1rem 0.75rem;
    }

    .email-preference-content[b-tolyta0f20] {
        margin-right: 0;
        width: 100%;
    }

    .email-preference-toggle[b-tolyta0f20] {
        align-items: flex-start;
        min-height: auto;
        width: 100%;
    }

    .form-check[b-tolyta0f20] {
        padding: 0.75rem;
    }
}

/* ========================================
   BUTTON IMPROVEMENTS
   ======================================== */
.btn-close[b-tolyta0f20] {
    background: transparent;
    border: none;
    color: var(--muted, #9fb0d0);
    opacity: 0.8;
    font-size: 1.25rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.25rem;
    transition: all 0.2s ease;
}

.btn-close:hover[b-tolyta0f20] {
    background: rgba(255,255,255,0.1);
    color: var(--text, #ffffff);
    opacity: 1;
}

.btn-primary[b-tolyta0f20] {
    background: linear-gradient(135deg, var(--brand1, #ff7f50), var(--brand2, #ff4d4d));
    border: none;
    color: white;
    transition: all 0.3s ease;
}

.btn-primary:hover:not(:disabled)[b-tolyta0f20] {
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(255, 127, 80, 0.4);
    filter: brightness(1.1);
    color: white;
}

.btn-secondary[b-tolyta0f20] {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.16);
    color: var(--text, #ffffff);
}

.btn-secondary:hover:not(:disabled)[b-tolyta0f20] {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.3);
    color: var(--text, #ffffff);
}

.btn-outline-secondary[b-tolyta0f20] {
    border-color: rgba(255,255,255,0.16);
    color: var(--muted, #9fb0d0);
    background: transparent;
}

.btn-outline-secondary:hover[b-tolyta0f20] {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.3);
    color: var(--text, #ffffff);
}

/* Disabled state improvements */
.btn:disabled[b-tolyta0f20] {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}
/* _content/MusicTheoryMastery.Web/Components/Areas/Members/Pages/TheoryItems.razor.rz.scp.css */
.streak-display[b-9ew8eox90e] {
    background: linear-gradient(135deg, #ff6b6b, #ffa500);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    min-width: 150px;
}

.streak-number[b-9ew8eox90e] {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.streak-display .text-muted[b-9ew8eox90e] {
    color: rgba(255, 255, 255, 0.8) !important;
}

.streak-display .small[b-9ew8eox90e] {
    font-size: 0.75rem;
}
/* _content/MusicTheoryMastery.Web/Components/Layout/AuthLayout.razor.rz.scp.css */
/* Landing Layout Styles */

.landing-page[b-r27m56sqd6] {
    min-height: 100vh;
    background: var(--bg);
    display: flex;
    flex-direction: column;
}

/* Sticky Navigation */
.landing-nav[b-r27m56sqd6] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: saturate(180%) blur(8px);
    background: rgba(11, 15, 26, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition);
}

.landing-nav.scrolled[b-r27m56sqd6] {
    background: rgba(11, 15, 26, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-content[b-r27m56sqd6] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    gap: 20px;
}

/* Brand */
.nav-brand[b-r27m56sqd6] {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text);
}

.brand-logo[b-r27m56sqd6] {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--brand1), var(--brand2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 16px;
    color: white;
}

.brand-text[b-r27m56sqd6] {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text);
}

.brand-link[b-r27m56sqd6] {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text);
    transition: var(--transition);
}

.brand-link:hover[b-r27m56sqd6] {
    color: var(--brand1);
    text-decoration: none;
}

/* Navigation Links */
.nav-links[b-r27m56sqd6] {
    display: flex;
    gap: 24px;
    align-items: center;
}

.nav-link[b-r27m56sqd6] {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 12px;
    border-radius: 8px;
    transition: var(--transition);
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.nav-link:hover[b-r27m56sqd6] {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    text-decoration: none;
}

/* Authentication Section */
.nav-auth[b-r27m56sqd6] {
    display: flex;
    gap: 12px;
    align-items: center;
}

.user-menu[b-r27m56sqd6] {
    display: flex;
    gap: 12px;
    align-items: center;
}

.user-name[b-r27m56sqd6] {
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Button Styles for Navigation */
.btn-ghost[b-r27m56sqd6] {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-ghost:hover[b-r27m56sqd6] {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline[b-r27m56sqd6] {
    background: transparent;
    color: var(--brand1);
    border: 1px solid var(--brand1);
}

.btn-outline:hover[b-r27m56sqd6] {
    background: var(--brand1);
    color: white;
}

/* Mobile Menu */
.mobile-menu-toggle[b-r27m56sqd6] {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
}

.hamburger[b-r27m56sqd6] {
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: var(--transition);
}

.mobile-menu[b-r27m56sqd6] {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(11, 15, 26, 0.98);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px;
}

.mobile-menu.show[b-r27m56sqd6] {
    display: block;
}

.mobile-nav-links[b-r27m56sqd6] {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.mobile-nav-link[b-r27m56sqd6] {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    padding: 12px 16px;
    border-radius: 8px;
    transition: var(--transition);
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    width: 100%;
    text-align: left;
}

.mobile-nav-link:hover[b-r27m56sqd6] {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    text-decoration: none;
}

.mobile-auth[b-r27m56sqd6] {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
}

.mobile-user-menu .user-welcome[b-r27m56sqd6] {
    color: var(--text);
    margin-bottom: 16px;
    font-weight: 500;
}

/* Content */
.landing-content[b-r27m56sqd6] {
    padding-top: 80px; /* Account for fixed header */
    flex: 1;
}

/* Content page styles for Privacy, Terms, etc. */
.landing-content .container[b-r27m56sqd6] {
    color: var(--text);
}

.landing-content h1[b-r27m56sqd6],
.landing-content h2[b-r27m56sqd6],
.landing-content h3[b-r27m56sqd6],
.landing-content h4[b-r27m56sqd6],
.landing-content h5[b-r27m56sqd6],
.landing-content h6[b-r27m56sqd6] {
    color: var(--text);
}

.landing-content .card[b-r27m56sqd6] {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3) !important;
}

.landing-content .card-body[b-r27m56sqd6] {
    background: transparent !important;
    color: #ffffff !important;
}

.landing-content .card-body *[b-r27m56sqd6],
.landing-content .card-body p[b-r27m56sqd6],
.landing-content .card-body li[b-r27m56sqd6],
.landing-content .card-body span[b-r27m56sqd6],
.landing-content .card-body div[b-r27m56sqd6] {
    color: #ffffff !important;
}

.landing-content .card-body h1[b-r27m56sqd6],
.landing-content .card-body h2[b-r27m56sqd6],
.landing-content .card-body h3[b-r27m56sqd6],
.landing-content .card-body h4[b-r27m56sqd6],
.landing-content .card-body h5[b-r27m56sqd6],
.landing-content .card-body h6[b-r27m56sqd6] {
    color: #ffffff !important;
    font-weight: 600 !important;
}

.landing-content .card-body ul[b-r27m56sqd6],
.landing-content .card-body ol[b-r27m56sqd6] {
    color: #ffffff !important;
}

.landing-content .lead[b-r27m56sqd6] {
    color: #cccccc !important;
    font-size: 1.1rem !important;
}

/* Modal Styles */
.modal-overlay[b-r27m56sqd6] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content[b-r27m56sqd6] {
    background: var(--card);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header[b-r27m56sqd6] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 24px 0;
}

.modal-header h3[b-r27m56sqd6] {
    margin: 0;
    color: var(--text);
    font-size: 1.5rem;
    font-weight: 600;
}

.modal-close[b-r27m56sqd6] {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--muted);
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: var(--transition);
}

.modal-close:hover[b-r27m56sqd6] {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text);
}

.modal-body[b-r27m56sqd6] {
    padding: 24px;
}

/* Auth Form Styles */
.auth-form[b-r27m56sqd6] {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row[b-r27m56sqd6] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group[b-r27m56sqd6] {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label[b-r27m56sqd6] {
    color: var(--text);
    font-weight: 500;
    font-size: 0.9rem;
}

.form-check[b-r27m56sqd6] {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    margin: 12px 0;
}

.form-check-input[b-r27m56sqd6] {
    margin-top: 2px;
    accent-color: var(--brand1);
}

.form-check-label[b-r27m56sqd6] {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.4;
}

.auth-footer[b-r27m56sqd6] {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.auth-footer p[b-r27m56sqd6] {
    color: var(--muted);
    margin: 0 0 12px 0;
    font-size: 0.9rem;
}

.btn-link[b-r27m56sqd6] {
    background: none;
    border: none;
    color: var(--brand1);
    text-decoration: none;
    cursor: pointer;
    font-size: 0.9rem;
    padding: 0;
}

.btn-link:hover[b-r27m56sqd6] {
    text-decoration: underline;
    color: var(--brand2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links[b-r27m56sqd6] {
        display: none;
    }
    
    .nav-auth[b-r27m56sqd6] {
        display: none;
    }
    
    .mobile-menu-toggle[b-r27m56sqd6] {
        display: flex;
    }
    
    .landing-content[b-r27m56sqd6] {
        padding-top: 60px;
    }
    
    .landing-content .card[b-r27m56sqd6] {
        margin: 0 -15px;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }
    
    .form-row[b-r27m56sqd6] {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .modal-content[b-r27m56sqd6] {
        margin: 10px;
        max-height: calc(100vh - 20px);
    }
    
    .modal-header[b-r27m56sqd6],
    .modal-body[b-r27m56sqd6] {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .nav-content[b-r27m56sqd6] {
        padding: 8px 0;
    }
    
    .brand-text[b-r27m56sqd6] {
        display: none;
    }
    
    .landing-content[b-r27m56sqd6] {
        padding-top: 56px;
    }
    
    .landing-content .container[b-r27m56sqd6] {
        padding: 0 15px;
    }
    
    .landing-content .card[b-r27m56sqd6] {
        border-radius: 8px;
        margin: 0;
    }
}

/* Utility Classes */
.w-100[b-r27m56sqd6] {
    width: 100% !important;
}

.mb-2[b-r27m56sqd6] {
    margin-bottom: 0.5rem !important;
}

.fineprint[b-r27m56sqd6]{
    font-size:.84rem;color:var(--muted)
}


/* Footer Styles */
.landing-footer[b-r27m56sqd6] {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
    margin-top: 60px;
    padding: 48px 0 24px;
    color: var(--muted);
}

.footer-content[b-r27m56sqd6] {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    margin-bottom: 32px;
}

.footer-brand[b-r27m56sqd6] {
    max-width: 400px;
}

.footer-logo[b-r27m56sqd6] {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-description[b-r27m56sqd6] {
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.footer-links[b-r27m56sqd6] {
    display: flex;
    gap: 48px;
}

.footer-section h4[b-r27m56sqd6] {
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 0 16px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-section ul[b-r27m56sqd6] {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section li[b-r27m56sqd6] {
    margin: 0 0 8px 0;
}

.footer-section a[b-r27m56sqd6] {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-section a:hover[b-r27m56sqd6] {
    color: var(--brand1);
    text-decoration: none;
}

.footer-link-btn[b-r27m56sqd6] {
    background: none;
    border: none;
    color: var(--muted);
    text-decoration: none;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
    text-align: left;
    font-family: inherit;
}

.footer-link-btn:hover[b-r27m56sqd6] {
    color: var(--brand1);
}

.footer-bottom[b-r27m56sqd6] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright[b-r27m56sqd6] {
    color: var(--muted);
    font-size: 0.85rem;
    margin: 0;
}

.back-to-top[b-r27m56sqd6] {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--muted);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
}

.back-to-top:hover[b-r27m56sqd6] {
    border-color: var(--brand1);
    color: var(--brand1);
    background: rgba(255, 127, 80, 0.1);
}

/* Footer Responsive Design */
@media (max-width: 768px) {
    .footer-content[b-r27m56sqd6] {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-links[b-r27m56sqd6] {
        gap: 24px;
    }

    .footer-bottom[b-r27m56sqd6] {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 400px) {
    .landing-footer[b-r27m56sqd6] {
        padding: 32px 0 24px;
        margin-top: 40px;
    }

    .footer-links[b-r27m56sqd6] {
        flex-direction: column;
        gap: 24px;
    }

    .footer-section h4[b-r27m56sqd6] {
        margin-bottom: 12px;
    }
}
/* _content/MusicTheoryMastery.Web/Components/Layout/PublicLayout.razor.rz.scp.css */
/* Public Layout Styles */

.public-page[b-3wxtf0d3m2] {
    min-height: 100vh;
    background: var(--bg);
    display: flex;
    flex-direction: column;
}

/* Sticky Navigation */
.public-nav[b-3wxtf0d3m2] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: saturate(180%) blur(8px);
    background: rgba(11, 15, 26, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition);
}

.public-nav.scrolled[b-3wxtf0d3m2] {
    background: rgba(11, 15, 26, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-content[b-3wxtf0d3m2] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    gap: 20px;
}

/* Brand */
.nav-brand[b-3wxtf0d3m2] {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text);
}

.brand-logo[b-3wxtf0d3m2] {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background-image: url('/img/music-theory-mastery-logo-only.svg');
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 16px;
}

.brand-text[b-3wxtf0d3m2] {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text);
}

.brand-link[b-3wxtf0d3m2] {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text);
    transition: var(--transition);
}

.brand-link:hover[b-3wxtf0d3m2] {
    color: var(--brand1);
    text-decoration: none;
}

/* Navigation Links */
.nav-links[b-3wxtf0d3m2] {
    display: flex;
    gap: 24px;
    align-items: center;
}

.nav-link[b-3wxtf0d3m2] {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 12px;
    border-radius: 8px;
    transition: var(--transition);
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.nav-link:hover[b-3wxtf0d3m2] {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    text-decoration: none;
}

/* Authentication Section */
.nav-auth[b-3wxtf0d3m2] {
    display: flex;
    gap: 12px;
    align-items: center;
}

.user-menu[b-3wxtf0d3m2] {
    display: flex;
    gap: 12px;
    align-items: center;
}

.user-name[b-3wxtf0d3m2] {
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Button Styles for Navigation */
.btn-ghost[b-3wxtf0d3m2] {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-ghost:hover[b-3wxtf0d3m2] {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline[b-3wxtf0d3m2] {
    background: transparent;
    color: var(--brand1);
    border: 1px solid var(--brand1);
}

.btn-outline:hover[b-3wxtf0d3m2] {
    background: var(--brand1);
    color: white;
}

/* Mobile Menu */
.mobile-menu-toggle[b-3wxtf0d3m2] {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
}

.hamburger[b-3wxtf0d3m2] {
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: var(--transition);
}

.mobile-menu[b-3wxtf0d3m2] {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(11, 15, 26, 0.98);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px;
}

.mobile-menu.show[b-3wxtf0d3m2] {
    display: block;
}

.mobile-nav-links[b-3wxtf0d3m2] {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.mobile-nav-link[b-3wxtf0d3m2] {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    padding: 12px 16px;
    border-radius: 8px;
    transition: var(--transition);
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    width: 100%;
    text-align: left;
}

.mobile-nav-link:hover[b-3wxtf0d3m2] {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    text-decoration: none;
}

.mobile-auth[b-3wxtf0d3m2] {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
}

.mobile-user-menu .user-welcome[b-3wxtf0d3m2] {
    color: var(--text);
    margin-bottom: 16px;
    font-weight: 500;
}

/* Content */
.public-content[b-3wxtf0d3m2] {
    padding-top: 80px; /* Account for fixed header */
    flex: 1;
}

/* Content page styles for Privacy, Terms, etc. */
.public-content .container[b-3wxtf0d3m2] {
    color: var(--text);
}

.public-content h1[b-3wxtf0d3m2],
.public-content h2[b-3wxtf0d3m2],
.public-content h3[b-3wxtf0d3m2],
.public-content h4[b-3wxtf0d3m2],
.public-content h5[b-3wxtf0d3m2],
.public-content h6[b-3wxtf0d3m2] {
    color: var(--text);
}

.public-content h1[b-3wxtf0d3m2] {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.public-content .card[b-3wxtf0d3m2] {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3) !important;
}

.public-content .card-body[b-3wxtf0d3m2] {
    background: transparent !important;
    color: #ffffff !important;
}

.public-content .card-body *[b-3wxtf0d3m2],
.public-content .card-body p[b-3wxtf0d3m2],
.public-content .card-body li[b-3wxtf0d3m2],
.public-content .card-body span[b-3wxtf0d3m2],
.public-content .card-body div[b-3wxtf0d3m2] {
    color: #ffffff !important;
}

.public-content .card-body h1[b-3wxtf0d3m2],
.public-content .card-body h2[b-3wxtf0d3m2],
.public-content .card-body h3[b-3wxtf0d3m2],
.public-content .card-body h4[b-3wxtf0d3m2],
.public-content .card-body h5[b-3wxtf0d3m2],
.public-content .card-body h6[b-3wxtf0d3m2] {
    color: #ffffff !important;
    font-weight: 600 !important;
}

.public-content .card-body ul[b-3wxtf0d3m2],
.public-content .card-body ol[b-3wxtf0d3m2] {
    color: #ffffff !important;
}

.public-content .lead[b-3wxtf0d3m2] {
    color: #cccccc !important;
    font-size: 1.1rem !important;
}

/* Modal Styles */
.modal-overlay[b-3wxtf0d3m2] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content[b-3wxtf0d3m2] {
    background: var(--card);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header[b-3wxtf0d3m2] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 24px 0;
}

.modal-header h3[b-3wxtf0d3m2] {
    margin: 0;
    color: var(--text);
    font-size: 1.5rem;
    font-weight: 600;
}

.modal-close[b-3wxtf0d3m2] {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--muted);
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: var(--transition);
}

.modal-close:hover[b-3wxtf0d3m2] {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text);
}

.modal-body[b-3wxtf0d3m2] {
    padding: 24px;
}

/* Auth Form Styles */
.auth-form[b-3wxtf0d3m2] {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row[b-3wxtf0d3m2] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group[b-3wxtf0d3m2] {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label[b-3wxtf0d3m2] {
    color: var(--text);
    font-weight: 500;
    font-size: 0.9rem;
}

.form-check[b-3wxtf0d3m2] {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    margin: 12px 0;
}

.form-check-input[b-3wxtf0d3m2] {
    margin-top: 2px;
    accent-color: var(--brand1);
}

.form-check-label[b-3wxtf0d3m2] {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.4;
}

.auth-footer[b-3wxtf0d3m2] {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.auth-footer p[b-3wxtf0d3m2] {
    color: var(--muted);
    margin: 0 0 12px 0;
    font-size: 0.9rem;
}

.btn-link[b-3wxtf0d3m2] {
    background: none;
    border: none;
    color: var(--brand1);
    text-decoration: none;
    cursor: pointer;
    font-size: 0.9rem;
    padding: 0;
}

.btn-link:hover[b-3wxtf0d3m2] {
    text-decoration: underline;
    color: var(--brand2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links[b-3wxtf0d3m2] {
        display: none;
    }

    .nav-auth[b-3wxtf0d3m2] {
        display: none;
    }

    .mobile-menu-toggle[b-3wxtf0d3m2] {
        display: flex;
    }

    .public-content[b-3wxtf0d3m2] {
        padding-top: 60px;
    }

    .public-content .card[b-3wxtf0d3m2] {
        margin: 0 -15px;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }

    .form-row[b-3wxtf0d3m2] {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .modal-content[b-3wxtf0d3m2] {
        margin: 10px;
        max-height: calc(100vh - 20px);
    }

    .modal-header[b-3wxtf0d3m2],
    .modal-body[b-3wxtf0d3m2] {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .nav-content[b-3wxtf0d3m2] {
        padding: 8px 0;
    }

    .brand-text[b-3wxtf0d3m2] {
        display: none;
    }

    .public-content[b-3wxtf0d3m2] {
        padding-top: 56px;
    }

    .public-content .container[b-3wxtf0d3m2] {
        padding: 0 15px;
    }

    .public-content .card[b-3wxtf0d3m2] {
        border-radius: 8px;
        margin: 0;
    }
}

/* Utility Classes */
.w-100[b-3wxtf0d3m2] {
    width: 100% !important;
}

.mb-2[b-3wxtf0d3m2] {
    margin-bottom: 0.5rem !important;
}

.fineprint[b-3wxtf0d3m2]{
    font-size:.84rem;color:var(--muted)
}


/* Footer Styles */
.public-footer[b-3wxtf0d3m2] {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
    margin-top: 60px;
    padding: 48px 0 24px;
    color: var(--muted);
}

.footer-content[b-3wxtf0d3m2] {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    margin-bottom: 32px;
}

.footer-brand[b-3wxtf0d3m2] {
    max-width: 400px;
}

.footer-logo[b-3wxtf0d3m2] {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-description[b-3wxtf0d3m2] {
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.footer-links[b-3wxtf0d3m2] {
    display: flex;
    gap: 48px;
}

.footer-section h4[b-3wxtf0d3m2] {
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 0 16px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-section ul[b-3wxtf0d3m2] {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section li[b-3wxtf0d3m2] {
    margin: 0 0 8px 0;
}

.footer-section a[b-3wxtf0d3m2] {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-section a:hover[b-3wxtf0d3m2] {
    color: var(--brand1);
    text-decoration: none;
}

.footer-link-btn[b-3wxtf0d3m2] {
    background: none;
    border: none;
    color: var(--muted);
    text-decoration: none;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
    text-align: left;
    font-family: inherit;
}

.footer-link-btn:hover[b-3wxtf0d3m2] {
    color: var(--brand1);
}

.footer-bottom[b-3wxtf0d3m2] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright[b-3wxtf0d3m2] {
    color: var(--muted);
    font-size: 0.85rem;
    margin: 0;
}

.back-to-top[b-3wxtf0d3m2] {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--muted);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
}

.back-to-top:hover[b-3wxtf0d3m2] {
    border-color: var(--brand1);
    color: var(--brand1);
    background: rgba(255, 127, 80, 0.1);
}

/* Footer Responsive Design */
@media (max-width: 768px) {
    .footer-content[b-3wxtf0d3m2] {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-links[b-3wxtf0d3m2] {
        gap: 32px;
    }

    .footer-bottom[b-3wxtf0d3m2] {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .public-footer[b-3wxtf0d3m2] {
        padding: 32px 0 24px;
        margin-top: 40px;
        text-align: center;
    }

    .footer-links[b-3wxtf0d3m2] {
        gap: 24px;
        text-align: center;
        align-items: center;
    }

    .footer-section h4[b-3wxtf0d3m2] {
        margin-bottom: 12px;
    }
}

@media (max-width: 320px) {
    .footer-links[b-3wxtf0d3m2] {
        flex-direction: column;
        gap: 16px;
    }
}
/* _content/MusicTheoryMastery.Web/Components/Pages/AccessDenied.razor.rz.scp.css */
.error-page-container[b-vrh8ss3kpw] {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 4rem 0;
}

.error-content[b-vrh8ss3kpw] {
    color: var(--text);
}

.error-icon[b-vrh8ss3kpw] {
    position: relative;
    margin-bottom: 2rem;
}

.error-icon .bi[b-vrh8ss3kpw] {
    font-size: 4rem;
    color: var(--warning-color);
    display: block;
    margin-bottom: 1rem;
}

.error-code[b-vrh8ss3kpw] {
    font-size: 6rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--warning-color), var(--brand1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1;
}

.error-message h1[b-vrh8ss3kpw] {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text);
}

.error-description[b-vrh8ss3kpw] {
    font-size: 1.2rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.error-actions[b-vrh8ss3kpw] {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.error-actions .btn[b-vrh8ss3kpw] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    text-decoration: none;
    transition: var(--transition);
}

.access-info[b-vrh8ss3kpw] {
    margin-bottom: 3rem;
}

.auth-status[b-vrh8ss3kpw] {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
    max-width: 450px;
    margin: 0 auto;
}

.auth-status.authenticated[b-vrh8ss3kpw] {
    background: rgba(74, 222, 128, 0.1);
    border-color: rgba(74, 222, 128, 0.3);
}

.auth-status.not-authenticated[b-vrh8ss3kpw] {
    background: rgba(250, 204, 21, 0.1);
    border-color: rgba(250, 204, 21, 0.3);
}

.status-icon[b-vrh8ss3kpw] {
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.auth-status.authenticated .status-icon .bi[b-vrh8ss3kpw] {
    color: var(--success-color);
    font-size: 1.25rem;
}

.auth-status.not-authenticated .status-icon .bi[b-vrh8ss3kpw] {
    color: var(--warning-color);
    font-size: 1.25rem;
}

.status-details[b-vrh8ss3kpw] {
    flex: 1;
}

.status-title[b-vrh8ss3kpw] {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text);
    font-size: 1rem;
}

.status-text[b-vrh8ss3kpw] {
    color: var(--muted);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.status-help[b-vrh8ss3kpw] {
    color: var(--muted);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

.error-help[b-vrh8ss3kpw] {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.error-help .eyebrow[b-vrh8ss3kpw] {
    margin-bottom: 0.75rem;
    color: var(--muted);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.help-links[b-vrh8ss3kpw] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.help-links a[b-vrh8ss3kpw] {
    color: var(--brand1);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.help-links a:hover[b-vrh8ss3kpw] {
    color: var(--brand2);
    text-decoration: underline;
}

.separator[b-vrh8ss3kpw] {
    color: var(--muted);
    opacity: 0.5;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .error-code[b-vrh8ss3kpw] {
        font-size: 4rem;
    }

    .error-message h1[b-vrh8ss3kpw] {
        font-size: 2rem;
    }

    .error-description[b-vrh8ss3kpw] {
        font-size: 1.1rem;
    }

    .error-actions[b-vrh8ss3kpw] {
        flex-direction: column;
        align-items: center;
    }

    .error-actions .btn[b-vrh8ss3kpw] {
        width: 100%;
        max-width: 280px;
    }

    .auth-status[b-vrh8ss3kpw] {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .help-links[b-vrh8ss3kpw] {
        flex-direction: column;
        gap: 0.5rem;
    }

    .separator[b-vrh8ss3kpw] {
        display: none;
    }
}

/* Subtle animation */
@keyframes fadeInUp-b-vrh8ss3kpw {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.error-content > *[b-vrh8ss3kpw] {
    animation: fadeInUp-b-vrh8ss3kpw 0.6s ease-out;
}

.error-icon[b-vrh8ss3kpw] {
    animation-delay: 0.1s;
}

.error-message[b-vrh8ss3kpw] {
    animation-delay: 0.2s;
}

.error-actions[b-vrh8ss3kpw] {
    animation-delay: 0.3s;
}

.access-info[b-vrh8ss3kpw] {
    animation-delay: 0.4s;
}

.error-help[b-vrh8ss3kpw] {
    animation-delay: 0.5s;
}
/* _content/MusicTheoryMastery.Web/Components/Pages/Contact.razor.rz.scp.css */
.contact-page[b-jomxsuylkb] {
    padding: 50px 0 80px;
    min-height: 100vh;
    background: linear-gradient(135deg, #0b0f1a 0%, #1a1f2e 100%);
    color: white;
}

.contact-header[b-jomxsuylkb] {
    text-align: center;
    margin-bottom: 60px;
}

.contact-subtitle[b-jomxsuylkb] {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

.contact-form-card[b-jomxsuylkb] {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 60px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.form-group[b-jomxsuylkb] {
    margin-bottom: 24px;
}

.form-label[b-jomxsuylkb] {
    color: white;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.form-control[b-jomxsuylkb] {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: white;
    padding: 12px 16px;
    font-size: 16px;
    transition: all 0.3s ease;
    min-height: 50px; /* Ensure minimum height for all form controls */
}

/* Specific styling for textarea to ensure proper height */
.form-control[rows][b-jomxsuylkb] {
    min-height: 150px; /* Approximate height for 6 rows */
    resize: vertical;
    line-height: 1.5;
}

/* Custom scrollbar styling for webkit browsers */
.form-control[b-jomxsuylkb]::-webkit-scrollbar {
    width: 8px;
}

.form-control[b-jomxsuylkb]::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
}

.form-control[b-jomxsuylkb]::-webkit-scrollbar-thumb {
    background: rgba(102, 126, 234, 0.6);
    border-radius: 6px;
}

.form-control[b-jomxsuylkb]::-webkit-scrollbar-thumb:hover {
    background: rgba(102, 126, 234, 0.8);
}

/* Firefox scrollbar styling */
.form-control[b-jomxsuylkb] {
    scrollbar-width: thin;
    scrollbar-color: rgba(102, 126, 234, 0.6) rgba(255, 255, 255, 0.1);
}

.form-control:focus[b-jomxsuylkb] {
    background: rgba(255, 255, 255, 0.15);
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
    color: white;
}

.form-control[b-jomxsuylkb]::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-control:disabled[b-jomxsuylkb] {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.5);
}

.btn-primary[b-jomxsuylkb] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 12px;
    padding: 16px 32px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-primary:hover:not(:disabled)[b-jomxsuylkb] {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.btn-primary:disabled[b-jomxsuylkb] {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

.authenticated-notice[b-jomxsuylkb] {
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.3);
    border-radius: 8px;
    padding: 12px 16px;
    color: #28a745;
    font-size: 14px;
}

.recaptcha-notice[b-jomxsuylkb] {
    text-align: center;
    margin-top: 16px;
}

.recaptcha-notice a[b-jomxsuylkb] {
    color: #667eea;
    text-decoration: none;
}

.recaptcha-notice a:hover[b-jomxsuylkb] {
    text-decoration: underline;
}

.auth-notice[b-jomxsuylkb] {
    text-align: center;
    margin-top: 16px;
}

.contact-info[b-jomxsuylkb] {
    margin-top: 60px;
}

.contact-info-item[b-jomxsuylkb] {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.contact-info-item:hover[b-jomxsuylkb] {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}

.contact-info-item i[b-jomxsuylkb] {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 16px;
    display: block;
}

.contact-info-item h3[b-jomxsuylkb] {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: white;
}

.contact-info-item p[b-jomxsuylkb] {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

.form-text[b-jomxsuylkb] {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    margin-top: 4px;
}

@media (max-width: 768px) {
    .contact-page[b-jomxsuylkb] {
        padding: 80px 0 60px;
    }

    .contact-header h1[b-jomxsuylkb] {
        font-size: 2.5rem;
    }

    .contact-form-card[b-jomxsuylkb] {
        padding: 30px 20px;
    }

    .contact-info-item[b-jomxsuylkb] {
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .contact-page[b-jomxsuylkb] {
        padding: 60px 0 40px;
    }

    .contact-header[b-jomxsuylkb] {
        margin-bottom: 40px;
    }

    .contact-header h1[b-jomxsuylkb] {
        font-size: 2rem;
    }

    .contact-subtitle[b-jomxsuylkb] {
        font-size: 1.1rem;
    }

    .contact-form-card[b-jomxsuylkb] {
        padding: 24px 16px;
        margin-bottom: 40px;
    }
}
/* _content/MusicTheoryMastery.Web/Components/Pages/CookiePreferences.razor.rz.scp.css */
.preferences-header h1[b-xekzfngjs1] {
    color: var(--text, #ffffff);
    margin-bottom: 1rem;
}

.preferences-card[b-xekzfngjs1] {
    background: var(--card, #11182a);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    color: var(--text, #ffffff);
}

.current-consent-summary[b-xekzfngjs1] {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.current-consent-summary h5[b-xekzfngjs1] {
    color: var(--text, #ffffff);
    margin-bottom: 0.5rem;
}

.category-card[b-xekzfngjs1] {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.2s ease;
    background: rgba(255, 255, 255, 0.02);
}

.category-card.enabled[b-xekzfngjs1] {
    border-color: var(--brand1, #ff7f50);
    background: rgba(255, 127, 80, 0.05);
}

.category-card.essential[b-xekzfngjs1] {
    border-color: #28a745;
    background: rgba(40, 167, 69, 0.05);
}

.category-header[b-xekzfngjs1] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.category-toggle[b-xekzfngjs1] {
    flex: 1;
}

.category-toggle input[type="checkbox"][b-xekzfngjs1] {
    margin-right: 0.75rem;
    margin-top: 0.125rem;
    transform: scale(1.2);
    accent-color: var(--brand1, #ff7f50);
}

.category-toggle input[type="checkbox"]:disabled[b-xekzfngjs1] {
    accent-color: #28a745;
}

.category-toggle label[b-xekzfngjs1] {
    color: var(--text, #ffffff);
    cursor: pointer;
    font-size: 1.1rem;
}

.category-icon[b-xekzfngjs1] {
    font-size: 1.5rem;
    color: var(--brand1, #ff7f50);
    opacity: 0.7;
}

.category-card.essential .category-icon[b-xekzfngjs1] {
    color: #28a745;
}

.category-description[b-xekzfngjs1] {
    color: var(--muted, #9fb0d0);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.category-details[b-xekzfngjs1] {
    margin-top: 1rem;
}

.category-details summary[b-xekzfngjs1] {
    color: var(--brand1, #ff7f50);
    cursor: pointer;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.category-details ul[b-xekzfngjs1] {
    color: var(--muted, #9fb0d0);
    font-size: 0.9rem;
    margin-left: 1rem;
}

.category-details li[b-xekzfngjs1] {
    margin-bottom: 0.25rem;
}

.preferences-actions[b-xekzfngjs1] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.preferences-footer[b-xekzfngjs1] {
    text-align: center;
}

.footer-links a[b-xekzfngjs1] {
    color: var(--brand1, #ff7f50);
    font-size: 0.9rem;
}

.footer-links a:hover[b-xekzfngjs1] {
    color: var(--brand2, #ff4d4d);
}

.badge[b-xekzfngjs1] {
    font-size: 0.7rem;
}

@media (max-width: 768px) {
    .preferences-card[b-xekzfngjs1] {
        padding: 1.5rem;
    }

    .preferences-actions[b-xekzfngjs1] {
        flex-direction: column;
    }

    .preferences-actions .btn[b-xekzfngjs1] {
        width: 100%;
    }

    .category-header[b-xekzfngjs1] {
        flex-direction: column;
        gap: 1rem;
    }

    .category-icon[b-xekzfngjs1] {
        align-self: flex-start;
    }
}
/* _content/MusicTheoryMastery.Web/Components/Pages/Login.razor.rz.scp.css */
.login-container[b-pnqx2oz9iy] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0b0f1a 0%, #1a1a2e 100%);
    padding: 20px;
}

.login-card[b-pnqx2oz9iy] {
    background: #11182a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    max-width: 480px;
    width: 100%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.login-header[b-pnqx2oz9iy] {
    margin-bottom: 32px;
}

.brand-logo[b-pnqx2oz9iy] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff7f50, #ff4d4d);
    border-radius: 16px;
    margin-bottom: 24px;
    font-weight: 900;
    font-size: 24px;
    color: white;
}

.login-header h1[b-pnqx2oz9iy] {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px 0;
}

.subtitle[b-pnqx2oz9iy] {
    color: #9fb0d0;
    font-size: 1rem;
    margin: 0;
}

.error-message[b-pnqx2oz9iy] {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #fca5a5;
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 24px;
    font-size: 0.9rem;
}

.loading-message[b-pnqx2oz9iy] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px;
    color: #9fb0d0;
    font-size: 1rem;
}

.spinner[b-pnqx2oz9iy] {
    width: 20px;
    height: 20px;
    border: 2px solid #9fb0d0;
    border-top: 2px solid #ff7f50;
    border-radius: 50%;
    animation: spin-b-pnqx2oz9iy 1s linear infinite;
}

@keyframes spin-b-pnqx2oz9iy {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.google-signin-btn[b-pnqx2oz9iy] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 16px 24px;
    background: #fff;
    color: #3c4043;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.google-signin-btn:hover:not(:disabled)[b-pnqx2oz9iy] {
    background: #f8f9fa;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

.google-signin-btn:disabled[b-pnqx2oz9iy] {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.google-signin-btn:disabled:hover[b-pnqx2oz9iy] {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transform: none;
}

.google-signin-btn.initializing[b-pnqx2oz9iy] {
    position: relative;
    overflow: hidden;
}

.google-signin-btn.initializing[b-pnqx2oz9iy]::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer-b-pnqx2oz9iy 2s infinite;
}

@keyframes shimmer-b-pnqx2oz9iy {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.signin-benefits[b-pnqx2oz9iy] {
    margin-top: 32px;
    text-align: left;
}

.benefit[b-pnqx2oz9iy] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: #9fb0d0;
    font-size: 0.9rem;
}

.checkmark[b-pnqx2oz9iy] {
    color: #4CAF50;
    font-weight: bold;
    width: 16px;
    text-align: center;
}

.login-footer[b-pnqx2oz9iy] {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.login-footer p[b-pnqx2oz9iy] {
    color: #9fb0d0;
    font-size: 0.85rem;
    margin: 0 0 16px 0;
    line-height: 1.4;
}

.login-footer a[b-pnqx2oz9iy] {
    color: #ff7f50;
    text-decoration: none;
}

.login-footer a:hover[b-pnqx2oz9iy] {
    text-decoration: underline;
}

.back-link[b-pnqx2oz9iy] {
    display: inline-block;
    color: #9fb0d0;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.back-link:hover[b-pnqx2oz9iy] {
    color: #fff;
}

@media (max-width: 640px) {
    .login-card[b-pnqx2oz9iy] {
        padding: 32px 24px;
        margin: 20px;
    }

    .login-header h1[b-pnqx2oz9iy] {
        font-size: 1.5rem;
    }
}
/* _content/MusicTheoryMastery.Web/Components/Pages/NotFoundPage.razor.rz.scp.css */
/* 404 Page Styling */
.error-page-container[b-kegxtwfq82] {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 4rem 0;
    background: var(--dark-bg, #0b0f1a);
}

.error-content[b-kegxtwfq82] {
    color: var(--text, #ffffff);
}

.error-icon[b-kegxtwfq82] {
    position: relative;
    margin-bottom: 2rem;
}

.error-icon .bi[b-kegxtwfq82] {
    font-size: 4rem;
    color: var(--muted, #6c757d);
    display: block;
    margin-bottom: 1rem;
}

.error-code[b-kegxtwfq82] {
    font-size: 6rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--brand1, #6366f1), var(--brand2, #8b5cf6));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1;
}

.error-message h1[b-kegxtwfq82] {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text, #ffffff);
}

.error-description[b-kegxtwfq82] {
    font-size: 1.2rem;
    color: var(--muted, #6c757d);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.error-actions[b-kegxtwfq82] {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.error-actions .btn[b-kegxtwfq82] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: var(--border-radius, 0.375rem);
    text-decoration: none;
    transition: var(--transition, all 0.2s ease);
}

.error-help[b-kegxtwfq82] {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.error-help .eyebrow[b-kegxtwfq82] {
    margin-bottom: 0.75rem;
    color: var(--muted, #6c757d);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.help-links[b-kegxtwfq82] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.help-links a[b-kegxtwfq82] {
    color: var(--brand1, #6366f1);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition, all 0.2s ease);
}

.help-links a:hover[b-kegxtwfq82] {
    color: var(--brand2, #8b5cf6);
    text-decoration: underline;
}

.separator[b-kegxtwfq82] {
    color: var(--muted, #6c757d);
    opacity: 0.5;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .error-code[b-kegxtwfq82] {
        font-size: 4rem;
    }

    .error-message h1[b-kegxtwfq82] {
        font-size: 2rem;
    }

    .error-description[b-kegxtwfq82] {
        font-size: 1.1rem;
    }

    .error-actions[b-kegxtwfq82] {
        flex-direction: column;
        align-items: center;
    }

    .error-actions .btn[b-kegxtwfq82] {
        width: 100%;
        max-width: 280px;
    }

    .help-links[b-kegxtwfq82] {
        flex-direction: column;
        gap: 0.5rem;
    }

    .separator[b-kegxtwfq82] {
        display: none;
    }
}

/* Subtle animation */
@keyframes fadeInUp-b-kegxtwfq82 {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.error-content > *[b-kegxtwfq82] {
    animation: fadeInUp-b-kegxtwfq82 0.6s ease-out;
}

.error-icon[b-kegxtwfq82] {
    animation-delay: 0.1s;
}

.error-message[b-kegxtwfq82] {
    animation-delay: 0.2s;
}

.error-actions[b-kegxtwfq82] {
    animation-delay: 0.3s;
}

.error-help[b-kegxtwfq82] {
    animation-delay: 0.4s;
}
/* _content/MusicTheoryMastery.Web/Components/Shared/CookieConsent.razor.rz.scp.css */
.cookie-consent-overlay[b-ckv5rqelu2] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    animation: fadeIn-b-ckv5rqelu2 0.3s ease-out;
}

.cookie-consent-banner[b-ckv5rqelu2] {
    background: var(--card, #11182a);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    padding: 2rem;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    color: var(--text, #ffffff);
    animation: slideUp-b-ckv5rqelu2 0.3s ease-out;
}

.cookie-consent-header h3[b-ckv5rqelu2] {
    color: var(--text, #ffffff);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.consent-description[b-ckv5rqelu2] {
    color: var(--muted, #9fb0d0);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.consent-description a[b-ckv5rqelu2] {
    color: var(--brand1, #ff7f50);
    text-decoration: none;
}

.consent-description a:hover[b-ckv5rqelu2] {
    text-decoration: underline;
}

.consent-learn-more[b-ckv5rqelu2] {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.consent-learn-more a[b-ckv5rqelu2] {
    color: var(--brand1, #ff7f50);
    font-weight: 500;
}

.consent-learn-more a:hover[b-ckv5rqelu2] {
    color: var(--brand2, #ff4d4d);
}

.cookie-consent-actions[b-ckv5rqelu2] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: flex-end;
    margin-top: 1.5rem;
}

.cookie-categories[b-ckv5rqelu2] {
    margin: 1.5rem 0;
}

.category-item[b-ckv5rqelu2] {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.2s ease;
}

.category-item:hover[b-ckv5rqelu2] {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.category-header[b-ckv5rqelu2] {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.category-header input[type="checkbox"][b-ckv5rqelu2] {
    margin-right: 0.75rem;
    margin-top: 0.125rem;
    transform: scale(1.2);
    accent-color: var(--brand1, #ff7f50);
}

.category-header input[type="checkbox"]:disabled[b-ckv5rqelu2] {
    accent-color: #28a745;
}

.category-title[b-ckv5rqelu2] {
    flex: 1;
    margin: 0;
    cursor: pointer;
    color: var(--text, #ffffff);
    font-size: 1rem;
}

.category-description[b-ckv5rqelu2] {
    color: var(--muted, #9fb0d0);
    margin-bottom: 0.5rem;
    line-height: 1.5;
    font-size: 0.9rem;
}

.category-item small[b-ckv5rqelu2] {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
}

/* Button styling overrides for dark theme */
.cookie-consent-banner .btn[b-ckv5rqelu2] {
    border-radius: 8px;
    font-weight: 500;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

.cookie-consent-banner .btn-primary[b-ckv5rqelu2] {
    background: linear-gradient(135deg, var(--brand1, #ff7f50), var(--brand2, #ff4d4d));
    border: none;
    color: white;
}

.cookie-consent-banner .btn-primary:hover[b-ckv5rqelu2] {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 127, 80, 0.3);
}

.cookie-consent-banner .btn-secondary[b-ckv5rqelu2] {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text, #ffffff);
}

.cookie-consent-banner .btn-secondary:hover[b-ckv5rqelu2] {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--text, #ffffff);
}

.cookie-consent-banner .btn-outline-secondary[b-ckv5rqelu2] {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--muted, #9fb0d0);
    background: transparent;
}

.cookie-consent-banner .btn-outline-secondary:hover[b-ckv5rqelu2] {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--text, #ffffff);
}

/* Badge styling */
.cookie-consent-banner .badge[b-ckv5rqelu2] {
    font-size: 0.7rem;
    font-weight: 500;
}

/* Animation keyframes */
@keyframes fadeIn-b-ckv5rqelu2 {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp-b-ckv5rqelu2 {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .cookie-consent-banner[b-ckv5rqelu2] {
        padding: 1.5rem;
        margin: 1rem;
        max-width: calc(100% - 2rem);
    }

    .cookie-consent-header h3[b-ckv5rqelu2] {
        font-size: 1.25rem;
    }

    .cookie-consent-actions[b-ckv5rqelu2] {
        flex-direction: column;
    }

    .cookie-consent-actions .btn[b-ckv5rqelu2] {
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .category-item[b-ckv5rqelu2] {
        padding: 1rem;
    }

    .category-header[b-ckv5rqelu2] {
        flex-direction: column;
        align-items: flex-start;
    }

    .category-header input[type="checkbox"][b-ckv5rqelu2] {
        margin-bottom: 0.5rem;
        margin-right: 0;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .cookie-consent-banner[b-ckv5rqelu2] {
        border: 2px solid #ffffff;
    }
    
    .category-item[b-ckv5rqelu2] {
        border: 1px solid #ffffff;
    }
    
    .consent-description[b-ckv5rqelu2],
    .category-description[b-ckv5rqelu2] {
        color: #ffffff;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .cookie-consent-overlay[b-ckv5rqelu2],
    .cookie-consent-banner[b-ckv5rqelu2],
    .category-item[b-ckv5rqelu2],
    .btn[b-ckv5rqelu2] {
        animation: none;
        transition: none;
    }
}
/* _content/MusicTheoryMastery.Web/Components/Shared/LogoutButton.razor.rz.scp.css */
.logout-button[b-zrpi9ei519] {
    /* Base styling that ensures consistency when used in different contexts */
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition, all 0.3s ease);
    border: none;
    background: none;
    font-family: inherit;
    font-size: inherit;
    color: inherit;
}

.logout-button:hover[b-zrpi9ei519] {
    text-decoration: none;
}

/* Ensure icon alignment is consistent */
.logout-button .bi[b-zrpi9ei519] {
    margin-right: 0.75rem;
    vertical-align: middle;
}

/* When used as a link */
a.logout-button[b-zrpi9ei519] {
    display: inline-flex;
    align-items: center;
}

/* When used as a button */
button.logout-button[b-zrpi9ei519] {
    display: inline-flex;
    align-items: center;
    text-align: left;
}
/* _content/MusicTheoryMastery.Web/Components/Shared/WelcomeBanner.razor.rz.scp.css */
.welcome-banner[b-s7xuevtzgo] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 16px 0;
    margin-bottom: 0;
}

.welcome-banner.authenticated[b-s7xuevtzgo] {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
}

.welcome-content[b-s7xuevtzgo] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.welcome-text[b-s7xuevtzgo] {
    display: flex;
    flex-direction: column;
}

.welcome-greeting[b-s7xuevtzgo] {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.welcome-subtitle[b-s7xuevtzgo] {
    font-size: 0.9rem;
    opacity: 0.9;
}

.welcome-actions[b-s7xuevtzgo] {
    display: flex;
    gap: 12px;
    align-items: center;
}

.welcome-banner .btn[b-s7xuevtzgo] {
    padding: 8px 16px;
    font-size: 0.9rem;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s;
}

.welcome-banner .btn-primary[b-s7xuevtzgo] {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.welcome-banner .btn-primary:hover[b-s7xuevtzgo] {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.welcome-banner .btn-outline[b-s7xuevtzgo] {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.welcome-banner .btn-outline:hover[b-s7xuevtzgo] {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
    .welcome-content[b-s7xuevtzgo] {
        flex-direction: column;
        text-align: center;
    }

    .welcome-actions[b-s7xuevtzgo] {
        justify-content: center;
    }
}
