﻿body::-webkit-scrollbar {
    width: 10px; /* width of the entire scrollbar */
}

body::-webkit-scrollbar-track {
    background: #ffffff; /* color of the tracking area */
}

body::-webkit-scrollbar-thumb {
    background-color: #8d55fd; /* color of the scroll thumb */
    border-radius: 20px; /* roundness of the scroll thumb */
    border: 3px solid #ffffff;
    /* creates padding around scroll thumb */
}
 
.seo-content {
    /* Hidden but crawlable */
    height: 0;
    overflow: hidden;
} 
