#easy-auto-anchors-root {
    position: fixed;
    right: 0;
    bottom: var(--eaa-bottom, 80px);
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 9999;
}

.eaa-anchor {
    background: var(--eaa-bg, #111);
    color: var(--eaa-text, #fff);
    padding: var(--eaa-pad, 12px);
    border-radius: var(--eaa-radius, 10px) 0 0 var(--eaa-radius, 10px);
    text-decoration: none;
    font-size: var(--eaa-font, 14px);
    max-width: 240px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.eaa-anchor:hover {
    background: var(--eaa-hover, #333);
}

.eaa-toggle {
    position: fixed;
    right: 0;
    bottom: 80px;
    background: #111;
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 10px 0 0 10px;
    cursor: pointer;
    z-index: 10000;
}

@media (max-width: 767px) {
    #easy-auto-anchors-root.eaa-mobile-collapsed {
        display: none;
    }
    #easy-auto-anchors-root.open {
        display: flex;
    }
}


.eaa-toggle {
    position: fixed;
    right: 16px;
    bottom: calc(var(--eaa-bottom) + 16px);
    z-index: 9999;
    border: none;
    background: var(--eaa-bg);
    color: var(--eaa-text);
    border-radius: 50%;
    padding: 12px 14px;
    cursor: pointer;
}

@keyframes eaa-bounce {
    0%,20%,50%,80%,100% { transform: translateY(0); }
    40% { transform: translateY(-6px); }
    60% { transform: translateY(-3px); }
}

@keyframes eaa-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1); }
}

@keyframes eaa-shake {
    0%,100% { transform: translateX(0); }
    25% { transform: translateX(-3px); }
    75% { transform: translateX(3px); }
}

.eaa-anim-bounce { animation: eaa-bounce 1.6s infinite; }
.eaa-anim-pulse  { animation: eaa-pulse 1.8s infinite; }
.eaa-anim-shake  { animation: eaa-shake 0.9s infinite; }
