.angie-scroll-to-top-afeb9813 {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background-color: #f7ca7a !important; /* Explicitly enforcing the orange color */
    border: none;
    border-radius: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.angie-scroll-to-top-afeb9813:hover {
    transform: translateY(-3px);
    background-color: #f7ca7a !important; /* Explicit override to stop any global red hover colors from applying */
}

.angie-scroll-to-top-afeb9813.is-visible {
    opacity: 1;
    visibility: visible;
}

/* Dots Container - We animate spacing here to expand the triangle */
.angie-dots-container-afeb9813 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-top: -2px;
    transition: gap 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Bottom row of dots - Animate gap here too */
.angie-bottom-dots-afeb9813 {
    display: flex;
    gap: 6px;
    transition: gap 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Individual Dot - Fixed size, no scaling */
.angie-dot-afeb9813 {
    width: 5px;
    height: 5px;
    background-color: #1a1a1a;
    border-radius: 50%;
}

/* Hover Effect: Increase the gap between dots to expand the triangle shape */
.angie-scroll-to-top-afeb9813:hover .angie-dots-container-afeb9813 {
    gap: 8px; /* Increase vertical gap */
}

.angie-scroll-to-top-afeb9813:hover .angie-bottom-dots-afeb9813 {
    gap: 12px; /* Increase horizontal gap */
}