/*
 * CampusLink Custom Styles
 * -------------------------
 * These styles complement or override Bootstrap defaults.
 */

body {
    background-color: #f8f9fa; /* A light grey background */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.footer {
    margin-top: auto; /* Pushes footer to the bottom */
    font-size: 0.9rem;
}

.navbar-brand {
    font-weight: 600;
}

.card {
    border: none;
    border-radius: 0.5rem;
}

/* Make table headers a bit more prominent */
.table > thead {
    vertical-align: bottom;
    border-bottom: 2px solid #dee2e6;
}

/* Add subtle hover effect to cards */
.card {
    transition: box-shadow 0.3s ease-in-out;
}
.card:hover {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}