/* ====================== Overall Design ====================== */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f8f9fa;
}

.navbar { background: #005a9e !important; }

.header-top { background: #fff; padding: 15px 0; box-shadow: 0 3px 12px rgba(0,0,0,0.1); }
.college-name { font-size: 1.35rem; font-weight: 700; color: #003087; }

.card {
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,90,158,0.15);
}

/* Blue Theme for Cards & Tables */
.card-header.bg-success { background: #005a9e !important; }
.card-header.bg-primary { background: #0077be !important; }
.card-header.bg-danger { background: #c8102e !important; }

.btn-success, .btn-primary, .btn-danger {
    border-radius: 6px;
}

.table thead {
    background: #005a9e;
    color: white;
}

/* Consistent Table & Card Styling */
.card-footer {
    background: #f1f5f9;
}

/* Mobile Improvements */
@media (max-width: 992px) {
    .nav-link { font-size: 0.95rem; padding: 12px 15px !important; }
}
/* Footer */
footer {
    background: #002200;
    color: #ddd;
}