/* ===== CetGeo Design System - Global Styles ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: rgb(237, 21, 86);
    --primary-hover: rgb(200, 15, 70);
    --primary-light: rgba(237, 21, 86, 0.1);
    --secondary: rgb(0, 174, 239);
    --secondary-hover: rgb(0, 145, 200);
    --secondary-light: rgba(0, 174, 239, 0.1);
    --white: rgb(255, 255, 255);
    --gray-border: rgb(88, 89, 91);
    --gray-light: rgba(88, 89, 91, 0.12);
    --bg-light: #f5f7fa;
    --bg-card: #ffffff;
    --text-dark: #2d3436;
    --text-muted: #636e72;
    --text-light: #b2bec3;
    --success: #00b894;
    --warning: #fdcb6e;
    --danger: #d63031;
    --info: #0984e3;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --transition-speed: 0.3s;
    /* ===== Sidebar & Topbar ===== */
    --bg-sidebar: #162032;
    --bg-sidebar-hover: #1e3048;
    --bg-sidebar-active: rgba(0, 174, 239, 0.15);
    --text-sidebar: #94a7bb;
    --text-sidebar-active: var(--white);
    --sidebar-width: 260px;
    --sidebar-collapsed-width: 70px;
    --topbar-height: 64px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 14px;
    color: var(--text-dark);
    background: var(--bg-light);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
}

