/* Card and container styles */
.card {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.program-header, .category-header {
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin-bottom: 2rem;
}

.table-container {
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

.table {
    margin-bottom: 0;
}

.table thead {
    background-color: #f1f3f5;
}

/* Badge styles */
.badge-active {
    background-color: #28a745;
}

.badge-inactive {
    background-color: #dc3545;
}

/* ── Bulk edit ── */
.bulk-edit-col { display: none; }
.bulk-edit-active .bulk-edit-col { display: table-cell; }
#bulk-edit-panel { display: none; }
.bulk-edit-active #bulk-edit-panel { display: block; }
.bulk-edit-active #bulk-edit-toggle { background-color: var(--bs-primary); color: white; border-color: var(--bs-primary); }
.bulk-edit-active .bulk-edit-disabled { pointer-events: none; opacity: 0.5; }
