/* Selector de Ciudades Premium */
.city-selector-container {
    position: relative;
    width: 100%;
}

.searchable-select {
    position: relative;
    width: 100%;
}

.select-dropdown {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    max-height: 250px;
    overflow-y: auto;
    z-index: 10000;
    display: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    animation: slideDownCity 0.2s ease-out;
}

@keyframes slideDownCity {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.select-dropdown.active {
    display: block;
}

.dropdown-item {
    padding: 12px 18px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f5f5f5;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background: #f0f7ff;
    padding-left: 22px;
}

.dropdown-item .city-name {
    font-weight: 600;
    color: #333;
}

.dropdown-item .dep-name {
    font-size: 0.8rem;
    color: #888;
}

.dropdown-item:hover .city-name {
    color: #3483fa;
}

/* Personalización del Scroll */
.select-dropdown::-webkit-scrollbar {
    width: 6px;
}

.select-dropdown::-webkit-scrollbar-track {
    background: transparent;
}

.select-dropdown::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 10px;
    appearance: none;
}

.select-dropdown::-webkit-scrollbar-thumb:hover {
    background: #ccc;
}