/* Estilos para los filtros */
.ec-filtros {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px;
    background: #f5f5f5;
    border-radius: 8px;
}

.ec-filtro {
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    background: white;
    cursor: pointer;
    transition: border-color 0.3s ease;
    min-width: 150px;
}

.ec-filtro:hover,
.ec-filtro:focus {
    border-color: #666;
    outline: none;
}

.ec-boton-filtro {
    padding: 10px 20px;
    background: #0073aa;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.ec-boton-filtro:hover {
    background: #005a87;
}

#ec-limpiar-filtros {
    background: #666;
}

#ec-limpiar-filtros:hover {
    background: #444;
}

/* Responsive */
@media (max-width: 768px) {
    .ec-filtros {
        flex-direction: column;
    }
    
    .ec-filtro,
    .ec-boton-filtro {
        width: 100%;
        min-width: auto;
    }
}