/* UpMonix Application Styles */

:root {
    --sidebar-width: 240px;
    --primary: #0d6efd;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #f4f6f9;
}

.public-body {
    background: #fff;
}

.sidebar {
    width: var(--sidebar-width);
    min-height: 100vh;
    position: sticky;
    top: 0;
    flex-shrink: 0;
}

.sidebar .nav-link.active {
    background: rgba(255,255,255,0.1);
    color: #fff !important;
    border-radius: 6px;
}

.sidebar .nav-link:hover {
    color: #fff !important;
    background: rgba(255,255,255,0.05);
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 100;
}

.stat-card {
    border: none;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.hero {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
}

.card {
    border: none;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

@media (max-width: 768px) {
    .sidebar {
        width: 100%;
        min-height: auto;
        position: relative;
    }
}
