.pagination {
    display: flex;
    gap: 8px;
    list-style: none;
    justify-content: center;
    padding: 10px 0;
}

.pagination .page-numbers {
    display: inline-block;
    padding: 10px 15px;
    background-color: teal;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.3s ease-in-out;
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
    background-color: #004d4d; /* Darker teal */
    color: white;
}

.pagination .page-numbers.dots {
    background: none;
    color: teal;
}

.pagination .page-numbers.prev,
.pagination .page-numbers.next {
    display: none; /* Hide Previous/Next if no text */
}


.upg-pagination {
    text-align: center;
    margin-top: 20px;
}

