.pagination_yope {
    text-align: right;
    margin-top: 5px;
}

.pagination_yope button {
    font-size: 13px;
    border: 1px solid #d1d5db; /* gris borde */
    color: #6b7280; /* gris texto */
    padding: 6px 10px;
    cursor: pointer;
    border-radius: 4px;
    background-color: #ffffff; /* fondo blanco */
    transition: background-color 0.2s ease, color 0.2s ease;
}

.pagination_yope button:hover:not(:disabled) {
    background-color: #f3f4f6; /* gris hover */
    color: #374151; /* gris más oscuro */
}

.pagination_yope button:disabled {
    background-color: #f9fafb; /* gris claro */
    color: #9ca3af; /* gris deshabilitado */
    cursor: not-allowed;
}

.pagination_yope button.active {
    background-color: #3498db; /* azul de bg-brand-blue */
    color: #ffffff;
    font-weight: bold;
    border-color: #93c5fd; /* azul borde */
}
