.floating-toolbar {
    position: fixed;
    background: #1C1917;
    padding: 6px;
    border-radius: 50px;
    display: flex;
    gap: 4px;
    z-index: 2100;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    animation: popIn 0.15s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes popIn {
    from { opacity: 0; transform: scale(0.9) translateY(5px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.floating-toolbar button {
    background: transparent;
    border: none;
    color: #fff;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.2s;
    padding: 0;
    opacity: 0.6;
}

.floating-toolbar button svg {
    width: 18px;
    height: 18px;
}

.floating-toolbar button:hover {
    background: rgba(255,255,255,0.2);
    opacity: 1;
}

.floating-toolbar button.active {
    background: #fff;
    color: #1C1917;
    opacity: 1;
}
