/* University Management System (UMS) - Base Styles */
:root {
    --uc-primary: #0d6efd;
    --uc-secondary: #6c757d;
    --uc-success: #198754;
    --uc-danger: #dc3545;
    --uc-warning: #ffc107;
    --uc-info: #0dcaf0;
    --uc-dark: #212529;
}

body {
    background-color: #f8f9fa;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.content-wrapper {
    flex: 1;
}

.card {
    border-radius: 0.5rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.navbar-brand {
    font-weight: 600;
    letter-spacing: 0.5px;
}
