.custom-dropdown {
    position: relative;
    width: 250px;
    font-size: 1rem;
    user-select: none;
    display: inline-block;
}
.dropdown-selected {
    padding: 8px 38px 8px 16px;
    border-radius: 8px;
    border: 1.5px solid #2cacd1;
    background: #fff url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6L8 10L12 6' stroke='%232cacd1' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 12px center/18px 18px;
    color: #0066a1;
    cursor: pointer;
    transition: border 0.2s;
    width: 200px;
}
.dropdown-selected.active, .dropdown-selected:focus {
    border: 1.5px solid #35eb93;
    outline: none;
}
.dropdown-options {
    width: 200px;
    display: none;
    position: absolute;
    left: 0; right: 0; top: 110%;
    background: #fff;
    border: 1.5px solid #2cacd1;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 16px #0002;
    z-index: 10;
    max-height: 220px;
    overflow-y: auto;
}
.dropdown-options .dropdown-option {
    padding: 10px 18px;
    color: #0066a1;
    cursor: pointer;
    transition: background 0.15s;
}
.dropdown-options .dropdown-option:hover,
.dropdown-options .dropdown-option.selected {
    background: #e6fafd;
    color: #2cacd1;
}
@media (max-width: 700px) {
    .custom-dropdown { width: 100%; }
}
.dropdown-options::-webkit-scrollbar { width: 6px; background: #f0f0f0;}
.dropdown-options::-webkit-scrollbar-thumb { background: #b3e5fc; border-radius: 3px;}
#dropdown-options{
    border-radius: 8px;
}
.dropdown-options{
    border-radius: 8px;
}