/* /Components/MediaPlayer.razor.rz.scp.css */
/* ── MediaPlayer WebGL Canvas ─────────────────────────────── */

.player-container[b-0rqrlpqw3y] {
    position: relative;
    width: 100%;
    height: 100%;
    background: #020210;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    outline: none;
}

.player-container.fullscreen[b-0rqrlpqw3y] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
}

.player-canvas[b-0rqrlpqw3y] {
    width: 100%;
    height: 100%;
    display: block;
    /* Canvas fills the entire player area. All content and controls
       are rendered via WebGL — no HTML overlays. */
}
/* /Layout/MainLayout.razor.rz.scp.css */
.rendusa-app[b-u4mj9aypxy] {
    display: flex;
    height: 100vh;
    overflow: hidden;
}

.sidebar[b-u4mj9aypxy] {
    width: 240px;
    min-width: 240px;
    background: var(--bg-sidebar);
    border-right: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    transition: width 250ms ease, min-width 250ms ease;
    overflow: hidden;
}

.sidebar.collapsed[b-u4mj9aypxy] {
    width: 0;
    min-width: 0;
    border-right: none;
}

.main-content.sidebar-hidden[b-u4mj9aypxy] {
    padding-left: 2.75rem;
}

.main-content[b-u4mj9aypxy] {
    flex: 1;
    overflow-y: auto;
    background: var(--bg-primary);
    display: flex;
    flex-direction: column;
}

/* Floating toggle button visible when sidebar is collapsed */
.sidebar-toggle-floating[b-u4mj9aypxy] {
    display: block;
    position: fixed;
    top: 0.55rem;
    left: 0.55rem;
    z-index: 200;
    background: var(--bg-sidebar);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    font-size: 1.1rem;
    padding: 0.35rem 0.5rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: opacity 200ms ease;
}

.sidebar-toggle-floating:hover[b-u4mj9aypxy] {
    background: var(--bg-hover);
}

@media (max-width: 768px) {
    .sidebar[b-u4mj9aypxy] {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        z-index: 100;
        box-shadow: var(--shadow-lg);
    }

    .sidebar.collapsed[b-u4mj9aypxy] {
        transform: translateX(-100%);
    }
}
/* /Layout/NavMenu.razor.rz.scp.css */
/* ── Brand header ─────────────────────────────────────── */

.nav-brand[b-zuu7gh4317] {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 1.15rem;
    border-bottom: 1px solid var(--border-color);
}

.brand-icon[b-zuu7gh4317] {
    font-size: 1.4rem;
}

.brand-text[b-zuu7gh4317] {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--accent);
    flex: 1;
    letter-spacing: 0.5px;
}

.toggle-btn[b-zuu7gh4317] {
    font-size: 1rem;
    padding: 0.35rem 0.45rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
}

/* ── Navigation items ────────────────────────────────── */

.nav-menu[b-zuu7gh4317] {
    display: flex;
    flex-direction: column;
    padding: 0.75rem 0;
    gap: 0.15rem;
}

/*
 * NavLink is a child component — its rendered <a> elements don't get
 * this component's scope attribute. Use ::deep to target them.
 */
[b-zuu7gh4317] .nav-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 1.15rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 150ms ease;
    border-left: 3px solid transparent;
}

[b-zuu7gh4317] .nav-item:hover {
    background: var(--bg-hover);
    color: var(--text-primary);
}

[b-zuu7gh4317] .nav-item.active {
    color: var(--accent);
    background: var(--accent-glow);
    border-left-color: var(--accent);
}

[b-zuu7gh4317] .nav-icon {
    font-size: 1.05rem;
    min-width: 22px;
    text-align: center;
}

[b-zuu7gh4317] .nav-label {
    line-height: 1.3;
}

/* ── Section labels ──────────────────────────────────── */

.nav-section-label[b-zuu7gh4317] {
    padding: 1.25rem 1.15rem 0.5rem;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-top: 1px solid var(--border-color);
    margin-top: 0.25rem;
}

/* ── Playlist sidebar ────────────────────────────────── */

.playlist-sidebar[b-zuu7gh4317] {
    flex: 1;
    overflow-y: auto;
    padding: 0.25rem 0 0.75rem 0;
}

.playlist-empty[b-zuu7gh4317] {
    padding: 0.5rem 1.15rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
}

[b-zuu7gh4317] .playlist-item {
    font-size: 0.825rem;
}

/* ── Footer ──────────────────────────────────────────── */

.nav-footer[b-zuu7gh4317] {
    padding: 0.75rem 1.15rem;
    border-top: 1px solid var(--border-color);
    margin-top: auto;
}

.nav-footer-text[b-zuu7gh4317] {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-align: center;
}
/* /Pages/Home.razor.rz.scp.css */
.home-page[b-8tyfwvkx8s] {
    padding: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.hero[b-8tyfwvkx8s] {
    text-align: center;
    padding: 3rem 1rem 2rem;
}

.hero-icon[b-8tyfwvkx8s] {
    font-size: 3.5rem;
    margin-bottom: 0.75rem;
}

.hero h1[b-8tyfwvkx8s] {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent), #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle[b-8tyfwvkx8s] {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-top: 0.25rem;
}

.quick-actions[b-8tyfwvkx8s] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0 2rem;
}

.action-card[b-8tyfwvkx8s] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 1rem;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--text-primary);
    transition: all 200ms ease;
}

.action-card:hover[b-8tyfwvkx8s] {
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    color: var(--text-primary);
}

.action-icon[b-8tyfwvkx8s] {
    font-size: 2rem;
}

.action-title[b-8tyfwvkx8s] {
    font-weight: 600;
    font-size: 0.95rem;
}

.action-desc[b-8tyfwvkx8s] {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.section[b-8tyfwvkx8s] {
    margin-top: 1.5rem;
}

.section h3[b-8tyfwvkx8s] {
    margin-bottom: 0.75rem;
}
/* /Pages/Library.razor.rz.scp.css */
.library-page[b-snjwom68ha] {
    flex: 1;
}

/* Modal overlay — covers viewport, acts as backdrop + click-to-dismiss */
.modal-overlay[b-snjwom68ha] {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
}

/* Dialog panel — avoids Bootstrap .modal-dialog collision */
.dialog-panel[b-snjwom68ha] {
    background: var(--surface, #1e1e2e);
    border-radius: 12px;
    padding: 1.5rem;
    min-width: 320px;
    max-width: 90vw;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}
/* /Pages/Player.razor.rz.scp.css */
.player-page[b-ar28zzj6ma] {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.player-area[b-ar28zzj6ma] {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.audio-visualization[b-ar28zzj6ma] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 2rem;
}

.audio-icon[b-ar28zzj6ma] {
    font-size: 5rem;
    animation: pulse-b-ar28zzj6ma 2s ease-in-out infinite;
}

.audio-title[b-ar28zzj6ma] {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
}

.audio-artist[b-ar28zzj6ma] {
    font-size: 0.9rem;
}

@keyframes pulse-b-ar28zzj6ma {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
    }
}
/* /Pages/Settings.razor.rz.scp.css */
.settings-page[b-88piizp0o3] {
    max-width: 700px;
    margin: 0 auto;
    width: 100%;
}

.save-toast[b-88piizp0o3] {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    background: var(--success);
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
    z-index: 100;
}
