.paginador {
    display: flex;
    gap: 4px; /* menos espacio entre botones */
    align-items: center;
    justify-content: center;
    margin: 10px 0;
}

.page-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;   /* antes 38px */
    height: 28px;      /* antes 38px */
    font-size: 12px;   /* texto más pequeño */
    border: 1px solid #28a745;
    border-radius: 4px; /* ligeramente más compacto */
    text-decoration: none;
    color: #28a745;
    font-weight: 500;
    transition: all 0.2s ease;
}

.page-btn:hover {
    background-color: #28a745;
    color: white;
}

.page-btn.active {
    background-color: #1e7e34;
    color: white;
    border-color: #1e7e34;
}

.dots {
    padding: 0 4px;
    font-size: 12px;
    color: #777;
    font-weight: bold;
}