.pagination-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
}

.pagination-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.pagination-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--blue);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 10px;
}

.pagination-arrow:hover {
    background-color: var(--red);
    transform: translateY(-3px);
}

.pagination-arrow.disabled {
    background-color: #ccc;
    cursor: not-allowed;
    opacity: 0.5;
}

.pagination-numbers {
    display: flex;
    gap: 10px;
    margin: 0 15px;
}

.page-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: var(--light);
    color: var(--dark);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
}

.page-number:hover {
    background-color: var(--light-blue);
}

.page-number.active {
    background-color: var(--blue);
    color: white;
}