/* /Layout/MainLayout.razor.rz.scp.css */
/* Каркас приложения в стиле Google Drive */

.gda-drawer-toggle[b-hgjahvkirl]{
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.gda-shell[b-hgjahvkirl] {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 280px 1fr;
    background: var(--g-bg);
    color: var(--g-text);
}

.gda-sidebar[b-hgjahvkirl] {
    background: var(--g-surface);
    border-right: 1px solid var(--g-border);
}

.gda-main[b-hgjahvkirl] {
    display: grid;
    grid-template-rows: 64px 1fr;
    min-width: 0;
}

.gda-topbar[b-hgjahvkirl] {
    position: sticky;
    top: 0;
    z-index: 10;
    background: color-mix(in srgb, var(--g-surface) 92%, transparent);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--g-border);
    display: grid;
    grid-template-columns: 1fr minmax(220px, 720px) auto;
    align-items: center;
    gap: 12px;
    padding: 0 16px;
}

.gda-topbar-left[b-hgjahvkirl] {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.gda-brand-icon[b-hgjahvkirl] {
    color: var(--g-primary);
    font-size: 22px;
}

.gda-brand-title[b-hgjahvkirl] {
    font-weight: 500;
    color: var(--g-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gda-search[b-hgjahvkirl] {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--g-search-bg);
    border: 1px solid var(--g-search-border);
    border-radius: 999px;
    padding: 10px 14px;
}

.gda-search .material-symbols-outlined[b-hgjahvkirl] {
    color: var(--g-muted);
    font-size: 20px;
}

.gda-search-input[b-hgjahvkirl] {
    border: none;
    outline: none;
    background: transparent;
    width: 100%;
    font-size: 14px;
    color: var(--g-text);
}

.gda-topbar-actions[b-hgjahvkirl] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.gda-icon-btn[b-hgjahvkirl] {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    text-decoration: none;
    color: var(--g-muted);
    cursor: pointer;
}

.gda-icon-btn:hover[b-hgjahvkirl] {
    background: rgba(95, 99, 104, 0.12);
    color: var(--g-text);
}

.gda-mobile-only[b-hgjahvkirl]{
    display: none;
}

.gda-content[b-hgjahvkirl] {
    padding: 16px 16px 24px;
    min-width: 0;
}

/* Затемнение для мобильного меню */
.gda-drawer-backdrop[b-hgjahvkirl]{
    display: none;
}

/* Мобильная "шторка" меню */
@media (max-width: 900px) {
    .gda-shell[b-hgjahvkirl] {
        grid-template-columns: 1fr;
    }

    .gda-mobile-only[b-hgjahvkirl]{
        display: grid;
    }

    .gda-sidebar[b-hgjahvkirl] {
        position: fixed;
        top: 64px;
        left: 0;
        bottom: 0;
        width: 280px;
        z-index: 30;
        transform: translateX(-102%);
        transition: transform 0.18s ease;
        border-right: 1px solid var(--g-border);
        box-shadow: var(--g-shadow);
    }

    /* Открытие */
    .gda-drawer-toggle:checked ~ .gda-shell .gda-sidebar[b-hgjahvkirl]{
        transform: translateX(0);
    }

    .gda-drawer-backdrop[b-hgjahvkirl]{
        position: fixed;
        inset: 64px 0 0 0;
        background: rgba(15, 23, 42, 0.35);
        z-index: 20;
        display: none;
    }

    .gda-drawer-toggle:checked ~ .gda-shell .gda-drawer-backdrop[b-hgjahvkirl]{
        display: block;
    }

    .gda-topbar[b-hgjahvkirl] {
        grid-template-columns: 1fr 1fr auto;
    }
}
/* /Layout/NavMenu.razor.rz.scp.css */
.gda-nav-header[b-6rc2d63q4y] {
    padding: 14px 14px 10px;
}

.gda-nav-brand[b-6rc2d63q4y] {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--g-muted);
    font-weight: 500;
    user-select: none;
    min-width: 0;
}

.gda-nav-brand .material-symbols-outlined[b-6rc2d63q4y] {
    color: var(--g-primary);
    font-size: 22px;
}

.gda-nav[b-6rc2d63q4y] {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 64px);
    gap: 8px;
    padding: 8px 8px 12px;
}

