body {
    margin: 0;
    font-family: Arial, sans-serif;
    position: relative;
}

.scroll-circle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%; /* Circle shape */
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #0168B5; /* Text color */
    font-size: 15px;
    font-weight: 500;
    background: transparent; /* Transparent background */
    z-index: 10; /* Bring to front */
    cursor: pointer;
    opacity: 0.7;
}

.scroll-circle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%; /* Circle shape */
    background: var(--circle-gradient, conic-gradient(#0168B5 0deg, #0168B5 360deg));
    -webkit-mask: radial-gradient(circle, transparent 62%, rgba(0, 0, 0, 0.8) 49%, black 50%);
    mask: radial-gradient(circle, transparent 62%, rgba(0, 0, 0, 0.8) 49%, black 50%);
    z-index: -1; /* Place behind content */
}

.scroll-circle .arrow {
    /*
    display: inline-block;
    transform: rotate(-90deg);*/ /* Nach oben rotieren */
    font-size: 0;
    text-indent: -9999px;
    background-image: url(/wp-content/plugins/scrollcircle-to-top/images/toparrow.png);
    background-repeat: no-repeat;
    width: 12px;
    height: 14px;
    background-size: cover;    
}
