/* ============ CONTENEDOR ============ */
.pagination-minimal {
    display: flex;
    gap: 0.4rem;
    justify-content: center;
    align-items: center;
    margin: 1.5rem 0;
    font-family: inherit;
}

/* ============ ELEMENTOS ============ */
.pagination-minimal a,
.pagination-minimal span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
}

/* Números y flechas */
.pagination-minimal a {
    background: #f4f6f9;
    color: #475569;
    border: 1px solid #e5e7eb;
}

.pagination-minimal a:hover {
    background: #e5f3ff;
    border-color: #93c5fd;
    transform: translateY(-2px);
}

/* Número actual */
.pagination-minimal .active {
    background: #2563eb;
    color: white;
    border: 1px solid #1d4ed8;
    cursor: default;
    box-shadow: 0 0 10px rgba(37, 99, 235, 0.3);
}

/* Deshabilitados */
.pagination-minimal .disabled {
    background: #f1f1f1;
    color: #a1a1aa;
    border: 1px solid #e4e4e7;
    opacity: 0.6;
    cursor: not-allowed;
}

/* Animación sutil */
.pagination-minimal a {
    position: relative;
    overflow: hidden;
}

.pagination-minimal a::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.pagination-minimal a:hover::after {
    transform: translateX(100%);
}
