.button-top {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgb(20, 20, 20);
    border: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 0px 0px 4px rgba(180, 160, 255, 0.253);
    cursor: pointer;
    transition-duration: 0.3s;
    overflow: hidden;
    position: relative;
    box-shadow: 0px 0px 0px 4px rgba(180, 160, 255, 0.253);
    transition: box-shadow 0.3s ease;
}

.button-top:hover {
    box-shadow: 0px 0px 10px 4px rgba(180, 160, 255, 0.5);
}

.svgIcon {
    width: 22px;
    height: 22px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease;
}

.svgIcon path {
    fill: white;
}