@charset "utf-8";
/* CSS Document */

.pagination {
    text-align: center;
    margin: 20px 0;
}

.pagination a.button {
    display: inline-block;
    padding: 8px 14px;
    margin: 0 4px;
    background-color: #eee;
    color: #333;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.pagination a.button:hover {
    background-color: #ccc;
}

.pagination a.button.active {
    background-color: #00DCFF;
    color: white;
    font-weight: bold;
}
