body {
    background-color: #f8f9fa;
}

.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.card-header {
    background-color: #343a40;
    color: white;
    border-radius: 10px 10px 0 0;
}

.navbar-brand {
    font-weight: bold;
}

.table {
    background-color: white;
}

.btn {
    border-radius: 5px;
}

.alert {
    border-radius: 10px;
}

.form-control, .form-select {
    border-radius: 5px;
}

/* Toggle and filter controls */
.gap-3 {
    gap: 1rem;
}

.form-check-input:checked {
    background-color: #198754;
    border-color: #198754;
}

.form-check-label {
    font-weight: 500;
    margin-left: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .d-flex.align-items-center.gap-3 {
        flex-direction: column;
        align-items: flex-start !important;
    }

    #daysFilter {
        width: 100% !important;
    }
}