/* -----------------------------
ESTILO DE GRILLA DE QUIZES 
----------------------------- */
.quiz-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 5rem 0;
}

.quiz-category {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    position: relative; /* Para posicionar el status-tag */
}

.active-category {
    border-color: #007bff; /* Tu color principal */
}

.disabled-category {
    background-color: #f7f7f7; /* Gris muy claro */
    border-color: #e0e0e0;
    opacity: 0.7; /* Sutilmente atenuado */
}

.status-tag {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #ffc107; /* Un color que llame la atención (Amarillo/Naranja) */
    color: #333;
    padding: 0.25rem 0.75rem;
    border-radius: 0 8px 0 8px;
    font-weight: 600;
    font-size: 0.8rem;
}

.disabled-item {
    color: #888; /* Texto en gris sutil */
    cursor: not-allowed;
    list-style: none; /* Ocultar el punto de la lista */
    padding-left: 0;
}

/* ------ ESTILO DEL LISTADO ------ */
.quiz-list li[href] {
    /* Estilos para el texto del enlace */
    text-decoration: none;
    color: var(--blue-2); /* Color oscuro */
}