/* Allgemeine Styles */
.bewerbungsformular-container {
    max-width: 800px;
    margin: 30px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
}

/* Fortschrittsanzeige */
.bewerbungsformular-progress {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.progress-dot {
    width: 15px;
    height: 15px;
    background: #e0e0e0;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.progress-dot.active {
    background: #2196F3;
    transform: scale(1.2);
}

.progress-dot.completed {
    background: #4CAF50;
}

/* Fragen-Slides */
.frage-slide {
    display: none;
    padding: 20px;
    border-radius: 5px;
}

.frage-titel {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.frage-beschreibung {
    margin-bottom: 30px;
    color: #666;
    font-size: 16px;
    line-height: 1.5;
}

/* Antwort-Container */
.antwort-container {
    margin-bottom: 30px;
}

.antwort-button {
    background: #2196F3;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s ease;
}

.antwort-button:hover {
    background: #0b7dda;
}

.antwort-options {
    margin-top: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    padding: 20px;
    background: #f9f9f9;
}

.antwort-type-selector {
    display: flex;
    margin-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 15px;
}

.antwort-type {
    background: #f1f1f1;
    border: none;
    padding: 8px 15px;
    margin-right: 10px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.antwort-type:hover {
    background: #e0e0e0;
}

.antwort-type.active {
    background: #2196F3;
    color: white;
}

/* Antwort-Formulare */
.antwort-form {
    margin-top: 15px;
}

.antwort-text {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    resize: vertical;
    font-family: inherit;
    font-size: 16px;
}

.video-recorder, .audio-recorder {
    margin-bottom: 15px;
}

.recorder-controls {
    margin-top: 10px;
}

.start-recording, .stop-recording {
    background: #f44336;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    margin-right: 10px;
}

.start-recording:hover, .stop-recording:hover {
    background: #d32f2f;
}

.video-upload, .audio-upload {
    margin: 15px 0;
}

/* Navigation Buttons */
.navigation-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.prev-button, .next-button, .submit-all-button {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s ease;
}

.prev-button {
    background: #757575;
}

.prev-button:hover {
    background: #616161;
}

.next-button:hover, .submit-all-button:hover {
    background: #388E3C;
}

/* Abschlussseite */
.bewerbung-complete {
    text-align: center;
    padding: 30px;
}

.bewerbung-complete h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #4CAF50;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .bewerbungsformular-container {
        padding: 15px;
    }
    
    .frage-titel {
        font-size: 20px;
    }
    
    .antwort-type-selector {
        flex-wrap: wrap;
    }
    
    .antwort-type {
        margin-bottom: 10px;
    }
    
    video, audio {
        width: 100%;
        max-width: 100%;
    }
}