#ReflexBotContainer {
    width: 200px;
    height: 200px;
    margin: 20px auto;
    cursor: pointer;
}

#ReflexBotContainer svg {
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
}

#ReflexBotContainer:hover svg {
    transform: scale(1.1);
    filter: drop-shadow(0 0 20px rgba(0, 170, 255, 0.5));
}

/* Add a subtle pulse animation for focus mode */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

#ReflexBotContainer.focus-mode svg {
    animation: pulse 2s infinite;
}