/* ===== Buttons ===== */
.btn-cetgeo-primary {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 8px 20px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

    .btn-cetgeo-primary:hover {
        background: var(--primary-hover);
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(237, 21, 86, 0.3);
        color: var(--white);
    }

    .btn-cetgeo-primary:active {
        transform: translateY(0);
    }

.btn-cetgeo-secondary {
    background: var(--secondary);
    color: var(--white);
    border: none;
    padding: 8px 20px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

    .btn-cetgeo-secondary:hover {
        background: var(--secondary-hover);
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(0, 174, 239, 0.3);
        color: var(--white);
    }

.btn-cetgeo-outline {
    background: transparent;
    color: var(--gray-border);
    border: 1.5px solid var(--gray-light);
    padding: 8px 20px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

    .btn-cetgeo-outline:hover {
        border-color: var(--primary);
        color: var(--primary);
        background: var(--primary-light);
    }

.btn-cetgeo-danger {
    background: var(--danger);
    color: var(--white);
    border: none;
    padding: 8px 20px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

    .btn-cetgeo-danger:hover {
        background: #c0392b;
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(214, 48, 49, 0.3);
    }

.btn-cetgeo-success {
    background: var(--success);
    color: var(--white);
    border: none;
    padding: 8px 20px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

    .btn-cetgeo-success:hover {
        background: #00a381;
        transform: translateY(-1px);
    }

.btn-sm {
    padding: 5px 14px;
    font-size: 0.8rem;
}

.btn-icon {
    padding: 8px;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* ===== Cards ===== */
.card-cetgeo {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-light);
    transition: box-shadow 0.3s ease;
    overflow: hidden;
}

    .card-cetgeo:hover {
        box-shadow: var(--shadow-md);
    }

.card-cetgeo-header {
    padding: 16px 20px;
    border-bottom: 1px solid var(--gray-light);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.card-cetgeo-body {
    padding: 20px;
}

.card-cetgeo-footer {
    padding: 12px 20px;
    border-top: 1px solid var(--gray-light);
    background: rgba(245, 247, 250, 0.5);
}

/* ===== Page Header ===== */
.page-header {
    margin-bottom: 24px;
}

    .page-header h2 {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 4px;
    }

    .page-header p {
        color: var(--text-muted);
        font-size: 0.88rem;
        margin: 0;
    }

/* ===== Status Badges ===== */
.badge-status {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

    .badge-status::before {
        content: '';
        width: 6px;
        height: 6px;
        border-radius: 50%;
        display: inline-block;
    }

.badge-ativo {
    background: rgba(0, 184, 148, 0.12);
    color: #00b894;
}

    .badge-ativo::before {
        background: #00b894;
    }

.badge-inativo {
    background: rgba(214, 48, 49, 0.12);
    color: #d63031;
}

    .badge-inativo::before {
        background: #d63031;
    }

.badge-manutencao {
    background: rgba(253, 203, 110, 0.2);
    color: #e17055;
}

    .badge-manutencao::before {
        background: #e17055;
    }

/* ===== Form Controls ===== */
.form-control-cetgeo {
    border: 1.5px solid var(--gray-light);
    border-radius: var(--radius-sm);
    padding: 8px 14px;
    font-size: 0.88rem;
    transition: all 0.2s ease;
    color: var(--text-dark);
    background: var(--white);
    width: 100%;
}

    .form-control-cetgeo:focus {
        border-color: var(--secondary);
        box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.15);
        outline: none;
    }

    .form-control-cetgeo::placeholder {
        color: var(--text-light);
    }

.form-label-cetgeo {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
    display: block;
}

.form-select-cetgeo {
    border: 1.5px solid var(--gray-light);
    border-radius: var(--radius-sm);
    padding: 8px 14px;
    font-size: 0.88rem;
    transition: all 0.2s ease;
    color: var(--text-dark);
    background: var(--white);
    width: 100%;
    appearance: auto;
}

    .form-select-cetgeo:focus {
        border-color: var(--secondary);
        box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.15);
        outline: none;
    }

/* ===== Animations ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-12px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-fade-in {
    animation: fadeIn 0.4s ease forwards;
}

.animate-slide-in {
    animation: slideIn 0.4s ease forwards;
}

.animate-scale-in {
    animation: scaleIn 0.3s ease forwards;
}

/* ===== Scrollbar ===== */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(88, 89, 91, 0.2);
    border-radius: 3px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: rgba(88, 89, 91, 0.4);
    }

/* ===== Blazor Error UI ===== */
#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

.blazor-error-boundary {
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHg9IjIzNSIgeT0iNTEiIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMzUgLTUxKSI+PHBhdGggZD0iTTI2My41MDYgNTFDMjY0LjcxNyA1MSAyNjUuODEzIDUxLjQ4MzcgMjY2LjYwNiA1Mi4yNjU4TDI2Ny4wNTIgNTIuNzk4NyAyNjcuNTM5IDUzLjYyODMgMjkwLjE4NSA5Mi4xODMxIDI5MC41NDUgOTIuNzk1IDI5MC42NTYgOTIuOTk2QzI5MC44NzcgOTMuNTEzIDI5MSA5NC4wODE1IDI5MSA5NC42NzgyIDI5MSA5Ny4wNjUxIDI4OS4wMzggOTkgMjg2LjYxNyA5OUwyNDAuMzgzIDk5QzIzNy45NjMgOTkgMjM2IDk3LjA2NTEgMjM2IDk0LjY3ODIgMjM2IDk0LjM3OTkgMjM2LjAzMSA5NC4wODg2IDIzNi4wODkgOTMuODA3MkwyMzYuMzM4IDkzLjAxNjIgMjM2Ljg1OCA5Mi4xMzE0IDI1OS40NzMgNTMuNjI5NCAyNTkuOTYxIDUyLjc5ODUgMjYwLjQwNyA1Mi4yNjU4QzI2MS4yIDUxLjQ4MzcgMjYyLjI5NiA1MSAyNjMuNTA2IDUxWk0yNjMuNTg2IDY2LjAxODNDMjYwLjczNyA2Ni4wMTgzIDI1OS4zMTMgNjcuMTI0NSAyNTkuMzEzIDY5LjMzNyAyNTkuMzEzIDY5LjYxMDIgMjU5LjMzMiA2OS44NjA4IDI1OS4zNzEgNzAuMDg4N0wyNjEuNzk1IDg0LjAxNjEgMjY1LjM4IDg0LjAxNjEgMjY3LjgyMSA2OS43NDc1QzI2Ny44NiA2OS43MzA5IDI2Ny44NzkgNjkuNTg3NyAyNjcuODc5IDY5LjMxNzkgMjY3Ljg3OSA2Ny4xMTgyIDI2Ni40NDggNjYuMDE4MyAyNjMuNTg2IDY2LjAxODNaTTI2My41NzYgODYuMDU0N0MyNjEuMDQ5IDg2LjA1NDcgMjU5Ljc4NiA4Ny4zMDA1IDI1OS43ODYgODkuNzkyMSAyNTkuNzg2IDkyLjI4MzcgMjYxLjA0OSA5My41Mjk1IDI2My41NzYgOTMuNTI5NSAyNjYuMTE2IDkzLjUyOTUgMjY3LjM4NyA5Mi4yODM3IDI2Ny4zODcgODkuNzkyMSAyNjcuMzg3IDg3LjMwMDUgMjY2LjExNiA4Ni4wNTQ3IDI2My41NzYgODYuMDU0N1oiIGZpbGw9IiNGRkU1MDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvZz48L3N2Zz4=) no-repeat 1rem/1.8rem, #b32121;
    padding: 1rem 1rem 1rem 3.7rem;
    color: white;
}

    .blazor-error-boundary::after {
        content: "An error has occurred.";
    }

/* ===== Loading ===== */
.loading-progress {
    position: relative;
    display: block;
    width: 8rem;
    height: 8rem;
    margin: 20vh auto 1rem auto;
}

    .loading-progress circle {
        fill: none;
        stroke: var(--primary, #ED1556);
        stroke-width: 0.6rem;
        transform-origin: 50% 50%;
        transform: rotate(-90deg);
    }

        .loading-progress circle:last-child {
            stroke: var(--secondary, #00AEEF);
            stroke-dasharray: calc(3.141 * var(--blazor-load-percentage, 0%) * 0.8), 500%;
            transition: stroke-dasharray 0.05s ease-in-out;
        }

.loading-progress-text {
    position: absolute;
    text-align: center;
    font-weight: bold;
    color: var(--primary, #ED1556);
    inset: calc(20vh + 3.25rem) 0 auto 0.2rem;
}

    .loading-progress-text:after {
        content: var(--blazor-load-percentage-text, "Carregando...");
    }

/* ===== Utility ===== */
.text-primary-cet {
    color: var(--primary) !important;
}

.text-secondary-cet {
    color: var(--secondary) !important;
}

.bg-primary-cet {
    background-color: var(--primary) !important;
}

.bg-secondary-cet {
    background-color: var(--secondary) !important;
}

/* =====================================================
   Layout — Global (bypasses CSS isolation issues
   in Blazor Web App + InteractiveWebAssembly)
   ===================================================== */

/* ===== App Container ===== */
.app-container {
    display: flex;
    min-height: 100vh;
    background: var(--bg-light);
}

/* ===== Sidebar ===== */
.sidebar {
    width: var(--sidebar-width);
    height: 100vh;
    background: var(--bg-sidebar);
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: width var(--transition-speed) cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

    .sidebar.collapsed {
        width: var(--sidebar-collapsed-width);
    }

.sidebar-header {
    padding: 20px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    flex-shrink: 0;
}

.sidebar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    white-space: nowrap;
    transition: opacity var(--transition-speed);
}

.sidebar.collapsed .brand-text,
.sidebar.collapsed .menu-text,
.sidebar.collapsed .menu-arrow,
.sidebar.collapsed .menu-section-title {
    opacity: 0;
    width: 0;
    overflow: hidden;
}

.sidebar-menu {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 12px 8px;
}

    .sidebar-menu::-webkit-scrollbar {
        width: 4px;
    }

    .sidebar-menu::-webkit-scrollbar-thumb {
        background: rgba(255,255,255,0.15);
        border-radius: 4px;
    }

.menu-section {
    padding: 16px 12px 6px;
}

.menu-section-title {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: rgba(255,255,255,0.35);
    white-space: nowrap;
    transition: opacity var(--transition-speed);
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    color: var(--text-sidebar);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    position: relative;
    margin: 2px 0;
}

    .menu-item:hover {
        background: var(--bg-sidebar-hover);
        color: var(--white);
    }

    .menu-item.active {
        background: var(--bg-sidebar-active);
        color: var(--primary);
    }

.menu-icon {
    flex-shrink: 0;
    width: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.menu-text {
    font-size: 0.88rem;
    font-weight: 500;
    transition: opacity var(--transition-speed);
}

.menu-arrow {
    margin-left: auto;
    font-size: 0.7rem;
    transition: transform 0.3s ease, opacity var(--transition-speed);
}

.menu-group.open > .menu-toggle .menu-arrow {
    transform: rotate(180deg);
}

.submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    padding-left: 12px;
}

.menu-group.open > .submenu {
    max-height: 2000px;
}

.submenu-item {
    padding: 8px 14px 8px 22px;
    font-size: 0.84rem;
}

.sidebar-footer {
    padding: 12px 8px;
    border-top: 1px solid rgba(255,255,255,0.08);
    flex-shrink: 0;
}

/* NavLink <a> fix */
.sidebar-menu a.menu-item,
.sidebar-menu a.submenu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    color: var(--text-sidebar);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    margin: 2px 0;
}

    .sidebar-menu a.menu-item:hover,
    .sidebar-menu a.submenu-item:hover {
        background: var(--bg-sidebar-hover);
        color: var(--white);
        text-decoration: none;
    }

    .sidebar-menu a.menu-item.active {
        background: var(--bg-sidebar-active);
        color: var(--primary);
    }

.sidebar-menu a.submenu-item {
    padding: 8px 14px 8px 22px;
    font-size: 0.84rem;
}

/* ===== Main Wrapper ===== */
.main-wrapper {
    flex: 1;
    margin-left: var(--sidebar-width);
    transition: margin-left var(--transition-speed) cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.sidebar-collapsed .main-wrapper {
    margin-left: var(--sidebar-collapsed-width);
}

/* ===== Topbar ===== */
.topbar {
    height: var(--topbar-height);
    background: var(--white);
    border-bottom: 1px solid rgba(88, 89, 91, 0.12);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    position: sticky;
    top: 0;
    z-index: 900;
    box-shadow: var(--shadow-sm);
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-toggle-sidebar {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    transition: background 0.2s;
}

    .btn-toggle-sidebar:hover {
        background: var(--bg-light);
    }

.topbar-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
}

.topbar-subtitle {
    font-size: 0.82rem;
    color: var(--text-muted);
    display: none;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.notification-bell {
    position: relative;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--text-muted);
    padding: 6px;
    border-radius: 50%;
    transition: background 0.2s;
}

    .notification-bell:hover {
        background: var(--bg-light);
        color: var(--text-dark);
    }

.notification-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--white);
}

.topbar-divider {
    width: 1px;
    height: 32px;
    background: rgba(88, 89, 91, 0.15);
}

.topbar-user {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    transition: background 0.2s;
}

    .topbar-user:hover {
        background: var(--bg-light);
    }

.user-avatar {
    font-size: 1.8rem;
    color: var(--secondary);
}

.user-info {
    display: flex;
    flex-direction: column;
}

.user-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
}

.user-role {
    font-size: 0.72rem;
    color: var(--text-muted);
}

/* ===== Content Area ===== */
.content-area {
    flex: 1;
    padding: 24px;
}

/* ===== Overlay ===== */
.sidebar-overlay {
    display: none;
}

/* ===== Responsive: Tablet ===== */
@media (max-width: 1024px) {
    .sidebar {
        width: var(--sidebar-collapsed-width);
    }

        .sidebar .brand-text,
        .sidebar .menu-text,
        .sidebar .menu-arrow,
        .sidebar .menu-section-title {
            opacity: 0;
            width: 0;
            overflow: hidden;
        }

        .sidebar .submenu {
            max-height: 0 !important;
        }

        .sidebar:hover {
            width: var(--sidebar-width);
        }

            .sidebar:hover .brand-text,
            .sidebar:hover .menu-text,
            .sidebar:hover .menu-arrow,
            .sidebar:hover .menu-section-title {
                opacity: 1;
                width: auto;
            }

            .sidebar:hover .menu-group.open > .submenu {
                max-height: 2000px !important;
            }

    .main-wrapper {
        margin-left: var(--sidebar-collapsed-width);
    }

    .topbar-subtitle {
        display: inline;
    }
}

/* ===== Responsive: Mobile ===== */
@media (max-width: 768px) {
    .sidebar {
        width: var(--sidebar-width);
        transform: translateX(-100%);
        transition: transform var(--transition-speed) cubic-bezier(0.4, 0, 0.2, 1);
    }

        .sidebar.mobile-open {
            transform: translateX(0);
        }

            .sidebar.mobile-open .brand-text,
            .sidebar.mobile-open .menu-text,
            .sidebar.mobile-open .menu-arrow,
            .sidebar.mobile-open .menu-section-title {
                opacity: 1;
                width: auto;
            }

            .sidebar.mobile-open .menu-group.open > .submenu {
                max-height: 2000px !important;
            }

    .main-wrapper {
        margin-left: 0;
    }

    .btn-toggle-sidebar {
        display: flex;
    }

    .sidebar-overlay {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.5);
        z-index: 999;
    }

    .content-area {
        padding: 16px;
    }

    .topbar {
        padding: 0 16px;
    }

    .topbar-subtitle {
        display: none;
    }

    .user-info {
        display: none;
    }
}
