/* ===== Hostel Management System – Main Stylesheet ===== */

body.dark-mode {
    background-color: #1e1e2f;
    color: #e0e0e0;
}

body.dark-mode .navbar,
body.dark-mode .card,
body.dark-mode .list-group-item,
body.dark-mode .table {
    background-color: #2a2a40;
    color: #ddd;
    border-color: #444;
}

body.dark-mode .bg-light {
    background-color: #2a2a40 !important;
}

body.dark-mode .nav-pills .nav-link {
    color: #bbb;
}

body.dark-mode .nav-pills .nav-link.active {
    background-color: #0d6efd;
    color: #fff;
}

body.dark-mode .dropdown-menu {
    background-color: #333;
    color: #eee;
}

body.dark-mode .dropdown-menu .dropdown-item {
    color: #eee;
}

body.dark-mode .dropdown-menu .dropdown-item:hover {
    background-color: #555;
}

/* Sidebar */
.sidebar {
    min-height: 100vh;
}

/* Footer */
footer {
    position: relative;
    bottom: 0;
    width: 100%;
}

/* Adjustments for smaller screens */
@media (max-width: 768px) {
    .sidebar {
        min-height: auto;
    }
}

/* Print styles */
@media print {
    .sidebar, .navbar, .btn, .dropdown, footer {
        display: none !important;
    }
}