#live-korrektur-container {
    max-width: 700px;
    margin: 20px auto;
    text-align: center;
    font-family: Arial, sans-serif;
}

#videoElement, #output {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

#videoElement {
    transform: scaleX(-1);
}

#feedback {
    margin-top: 15px;
    font-size: 1.3rem;
    min-height: 1.5em;
    transition: color 0.5s ease;
    font-weight: 600;
}

.feedback-good {
    color: #28a745;
    animation: pulse 2s infinite;
}

.feedback-warning {
    color: #fd7e14;
    animation: pulse 2s infinite;
}

.feedback-bad {
    color: #dc3545;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}
