/* Custom CSS for Employee Care Page */

/* Contacts Dropdown Styling */
#category-contacts-container {
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive styling for mobile devices */
@media (max-width: 768px) {
    #category-contacts-container {
        padding: 10px !important;
        font-size: 14px;
    }
    
    #category-contact-select {
        font-size: 14px !important;
    }
}

/* Contact details display styling */
#contact-details-display {
    line-height: 1.6;
}

/* Form styling improvements */
.form-check-inline {
    margin-right: 15px;
}

.form-check-input:checked + .form-check-label {
    font-weight: 600;
    color: #0d6efd;
}
