<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* mi-filtro-actividades/css/mi-filtro-actividades.css */

.mi-filtro-actividades {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    padding: 15px;
    border-radius: 5px;
    font-family: sans-serif;
}

.mi-filtro-actividades h3,
.mi-filtro-actividades h4 {
    margin-top: 0;
    color: #333;
}

.mi-filtro-actividades ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mi-filtro-actividades ul.taxonomy-list {
    margin-left: 15px; /* IndentaciÃ³n para sub-niveles */
}

.mi-filtro-actividades li {
    margin-bottom: 5px;
    position: relative;
}

.mi-filtro-actividades .term-wrapper {
    display: flex;
    align-items: center;
    gap: 5px; /* Espacio entre el checkbox y la flecha */
}

.mi-filtro-actividades label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 15px;
}

.mi-filtro-actividades label input[type="checkbox"] {
    margin-right: 5px;
}

/* Estilos para el botÃ³n de despliegue */
.mi-filtro-actividades .toggle-children {
    cursor: pointer;
    font-size: 18px; /* TamaÃ±o del dashicon */
    transition: transform 0.2s ease-in-out;
    display: inline-block; /* Para que la transformaciÃ³n funcione */
    line-height: 1; /* AlineaciÃ³n vertical */
    margin-left: 5px; /* Espacio con la label */
    color: #666;
}

/* Rotar la flecha cuando el contenedor de hijos estÃ¡ abierto */
.mi-filtro-actividades .has-children .toggle-children.open {
    transform: rotate(90deg);
}

/* Ocultar inicialmente los tÃ©rminos hijos */
.mi-filtro-actividades .children-terms {
    display: none; /* Esto oculta los hijos por defecto */
    padding-left: 20px; /* Indentar los hijos */
}

.mi-filtro-actividades button {
    margin-top: 10px;
    padding: 8px 15px;
    background-color: #0073aa;
    color: white;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 14px;
}

.mi-filtro-actividades button:hover {
    background-color: #005177;
}

#reset-filters-button {
    background-color: #e0e0e0;
    color: #333;
    margin-left: 10px;
}

#reset-filters-button:hover {
    background-color: #ccc;
}</pre></body></html>