/**
 * Dynamic Content Selector - Estilos CSS
 * 
 * Estilos para el widget de selector de contenido dinámico
 */

/* Contenedor del widget */
.dynamic-content-selector-widget {
    margin-bottom: 20px;
}

/* Título del selector */
.dynamic-content-selector-title {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

/* Estilo del dropdown */
.dynamic-content-selector-dropdown {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
    transition: all 0.3s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="6" viewBox="0 0 12 6"><path fill="%23333" d="M0 0l6 6 6-6z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 10px;
}

/* Estilo al pasar el cursor */
.dynamic-content-selector-dropdown:hover {
    border-color: #aaa;
}

/* Estilo al enfocar */
.dynamic-content-selector-dropdown:focus {
    outline: none;
    border-color: #2271b1;
    box-shadow: 0 0 0 1px #2271b1;
}

/* Estilo para las opciones del dropdown (cuando sea posible) */
.dynamic-content-selector-dropdown option {
    padding: 10px;
}

/* Regla para ocultar contenido por defecto */
[class*=opcion_] {
    display: none;
}