body {
    background-color: #f7f9fc;
}

/* Navbar Logo Styling */
.navbar-logo {
    height: 50px !important;
    width: auto !important;
    margin-right: 0 !important;
    transition: transform 0.3s ease;
}

.navbar-logo:hover {
    transform: scale(1.08);
}

.navbar-brand {
    padding: 0.5rem 0 !important;
}

/* Responsive logo adjustments */
@media (max-width: 992px) {
    .navbar-logo {
        height: 60px !important;
    }
}

@media (max-width: 576px) {
    .navbar-logo {
        height: 50px !important;
    }
}

.card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.table thead th {
    background-color: #002b56;
    color: #fff;
    font-weight: 600;
}

.table tbody tr:hover {
    background-color: #f1f4f9;
    transition: background 0.2s ease;
}

.btn-primary {
    background: linear-gradient(90deg, #004aad, #0074ff);
    border: none;
}

    .btn-primary:hover {
        background: linear-gradient(90deg, #003b8e, #0062e6);
    }

.btn-warning {
    background: #ffcc00;
    border: none;
    color: #000;
}

.btn-danger {
    background: #dc3545;
    border: none;
}

.pagination .page-link {
    color: #002b56;
    border-radius: 8px;
}

.pagination .page-item.active .page-link {
    background-color: #002b56;
    border-color: #002b56;
    color: white;
}
