.staffs-table-wrapper {
    background-color: #f5f5f5; /* whitesmoke */
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.staffs-table-wrapper:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); /* elevation on hover */
    transform: translateY(-2px); /* subtle lift */
}

.staffs-table-wrapper:active {
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15); /* more elevation on click */
    transform: translateY(-1px);
}
 .required::after {
     content: " *";
     color: #e74c3c;
 }

.form-control:focus,
.form-select:focus {
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.alert {
    border-radius: 0.375rem;
}

.badge {
    font-size: 0.75em;
}

.card.bg-light {
    border: 1px solid #dee2e6;
}

.text-primary {
    color: #0d6efd !important;
}

@media (max-width: 767.98px) {
    .modal-footer {
        flex-direction: column;
        gap: 0.5rem;
    }

    .modal-footer .btn {
        width: 100%;
    }
}
