.realtime-question-image-container {
    margin-top: 1rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.05);
    max-height: 0;
    transition: max-height 0.4s ease-in-out, opacity 0.4s ease-in-out;
    opacity: 0;
}

.realtime-question-image-container.visible {
    max-height: 300px;
    opacity: 1;
}

.realtime-question-image-container img {
    width: 100%;
    max-height: 300px;
    object-fit: contain;
    display: block;
}

.realtime-quiz-image-container {
    margin-bottom: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.05);
    height: 0;
    transition: all 0.5s ease-in-out;
    opacity: 0;
}

.realtime-quiz-image-container.visible {
    height: 200px;
    opacity: 1;
}

.realtime-quiz-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
