#backToTop {
    opacity: 0.9;
    position: sticky !important; /* Overrides the broken fixed context */
    bottom: 10px !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-left: 15px;
    padding-top: 8px;
    padding-bottom: 8px;
    width: 52px !important;
    display: none;
    border: 1px solid #000;
    color: #ddd;
    background: #333;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9); /* Horizontal, Vertical, Blur, Color */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 900;
    font-size: 22px;
}

    #backToTop:hover {
        color: #fff;
    }
