/* Clean dock animation with rounded corners and smooth transitions */
#component-dock-container button {
    transform-origin: center center;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 16px !important;
}

#component-dock-container button:hover {
    transform: scale(1.08);
}

/* Adjacent button effects via JavaScript classes */
#component-dock-container .dock-adjacent {
    transform: scale(1.02);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Simple entrance animation */
#component-dock-container button {
    animation: dockSlideIn 0.6s ease-out backwards;
}

#component-dock-container button:nth-child(1) { animation-delay: 0.1s; }
#component-dock-container button:nth-child(2) { animation-delay: 0.2s; }
#component-dock-container button:nth-child(3) { animation-delay: 0.3s; }
#component-dock-container button:nth-child(4) { animation-delay: 0.4s; }
#component-dock-container button:nth-child(5) { animation-delay: 0.5s; }
#component-dock-container button:nth-child(6) { animation-delay: 0.6s; }

@keyframes dockSlideIn {
    from {
        opacity: 0;
        transform: translateX(-50px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}
