 .custom-select {
    position: relative;
    width: 100%;
    /* min-width: 200px;  */
   
}
.custom-select .selected {
    padding: 10px;
    border: 1px solid #ccc;
    cursor: pointer;
    display: flex;
    align-items: center;
    position: relative;
    background-color: white;
    height: 40px;
}
.custom-select .selected img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}
.custom-select .selected::after {
    content: '▼';
    position: absolute;
    right: 10px;
    transition: transform 0.3s ease;
}
.custom-select .selected.open::after {
    content: '▼';
    transform: rotate(180deg);
}
.custom-select .options {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    border: 1px solid #ccc;
    background: #fff;
    z-index: 10;
    max-height: 200px; /* Fixed height for scrollable area */
    overflow-y: auto; /* Enable vertical scrolling */
    transition: max-height 0.3s ease-in-out;
}
.custom-select .options.open {
    display: block;
    max-height: 200px; /* Match max-height for smooth animation */
}
.custom-select .option {
    padding: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: background-color 0.2s ease, color 0.2s ease;
}
.custom-select .option img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}
.custom-select .option:hover {
    background-color: #007bff; /* Blue background on hover */
    color: #fff; /* White text on hover for contrast */
}