/* --- PAGINATION STYLING --- */
.pagination-container {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.page-btn,
.page-num {
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: inherit;
    padding: 0;
    transition: all 0.2s ease;
}

.page-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #000;
    font-size: 16px;
    font-weight: 400;
}

.page-num:hover:not(.active) {
    background-color: #e2e8f0;
}

.page-num.active {
    background-color: #ede9fe;
    /* Light purple circle */
    color: #6d28d9;
    /* Deep purple text */
    font-weight: 500;
}

.page-btn {
    color: #4b5563;
    /* Dark gray for active arrows */
    width: 34px;
    height: 34px;
    border-radius: 50%;
}

.page-btn:hover:not(.disabled) {
    background-color: #e2e8f0;
}

.page-btn.disabled {
    color: #cbd5e1;
    /* Light gray for disabled arrows */
    cursor: not-allowed;
}

.page-btn svg {
    width: 20px;
    height: 20px;
}