/* assets/css/style.css */
:root { 
    --sidebar-width: 260px; 
    --primary-orange: #FF7A45; 
    --dark-navy: #1B2B3A; 
}

body { 
    font-family: 'Inter', sans-serif; 
    background-color: #f8fafc; 
    margin: 0;
}

/* Sidebar Styling */
.sidebar { 
    width: var(--sidebar-width); 
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: var(--dark-navy) !important;
    z-index: 1000;
    overflow-y: auto;
}

/* Main Content Area */
.main-content { 
    margin-left: var(--sidebar-width); 
    width: calc(100% - var(--sidebar-width));
    min-height: 100vh; 
    display: flex;
    flex-direction: column; /* This allows footer to stay at bottom */
    transition: all 0.3s; 
}

/* The actual scrollable page content */
.content-wrapper {
    flex: 1; /* This pushes the footer down */
    padding: 2rem;
}

/* Footer styling */
footer {
    background: white;
    padding: 1.5rem;
    border-top: 1px solid #e3e6f0;
    width: 100%;
}

@media (max-width: 991.98px) { 
    .sidebar { display: none; }
    .main-content { 
        margin-left: 0; 
        width: 100%; 
    } 
    /* Sidebar Link Hover Effects */
.sidebar .nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s ease-in-out;
}

.sidebar .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: white !important;
}

.sidebar .nav-link.active {
    background-color: var(--primary-orange) !important;
    color: white !important;
}

.sidebar .nav-link i {
    font-size: 1.1rem;
}

/* Custom Letter Spacing for Logo */
.letter-spacing-tight {
    letter-spacing: -1px;
}

/* Custom Scrollbar for Sidebar */
.sidebar::-webkit-scrollbar {
    width: 5px;
}
.sidebar::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
}
}