/* Custom styles for MudTable */
.custom-table {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.custom-header {
    background: linear-gradient(135deg, rgba(25,118,210,1) 0%, #42a5f5 100%) !important;
    color: white !important;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    border-bottom: 2px solid rgba(255,255,255,0.3);
}

.sticky-header {
    position: sticky;
    top: 0;
    z-index: 20;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.elevated-table {
    margin-bottom: 2rem;
}

.actions-cell {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.mud-table-row:hover {
    background-color: rgba(103, 126, 234, 0.08) !important;
    transition: background-color 0.2s ease;
}
/* End custom styles for MudTable */
