body {
    background-color: #f8f9fa;
}

.dashboard-header {
    background-color: #3f51b5;
    color: white;
    padding: 20px;
    border-radius: 8px;
}

.stats-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.stats-card:hover {
    transform: translateY(-5px);
}

.table-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.table-hover tbody tr:hover {
    background-color: #f1f1f1;
}

.table th {
    color: #6c757d;
    font-size: 0.85rem;
    font-weight: 600;
}

.table td {
    font-size: 0.95rem;
}