#camera-container {
    margin: 0;
    padding: 0;
    background: #000;
}

.thought-bubble {
    position: absolute;
    background: white;
    color: black;
    padding: 15px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    font-family: Arial, sans-serif;
    font-size: 18px;
    pointer-events: none;
    max-width: 250px;
    text-align: center;
    animation: bubblePop 0.4s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.thought-bubble:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 30px;
    border: 10px solid transparent;
    border-top-color: white;
}

@keyframes bubblePop {
    from { transform: scale(0.5); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
.thought-bubble {
    position: absolute;
    background: rgba(255,255,255,0.95);
    color: #000;
    padding: 18px 25px;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    font-family: system-ui, Arial;
    font-size: 22px;
    max-width: 280px;
    text-align: center;
    pointer-events: none;
    z-index: 100;
    transition: all 0.4s ease;
}