.ms-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 50px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.ms-page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    color: #555;
    border: 1px solid #e5e5e5;
    border-radius: 0;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    font-family: 'Manrope', 'Open Sans', 'Arial', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none !important;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}

.ms-page-link:hover:not(.active):not(.disabled) {
    border-color: #363685;
    color: #363685;
    background-color: #f5f5ff;
}

.ms-page-link.active {
    background-color: #363685;
    color: #fff;
    border-color: #363685;
    pointer-events: none;
}

.ms-page-link.disabled {
    opacity: 0.5;
    pointer-events: none;
    background: #f9f9f9;
    color: #ccc;
    border-color: #eee;
}