.angie-scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #051d34 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 5px !important;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 9999;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.angie-scroll-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.angie-scroll-to-top:hover {
    background-color: #031424 !important;
    transform: translateY(-5px) scale(1.05);
}

.angie-scroll-to-top svg {
    width: 24px;
    height: 24px;
}
