﻿body {
    .admin-layout

{
    height: 100vh;
    background: #0f172a;
    color: #e5e7eb;
    font-family: system-ui;
}

.topbar {
    height: 56px;
    background: #020617;
    display: flex;
    align-items: center;
    padding: 0 20px;
    font-weight: 600;
    border-bottom: 1px solid #1e293b;
}

.layout-body {
    display: flex;
    height: calc(100vh - 56px);
}

.sidebar {
    width: 260px;
    background: #020617;
    border-right: 1px solid #1e293b;
    padding: 12px;
}

.menu-title {
    font-size: 12px;
    color: #94a3b8;
    margin-bottom: 12px;
}

.menu-section {
    font-size: 11px;
    color: #64748b;
    text-transform: uppercase;
    margin: 12px 0 6px;
}

.nav-link {
    color: #e5e7eb;
    padding: 10px 12px;
    border-radius: 6px;
}

    .nav-link.active {
        background: #1e293b;
        font-weight: 600;
    }

.content {
    flex: 1;
    padding: 24px;
    overflow-y: auto;
    background: #020617;
}
:root {
    --primary: #7C7CFF;
    --secondary: #22C55E;
    --bg: #0B0F19;
    --surface: #111827;
    --sidebar: #020617;
    --text-primary: #E5E7EB;
    --text-secondary: #9CA3AF;
}

}
