#skip-to-top-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    z-index: 9999;
    transition: all 0.3s ease;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#skip-to-top-button:hover {
    transform: scale(1.1);
}

#skip-to-top-arrow {
    width: 0;
    height: 0;
    transition: all 0.3s ease;
}

/* Triangle arrow (default) */
#skip-to-top-button.triangle #skip-to-top-arrow {
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 12px solid #ffffff;
}

/* Chevron arrow */
#skip-to-top-button.chevron #skip-to-top-arrow {
    width: 16px;
    height: 16px;
    border-top: 3px solid #ffffff;
    border-right: 3px solid #ffffff;
    transform: rotate(-45deg);
    margin-top: 7px;
}

/* Arrow symbol */
#skip-to-top-button.arrow #skip-to-top-arrow {
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 8px solid #ffffff;
    position: relative;
    margin-top: -10px;
}

#skip-to-top-button.arrow #skip-to-top-arrow::after {
    content: '';
    position: absolute;
    top: 8px;
    left: -2px;
    width: 4px;
    height: 10px;
    background-color: #ffffff;
}

/* Responsive design */
@media (max-width: 768px) {
    #skip-to-top-button {
        width: 45px;
        height: 45px;
        bottom: 15px;
        right: 15px;
    }
    
    #skip-to-top-button.triangle #skip-to-top-arrow {
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-bottom: 10px solid #ffffff;
    }
    
    #skip-to-top-button.chevron #skip-to-top-arrow {
        width: 14px;
        height: 14px;
        border-width: 2px;
    }
    
    #skip-to-top-button.arrow #skip-to-top-arrow {
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-bottom: 7px solid #ffffff;
    }
}