/* Custom Select Dropdown Styles */

.custom-select {
    position: relative;
    width: 100%;
}

.select-popup {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 300px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none;
    margin-top: 2px;
}

.select-popup.active {
    display: block;
}

.search-container {
    padding: 8px;
    border-bottom: 1px solid #eee;
}

.search-input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.search-results {
    max-height: 230px;
    overflow-y: auto;
}

.search-result-item {
    padding: 8px 12px;
    cursor: pointer;
}

.search-result-item:hover {
    background-color: #f5f5f5;
}

.search-result-item.selected {
    background-color: #e0f0ff;
    font-weight: bold;
}

.no-results, .loading {
    padding: 12px;
    text-align: center;
    color: #888;
}

.custom-select .close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 1rem;
    height: 1rem;
    background-image: url(../image/close.png);
    opacity: .7;
    cursor: pointer;
    z-index: 10;
}
