/* Selected value styling */
#xirr_table .Select-control {
    font-family: 'Arial';
    font-size: 14px;
    color: #050505; /* Selected text colour */
}

/* Selected value label only */
#xirr_table .Select-value-label {
    color: #0066cc !important; /* Blue selected value */
}

/* Dropdown list container */
#xirr_table .Select-menu-outer {
    background-color: white; /* Background of dropdown list */
    font-family: 'Arial';
    border: 1px solid #ccc;
}

/* Each option in dropdown */
#xirr_table .Select-option {
    color: #111111; /* Text colour */
    font-size: 14px;
    padding: 6px 10px;
}

/* Hover effect for options */
 #xirr_table .Select-option.is-focused {
    background-color: #f0f8ff; /* Light blue hover */
    color: #000;
}

/* Selected option in menu */
#xirr_table .Select-option.is-selected {
    background-color: #0066cc;
    color: white;
}
