/* Select2 Custom Styling para Crafto */
.select2-container--default .select2-selection--single {
    height: 50px;
    border: 1px solid #e4e4e4;
    border-radius: 4px;
    padding: 10px 15px;
    font-size: 15px;
    font-weight: 400;
    color: #262b35;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 28px;
    padding-left: 0;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 48px;
    right: 10px;
}

.select2-dropdown {
    border: 1px solid #e4e4e4;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.select2-search--dropdown .select2-search__field {
    border: 1px solid #e4e4e4;
    border-radius: 4px;
    padding: 8px 12px;
    font-size: 14px;
}

.select2-results__option--highlighted[aria-selected] {
    background-color: #8cc63f !important;
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: #f7f7f7;
}

/* Ajuste para el ancho */
.select2-container {
    width: 100% !important;
}

/* ===== Select2 multiple (colores) ===== */
.select2-container--default .select2-selection--multiple {
    height: 50px;
    overflow: hidden;
    border: 1px solid #e4e4e4;
    border-radius: 4px;
    padding: 0;
    position: relative;
    cursor: pointer;
    box-sizing: border-box;
}

/* Contenedor interno: flex centrado verticalmente, una sola fila */
.select2-container--default .select2-selection--multiple .select2-selection__rendered {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 4px;
    padding: 0 38px 0 15px;
    height: 50px;
    overflow: hidden;
    box-sizing: border-box;
    margin: 0;
}

/* Placeholder centrado */
.select2-container--default .select2-selection--multiple .select2-selection__placeholder {
    color: #999;
    font-size: 15px;
    font-weight: 400;
    line-height: 1;
    flex-shrink: 0;
}

/* Flecha falsa a la derecha */
.select2-container--default .select2-selection--multiple::after {
    content: '';
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #888;
    pointer-events: none;
}

/* Botón limpiar todo (×) */
.select2-container--default .select2-selection--multiple .select2-selection__clear {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #aaa;
    cursor: pointer;
    line-height: 1;
}

/* Tags de colores seleccionados */
.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #8cc63f;
    border: none;
    border-radius: 3px;
    color: #fff;
    font-size: 12px;
    padding: 3px 8px 3px 6px;
    margin: 0;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 4px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: rgba(255,255,255,0.8);
    font-weight: 700;
    order: -1;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
    color: #fff;
}

/* Input de búsqueda inline — oculto (no lo necesitamos) */
.select2-container--default .select2-selection--multiple .select2-search--inline {
    display: none;
}

/* Estado abierto */
.select2-container--default.select2-container--open .select2-selection--multiple {
    border-color: #8cc63f;
}