/**
 * Custom overrides to fix specific issues
 */

/* DataTables export button overrides - fixed text color */
.dt-button,
.dt-button:hover,
.dt-button:focus,
.dt-button:active,
.buttons-excel,
.buttons-excel:hover,
.buttons-excel:focus,
.buttons-excel:active {
    background-color: white !important;
    color: #1976d2 !important;
    border-color: #1976d2 !important;
    border-width: 1px !important;
    border-style: solid !important;
}

.dt-button span,
.buttons-excel span {
    color: #1976d2 !important;
}

/* Target by full selector path */
#DataTables_Table_0_wrapper div.dt-buttons a.dt-button {
    background-color: white !important;
    color: #1976d2 !important;
    border-color: #1976d2 !important;
}

#DataTables_Table_0_wrapper div.dt-buttons a.dt-button span {
    color: #1976d2 !important;
}

/* Target specific inline styles */
span[style*="color: black"] {
    color: #1976d2 !important;
}

/* Select2 items need better contrast */
.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #1976d2 !important;
    border-color: #1976d2 !important;
    color: white !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: white !important;
}