#backToTop {
    opacity: 0.9;
    position: sticky !important; /* Overrides the broken fixed context */
    bottom: 18px !important;
    left: 100%; /* Pushes it to the far right side of its container */
    margin-right: 8px;
    transform: translate(-18px, -8px); /* Adjusts the final pixel alignment */
    z-index: 100;
    padding: 7px 8px 8px 8px;
    width: 52px !important;
    display: none;
    border-width: 2px;
    border-style: solid;
    border-color: rgb(7, 100, 157);
border-radius: 8px;
    color: rgb(7, 100, 157);
    background: #111;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 900;
    font-size: 22px;
}

    #backToTop:hover {
        border-color: #00aadd;
        color: #00aadd;
    }
