/* 
 * Módulo: Listado de Cursos EXF
 * Los estilos principales se heredan del plugin exf-formacion.
 */
.wpcd-editor-placeholder {
    opacity: 0.8;
}

/* Paginación Estética */
.exf-course-list-wrapper .exf-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.exf-course-list-wrapper .exf-pagination .page-numbers {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    background-color: #f8f9fa;
    color: #495057;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s ease;
    border: 1px solid #e9ecef;
}

.exf-course-list-wrapper .exf-pagination .page-numbers:hover {
    background-color: #e9ecef;
    color: #212529;
}

.exf-course-list-wrapper .exf-pagination .page-numbers.current {
    background-color: #2d3e50; /* Color oscuro alineado con el botón de "Ver curso" */
    color: white;
    border-color: #2d3e50;
}

.exf-course-list-wrapper .exf-pagination .page-numbers.next,
.exf-course-list-wrapper .exf-pagination .page-numbers.prev {
    background-color: transparent;
    border: none;
    color: #2d3e50;
    font-weight: 600;
}

.exf-course-list-wrapper .exf-pagination .page-numbers.next:hover,
.exf-course-list-wrapper .exf-pagination .page-numbers.prev:hover {
    background-color: rgba(45, 62, 80, 0.1);
    color: #1a252f;
}
