/* Global Body Styling */
body {
    background-color: #f8f9fa; /* light gray */
    font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Navbar Styling */
.navbar-brand img {
    height: 35px;
}

/* Card Styling */
.card {
    border-radius: 0.75rem; /* smooth rounded corners */
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Dashboard Numbers */
.display-6 {
    font-weight: 600;
    color: #0d6efd; /* bootstrap primary */
}

/* Buttons */
.btn-primary,
.btn-success {
    font-weight: 500;
    padding: 0.6rem 1.2rem;
    border-radius: 0.5rem;
}

/* Alerts */
.alert {
    border-radius: 0.5rem;
}

/* Form Tweaks */
form label {
    font-weight: 500;
    margin-bottom: 0.3rem;
}
