/* Select2 Custom Styles */

/* Contenedor general */
.select2-container {
    width: 100% !important;
}

.select2-container--default .select2-selection--single {
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    height: auto;
    padding: 0;
}

/* Select2 input con foco */
.select2-container--default.select2-container--focus .select2-selection--single {
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* Texto del select */
.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #212529;
    padding: 0.375rem 0.75rem;
    line-height: 1.5;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #6c757d;
}

/* Arrow/Flecha */
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: auto;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #0073aa transparent transparent transparent;
    border-style: solid;
    border-width: 5px 4px 0 4px;
    height: 0;
    left: 50%;
    margin-left: -4px;
    margin-top: -2px;
    position: absolute;
    top: 50%;
    width: 0;
}

/* Dropdown desplegable */
.select2-container--default .select2-dropdown {
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

/* Fondo del dropdown */
.select2-container--default .select2-dropdown--below {
    border-top: none;
    border-radius: 0 0 0.375rem 0.375rem;
    margin-top: -1px;
}

/* Opciones en el dropdown */
.select2-container--default .select2-results__option {
    color: #212529;
    padding: 0.5rem 0.75rem;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #0073aa;
    color: white;
}

.select2-container--default .select2-results__option[aria-selected="true"] {
    background-color: #e9ecef;
    color: #212529;
}

/* Group labels */
.select2-container--default .select2-results__group {
    color: #6c757d;
    display: block;
    padding: 0.5rem 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    border-bottom: 1px solid #dee2e6;
}

/* Búsqueda dentro del dropdown */
.select2-search--dropdown {
    padding: 0.75rem;
}

.select2-search--dropdown .select2-search__field {
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    color: #212529;
    font-size: 1rem;
    padding: 0.375rem 0.75rem;
}

.select2-search--dropdown .select2-search__field:focus {
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* Sin resultados */
.select2-container--default .select2-results__message {
    color: #6c757d;
    padding: 1rem 0.75rem;
    text-align: center;
}

/* Adaptativo para móvil */
@media (max-width: 768px) {
    .select2-container--default .select2-selection--single {
        min-height: 38px;
    }

    .select2-container--default .select2-selection--single .select2-selection__rendered {
        padding: 0.5rem 0.75rem;
    }

    .select2-dropdown {
        width: 100% !important;
    }
}

/* Integración con Bootstrap */
.filter-group .select2-container {
    margin-top: 0.5rem;
}

.filter-group label + .select2-container {
    margin-top: 0.5rem;
}

/* Deshabilitado */
.select2-container--default.select2-container--disabled .select2-selection--single {
    background-color: #e9ecef;
    cursor: not-allowed;
}

.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__rendered {
    color: #6c757d;
}

/* Clear button (si está habilitado) */
.select2-container--default .select2-selection--single .select2-selection__clear {
    color: #6c757d;
    cursor: pointer;
    float: right;
    font-weight: bold;
    margin-right: 0.75rem;
    padding: 0 0.5rem;
}

.select2-container--default .select2-selection--single .select2-selection__clear:hover {
    color: #212529;
}
