.pagination {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.pagination .steps {
    display: flex;
    gap: 8px;
}

.pagination a {
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 8px;
    background-color: whitesmoke;
    color: #333;
    transition: all 0.2s ease;
}

.pagination a:hover {
    background-color: #007bff;
    color: white;
}

.pagination .current {
    font-weight: bold;
    color: #555;
}

.pagination .current {
    background-color: #e9ecef;
    padding: 6px 12px;
    border-radius: 8px;
}