.dashboard-card {
    border: none;
    border-radius: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}
.dashboard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}
.stat-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border-radius: 0.75rem;
}

.btn-primary {
    background: linear-gradient(135deg, #0d2c4b 0%, #1a4a6e 100%);
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0.25rem 0.5rem rgba(13, 44, 75, 0.3);
}

.table {
    border-radius: 0.5rem;
    overflow: hidden;
}
.table th {
    background: linear-gradient(135deg, #0d2c4b 0%, #1a4a6e 100%);
    color: white;
    border: none;
    font-weight: 600;
    padding: 1rem;
}
.table td {
    padding: 1rem;
    vertical-align: middle;
}
.table-hover tbody tr:hover {
    background-color: rgba(13, 44, 75, 0.05);
}
.pagination .page-link {
    color: #0d2c4b;
    border: 1px solid #dee2e6;
}
.pagination .page-item.active .page-link {
    background: linear-gradient(135deg, #0d2c4b 0%, #1a4a6e 100%);
    border-color: #0d2c4b;
    color: white;
}
.pagination .page-link:hover {
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.badge {
    font-size: 0.75em;
    font-weight: 600;
    padding: 0.5em 0.75em;
}
.badge.bg-primary { background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%) !important; }
.badge.bg-warning { background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%) !important; }
.badge.bg-success { background: linear-gradient(135deg, #198754 0%, #157347 100%) !important; }
.badge.bg-danger { background: linear-gradient(135deg, #dc3545 0%, #c82333 100%) !important; }
.badge.bg-secondary { background: linear-gradient(135deg, #6c757d 0%, #5c636a 100%) !important; }

.modal-body.text-center {
    padding: 0;
}

@media (max-width: 768px) {
    .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
}