/* Feedback Flash inside the game container */
#bartender-game {
    /* Add transition for the box-shadow property */
    transition: box-shadow 0.9s ease-out; /* Extended duration */
    /* Ensure the shadow doesn't get cut off */
    overflow: hidden;
}
#bartender-game.flash-active.flash-correct {
    box-shadow: inset 0 0 30px 20px rgba(40, 167, 69, 0.85); /* More intense green glow */
}
#bartender-game.flash-active.flash-incorrect {
    box-shadow: inset 0 0 30px 20px rgba(220, 53, 69, 0.85); /* More intense red glow */
}