/* --- Pagination Controls Styles --- */
#historyPagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    gap: 15px;
}

.pagination-button {
    padding: 15px 25px;
    font-size: 1.3em;
    cursor: pointer;
    background-color: #4CAF50; /* Green */
    color: white;
    border: none;
    border-radius: 10px;
    transition: transform 0.2s, box-shadow 0.2s;
    min-width: 90px;
    box-shadow: 0 5px 10px rgba(76, 175, 80, 0.4);
}

.pagination-button:hover:not(:disabled) {
    background-color: #45a049;
    transform: translateY(-3px);
    box-shadow: 0 7px 12px rgba(76, 175, 80, 0.5);
}

.pagination-button:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
    opacity: 0.7;
    box-shadow: none;
}

#currentPage {
    font-size: 1.1em;
    color: #333;
    font-weight: bold;
    min-width: 60px;
    text-align: center;
}