.pagination {
    margin: 30px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    font-family: 'Arial', sans-serif;
}

.pagination button {
    padding: 10px 20px;
    font-size: 1em;
    font-weight: bold;
    color: #00e0ff;
    background-color: #1a1a2e;
    border: 2px solid #00e0ff;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 224, 255, 0.5);
}

.pagination button:hover:not([disabled]) {
    color: #ff00c8;
    border-color: #ff00c8;
    box-shadow: 0 0 20px rgba(255, 0, 200, 0.7);
    transform: scale(1.05);
}

.pagination button[disabled] {
    color: #888;
    border-color: #444;
    background-color: #2a2a3e;
    box-shadow: none;
    cursor: not-allowed;
}

.page-numbers {
    font-size: 1.2em;
    color: #444;
    font-weight: bold;
    text-shadow: 0 0 5px #fff;
}