 .container {
    max-width: 100%;
    padding: 0.5px 16px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.custom-dropdown {
    position: relative;
    margin-top: 15px;
}
    
.custom-dropdown-select {
    background-color: #000;
    color: #fff;
    border: 2px solid #fff; 
    padding: 1px;
    width: 100%;
    border-radius: 12px;
    font-size: 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
    box-sizing: border-box;
    outline: none;
}

.custom-dropdown-select:hover,
.custom-dropdown-select:focus {
    border-color: #FFFFF0; 
}

.custom-dropdown-select.active {
    border-color: #f50511; 
}

.custom-dropdown-text {
    margin-right: 6px;
}
.custom-dropdown-icon {
    font-size: 22px;
    color: #f50511;
}

 .custom-dropdown-options {
    background-color: #000;
    color: #fff;
    border-radius: 8px;
    margin-top: 5px;
    overflow: hidden;
    z-index: 1000;
    display: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    box-sizing: border-box;
} 

.custom-dropdown-option {
    display: flex;
    align-items: center;
    justify-content: center; /* Centrado horizontal */
    padding: 8px 12px;
    font-size: 16px;
    cursor: pointer;
    color: #fff;
    border: 1px solid #fff; /* Borde blanco restaurado */
    border-radius: 12px;
    margin: 4px; /* Espacio para que se vean los bordes */
    transition: all 0.2s ease;
    outline: none;
    box-sizing: border-box;
}

.custom-dropdown-option:hover,
.custom-dropdown-option:focus {
    border-color: #f50511; /* Borde rojo al resaltar */
    background-color: #f50511; /* Mantenemos el fondo rojo para coherencia con el header */
}

/* Opción actualmente seleccionada */
.custom-dropdown-option.selected {
    border-color: #f50511;
    color: #f50511;
    background-color: rgba(245, 5, 17, 0.1);
}

.custom-dropdown-option.selected i {
    color: #f50511;
}

/* Estilo para los iconos dentro de las opciones */
.custom-dropdown-option i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
    color: #fff;
}
