/* Custom Select Search Styles */
span.custom-select-search-container {
    display: block; /* Ensure it behaves like a block */
    border-bottom: 1px solid #eee;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 100; /* Increased z-index */
    border-radius: 12px 12px 0 0;
    width: 100%;
    box-sizing: border-box;
}

.custom-select-search-input {
    width: 100% !important;
    padding: 8px 12px;
    border: 1px solid #ddd !important;
    font-size: 14px;
    outline: none;
    height: 40px !important;
    background: white !important;
    color: #333;
    box-shadow: none !important;
    display: block;
    margin-bottom: 0 !important;
    border-radius: 30px !important;
}

.custom-select-search-input:focus {
    border-color: #f05271 !important;
    background: #fff !important;
}

/* Ensure options container handles scrolling properly with sticky search */
.custom-select .options,
.custom-dropdwon .options,
.filter-dropdown .filter-dropdown-menu {
    overflow-y: auto;
}

.custom-select-search-hidden {
    display: none !important;
}
