/* custom-bootstrap-select.css */

/* Dropdown button */
.bootstrap-select .dropdown-toggle {
    display: inline-block;
    width: 100%;
    text-align: left;
    background-color: #ffffff; /* White background to match form inputs */
    border: 1px solid #29b1fd; /* Light blue border to align with the theme */
    border-radius: 5px; /* Rounded corners to match inputs */
    padding: 12px 20px; /* Padding similar to your inputs */
    color: #010101; /* Dark text color to maintain readability */
    font-size: 18px; /* Match input font size */
    line-height: 20px;
}

/* Dropdown menu */
.bootstrap-select .dropdown-menu {
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid #29b1fd; /* Light blue border */
    border-radius: 5px; /* Rounded corners */
    background-color: #ffffff; /* White background */
    padding: 0;
    margin: 0;
}

/* Dropdown items */
.bootstrap-select .dropdown-menu li {
    padding: 12px 20px; /* Similar padding to the button */
    cursor: pointer;
    color: #010101; /* Dark text color for readability */
}

/* Hover state for dropdown items */
.bootstrap-select .dropdown-menu li:hover {
    background-color: #f7f7f7; /* Light gray background on hover */
}

/* Caret icon */
.bootstrap-select .caret {
    float: right;
    margin-top: 8px; /* Vertically centers the caret */
}

/* Selected option text */
.bootstrap-select .filter-option {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    width: calc(100% - 20px);
}
