.vd-pagination {
    display: flex;
    justify-content: center;
    margin: 20px 0;
    gap: 10px;
}

.vd-pagination .vd-page {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    text-decoration: none;
    color: #329a23;
    font-weight: bold;
    transition: transform 0.2s, box-shadow 0.2s;
}

.vd-pagination .vd-page:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.vd-pagination .vd-page.vd-active {
    background: #329a23;
    color: #ffffff;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}
