.bg-navy {
    background-color: #1a237e;
}

.sidebar {
    width: 250px;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1040;
    transition: transform 0.3s ease-in-out;
}

.sidebar .nav-link {
    color: rgba(255, 255, 255, 0.8);
    padding: 0.8rem 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar .nav-link:hover,
.sidebar .nav-link.active {
    color: white;
    background-color: rgba(255, 255, 255, 0.1);
}

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

.main-content {
    margin-left: 250px;
    width: calc(100% - 250px);
    transition: margin 0.3s ease-in-out;
}

.logo {
    max-height: 40px;
}

/* Card hover effects */
.card {
    transition: transform 0.2s;
}

.card:hover {
    transform: translateY(-5px);
}

/* Update existing sidebar styles */
@media (max-width: 991.98px) {
    .sidebar {
        transform: translateX(-100%);
    }
    
    .sidebar.show {
        transform: translateX(0);
    }
    
    .main-content {
        margin-left: 0 !important;
        width: 100% !important;
    }
    
    /* Remove the sidebar-shown class styles if they exist */
    .main-content.sidebar-shown {
        margin-left: 0 !important;
    }
    
    /* Optional: Add overlay when sidebar is shown */
    .sidebar-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 1030;
    }
    
    .sidebar-overlay.show {
        display: block;
    }
}
/* footer{
    display: none !important;
} */
/* Make sure toggle button is visible on mobile */
@media (max-width: 991.98px) {
    .navbar-toggler {
        display: block !important;
    }
}

/* ... rest of the styles ... */
