﻿/* Ensure Paginator is visible and styled */
.ms-Paginator-root {
    display: flex !important;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
}

.ms-Paginator-pageNumber {
    margin: 0 4px;
}

.ms-Paginator-button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    color: #007bff; /* Blue for arrows */
    padding: 0 4px;
}

    .ms-Paginator-button:disabled {
        color: #ccc;
        cursor: not-allowed;
    }

.ms-Paginator-pageInfo {
    font-size: 14px;
    color: #333;
}

/* Make arrows larger */
.ms-Paginator-button svg {
    width: 20px;
    height: 20px;
}
