/* Buscador dentro de .dropdown-rounded, fuera de options */
.select2-custom .dropdown-search {
    display: none;
    width: 95%;
    margin: 8px 10px 0 10px;
    padding: 8px 10px 8px 32px;
    background: #fff url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="%23999" stroke-width="2" viewBox="0 0 24 24"><circle cx="11" cy="11" r="7"/><line x1="16.65" y1="16.65" x2="22" y2="22"/></svg>') no-repeat 4px center;
    background-size: 19px;
    border-radius: 5px;
    border: 1px solid #ddd;
    font-size: 12px;
    box-sizing: border-box;
    z-index: 200;
    opacity: 0;
    transform: translateY(-15px);
    transition: all 0.3s ease;
    pointer-events: none;
    visibility: hidden;
}

.select2-custom .dropdown-search.is-visible {
    display: inline-block !important;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    visibility: visible;
}

.select2-custom .dropdown-search:focus {
    border: 1px solid #f8660c !important;
    outline: none !important;
}

.select2-custom .dropdown-rounded.is-open .dropdown-rounded-options {
    top: 95px;
    padding-top: 0px !important;
}

.select2-custom .dropdown-rounded.is-open.dropdown-square::before {
    height: 250px;
    max-height: 250px;
}

.select2-custom .dropdown-rounded-options .hidden{
    display: none;
}