.gda-nav-items[b-6rc2d63q4y] {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.gda-nav-bottom[b-6rc2d63q4y] {
    margin-top: auto;
    padding-top: 8px;
    border-top: 1px solid var(--g-border);
}

.gda-nav-link[b-6rc2d63q4y] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--g-text);
    font-size: 14px;
}

.gda-nav-link .material-symbols-outlined[b-6rc2d63q4y] {
    font-size: 20px;
    color: var(--g-muted);
}

.gda-nav-link:hover[b-6rc2d63q4y] {
    background: var(--g-hover);
}

.gda-nav-link.active[b-6rc2d63q4y] {
    background: var(--g-selected);
}

.gda-nav-link.active .material-symbols-outlined[b-6rc2d63q4y] {
    color: var(--g-primary);
}

:global([data-navstyle="nav-compact"]) .gda-nav[b-6rc2d63q4y] {
    padding: 6px 6px 10px;
    gap: 4px;
}

:global([data-navstyle="nav-compact"]) .gda-nav-link[b-6rc2d63q4y] {
    padding: 8px 10px;
    gap: 10px;
    border-radius: 10px;
    font-size: 13px;
}

:global([data-navstyle="nav-compact"]) .gda-nav-link .material-symbols-outlined[b-6rc2d63q4y] {
    font-size: 18px;
}

:global([data-navstyle="nav-glass"]) .gda-nav[b-6rc2d63q4y] {
    background: linear-gradient(180deg, rgba(56, 189, 248, 0.08), rgba(88, 28, 135, 0.08));
    border: 1px solid color-mix(in srgb, var(--g-primary) 20%, transparent);
    border-radius: 16px;
    padding: 10px 12px;
}

:global([data-navstyle="nav-glass"]) .gda-nav-link[b-6rc2d63q4y] {
    backdrop-filter: blur(6px);
    border: 1px solid transparent;
}

:global([data-navstyle="nav-glass"]) .gda-nav-link.active[b-6rc2d63q4y] {
    border-color: color-mix(in srgb, var(--g-primary) 45%, transparent);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
}
/* /Pages/Settings.razor.rz.scp.css */
.text-muted[b-lnj5w37xx7]{
    color: var(--g-muted);
}

.settings-group[b-lnj5w37xx7]{
    margin-top: 12px;
}

.settings-group-title[b-lnj5w37xx7]{
    font-weight: 500;
    color: var(--g-text);
    margin-bottom: 12px;
}

.theme-grid[b-lnj5w37xx7]{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 12px;
}

.theme-tile[b-lnj5w37xx7]{
    text-align: left;
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 12px;
    background: var(--g-surface);
    border: 1px solid var(--g-border);
    border-radius: 16px;
    box-shadow: var(--g-shadow-soft);
    transition: transform .08s ease, border-color .12s ease, background-color .12s ease;
}

.theme-tile:hover[b-lnj5w37xx7]{
    background: color-mix(in srgb, var(--g-hover) 60%, var(--g-surface));
    transform: translateY(-1px);
}

.theme-tile.active[b-lnj5w37xx7]{
    border-color: color-mix(in srgb, var(--g-primary) 65%, var(--g-border));
    outline: 2px solid color-mix(in srgb, var(--g-primary) 40%, transparent);
    outline-offset: 0;
}

.theme-preview[b-lnj5w37xx7]{
    width: 56px;
    height: 56px;
    border-radius: 14px;
    border: 1px solid var(--g-border);
    position: relative;
    overflow: hidden;
    flex: 0 0 auto;
}

.theme-preview-surface[b-lnj5w37xx7]{
    position: absolute;
    left: 8px;
    right: 8px;
    top: 10px;
    height: 18px;
    border-radius: 10px;
    opacity: .95;
}

.theme-preview-accent[b-lnj5w37xx7]{
    position: absolute;
    left: 8px;
    right: 16px;
    bottom: 10px;
    height: 8px;
    border-radius: 999px;
    opacity: .95;
}

.theme-meta[b-lnj5w37xx7]{
    min-width: 0;
}

.theme-name[b-lnj5w37xx7]{
    font-weight: 500;
    color: var(--g-text);
    margin-bottom: 2px;
}

.theme-desc[b-lnj5w37xx7]{
    font-size: 13px;
    color: var(--g-muted);
}
