/* --- 1. DEFAULT / ENABLED STATE (White Background) --- */
/* Target the input container and the actual input text box */
div.RadComboBox .rcbInputCell,
div.RadComboBox .rcbInputCell INPUT.rcbInput {
background-color: white !important;
background-image: none !important; /* Clears any built-in gradient sprites */
opacity: 1 !important;
}
/* --- 2. DISABLED STATE (Gray Background) --- */
/* When Telerik disables the control, it adds the .rcbDisabled class to the wrapper */
div.RadComboBox_disabled .rcbInputCell,
div.RadComboBox .rcbDisabled .rcbInputCell,
div.RadComboBox .rcbDisabled .rcbInputCell INPUT.rcbInput {
background-color: #f0f0f0 !important;
background-image: none !important;
color: black !important;
/* Override browser-specific disabled text dimming */
-webkit-text-fill-color: #000000 !important;
opacity: 1 !important;
/* Remove any text-shadows Telerik skins might use to create a "recessed" look */
text-shadow: none !important;
}