.visualization-container {
    flex-wrap: nowrap;
    flex-direction: column;
}

.scene {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 1.5rem 1rem 0.5rem;
    position: relative;
    gap: 0.5rem;
}

.zone {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 84px;
}

.scene .viz-badge {
    width: 64px;
    height: 64px;
    border-radius: 16px;
}

.scene .viz-badge svg {
    width: 30px;
    height: 30px;
}

.scene .viz-connector {
    width: 56px;
    margin-top: -1.8rem;
}

#waiter {
    transition: transform 0.5s ease-in-out;
    position: relative;
    z-index: 10;
}

.order-bubble {
    position: absolute;
    top: -16px;
    right: -34px;
    background: #fff;
    color: #000;
    padding: 4px 8px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: bold;
    opacity: 0;
    white-space: nowrap;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 11;
}

.status-msg {
    margin-top: 1rem;
    color: var(--text-muted);
    font-style: italic;
    height: 1.5rem;
}

/* Animations */
/* We will control Waiter position with Javascript transforms for the sequence */