/* Custom styles for readonly fields */
input[readonly], textarea[readonly], select[disabled] {
    background-color: #e9ecef !important;
    opacity: 1;
}

/* Specifically for date pickers with readonly */
.date_flatpicker[readonly] {
    background-color: #e9ecef !important;
    cursor: not-allowed !important;
}

/* Ensure readonly fields have appropriate styling on focus */
input[readonly]:focus, textarea[readonly]:focus {
    box-shadow: none !important;
    border-color: #ced4da !important;
}