div.wpg-autoscroll-buttons-wrap {
    position: fixed;
    top: 50%; /* Center vertically */
    left: 20px; /* Move to the left side */
    transform: translateY(-50%); /* Adjust for perfect vertical centering */
    z-index: 9999999;
    display: flex;
    flex-direction: column; /* Stack buttons vertically */
    align-items: flex-start; /* Ensure buttons align properly */
    padding: 10px; /* Add padding for better clickability */
}

div.wpg-autoscroll-buttons-wrap div.wpg-autoscroll-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #6369d1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0px 0px 5px #6369d1;
    animation-duration: 0.5s;
    margin-bottom: 10px; /* Add spacing between buttons */
    border: none; /* Ensure no border shows up */
}

div.wpg-autoscroll-buttons-wrap div.wpg-autoscroll-button svg:not(.wpg-progress-circle) {
    width: 80%;
    height: 80%;
    fill: #f2f3fa;
    pointer-events: none;
}

div.wpg-autoscroll-buttons-wrap div#wpg-autoscroll-stop-button {
    margin: 0; /* Reset any unwanted margins */
}

div.wpg-autoscroll-buttons-wrap div#wpg-autoscroll-speed-button {
    display: flex;
    flex-direction: column;
    align-items: center;
}

div.wpg-autoscroll-buttons-wrap div#wpg-autoscroll-speed-button svg {
    width: 60%;
    height: 60%;
}

div.wpg-autoscroll-buttons-wrap div#wpg-autoscroll-speed-button span {
    color: #f2f3fa;
    font-size: 11px;
    font-family: sans-serif;
    pointer-events: none;
    line-height: 0;
}
