body {
    background-color: #f8f9fa;
    padding-bottom: 20px;
}

.card {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.card-header {
    font-weight: 600;
    border-bottom: 2px solid #dee2e6;
}

.form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-check-label {
    font-weight: 400;
}

.table th {
    font-weight: 600;
    background-color: #f8f9fa;
}

.table-hover tbody tr:hover {
    background-color: #f8f9fa;
}

.btn {
    margin-right: 5px;
}

.alert {
    border-radius: 5px;
    border: none;
}

.badge {
    padding: 0.5em 0.8em;
    font-size: 0.85em;
}

.pagination .page-link {
    color: #0d6efd;
}

.pagination .page-item.active .page-link {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

/* Responsive table */
.table-responsive {
    overflow-x: auto;
}

@media (max-width: 768px) {
    .card-body {
        padding: 1rem;
    }
    
    .form-label {
        font-size: 0.9rem;
    }
}