/* assets/css/style.css */
:root {
    --navy-900: #102a43;
    --navy-800: #243b53;
    --navy-700: #334e68;
    --navy-600: #486581;
    --navy-500: #627d98;
    --navy-400: #829ab1;
    --navy-300: #9fb3c8;
    --navy-200: #bcccdc;
    --navy-100: #d9e2ec;
    --navy-50: #f0f4f8;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--navy-50);
    color: var(--navy-900);
    overflow-x: hidden;
}

h1, h2, h3, .font-outfit {
    font-family: 'Outfit', sans-serif;
}

/* Sidebar Styling */
#sidebar {
    width: 280px;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
    border-right: 1px solid var(--navy-100);
    transition: all 0.3s;
    z-index: 1000;
}

#sidebar.collapsed {
    left: -280px;
}

#content {
    margin-left: 280px;
    transition: all 0.3s;
    min-height: 100vh;
}

#content.expanded {
    margin-left: 0;
}

.nav-link {
    color: var(--navy-500);
    font-weight: 500;
    padding: 0.75rem 1rem;
    border-radius: 1rem;
    margin-bottom: 0.25rem;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-link:hover {
    background-color: var(--navy-50);
    color: var(--navy-900);
}

.nav-link.active {
    background-color: var(--navy-900);
    color: #fff;
    box-shadow: 0 10px 15px -3px rgba(16, 42, 67, 0.2);
}

.nav-link i {
    width: 20px;
    height: 20px;
}

/* Card Styling */
.card {
    border: 1px solid var(--navy-100);
    border-radius: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.card-header {
    background-color: #fff;
    border-bottom: 1px solid var(--navy-50);
    padding: 1.25rem 1.5rem;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: var(--navy-200);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--navy-300);
}

/* Modern Utilities */
.bg-navy { background-color: var(--navy-900); color: #fff; }
.text-navy { color: var(--navy-900); }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }

@media (max-width: 991.98px) {
    #sidebar {
        left: -280px;
    }
    #sidebar.show {
        left: 0;
    }
    #content {
        margin-left: 0;
    }
}
