.pagination-controls {
    text-align: right;
    margin-top: 25px;
    margin-bottom: 25px;
}

.pagination-controls button {
    background-color: #082b34; /* Dark blue from your table header */
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    margin: 0 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s;
}

/* Style for when you hover over an enabled button */
.pagination-controls button:hover:not(:disabled) {
    background-color: #022056; /* Darker blue from your hover effect */
}

/* Style for a disabled button */
.pagination-controls button:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
    opacity: 0.6;
}

/* Style for the "Page X of Y" text */
.pagination-controls span {
    margin: 0 15px;
    font-weight: bold;
    color: #374358; /* Main body text color */
    vertical-align: middle;
}