/* Interview-Widgets Buttons */
.aca-interview-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin: 20px 0 30px 0;
    padding: 0 20px;
}

.aca-interview-trainer-button,
.aca-ai-briefing-button,
.aca-antwort-architekt-button,
.aca-persoenlichkeit-button,
.aca-praesentation-feedback-button {
    background: #b1632f;
    color: white;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
}

.aca-interview-trainer-button:hover,
.aca-ai-briefing-button:hover,
.aca-antwort-architekt-button:hover,
.aca-persoenlichkeit-button:hover,
.aca-praesentation-feedback-button:hover {
    background: #9a532a;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .aca-interview-widgets {
        grid-template-columns: 1fr;
    }
}

/* Modal Base */
.interview-trainer-modal,
.ai-briefing-modal,
.antwort-architekt-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.75);
    z-index: 999999;
    overflow-y: auto;
}

.interview-trainer-modal.active,
.ai-briefing-modal.active,
.antwort-architekt-modal.active {
    display: block;
}

.modal-content {
    max-width: 900px;
    margin: 30px auto;
    background: white;
    padding: 40px;
    border-radius: 8px;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: #999;
    line-height: 1;
}

.modal-close:hover {
    color: #333;
}

/* Trainer Specific */
.interview-question {
    font-size: 20px;
    line-height: 1.6;
    margin: 30px 0;
    font-weight: 500;
    color: #1a243b;
}

.interview-progress {
    margin: 20px 0;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: #88b441;
    transition: width 0.3s;
}

.collapsible-section {
    border: 1px solid #ddd;
    border-radius: 4px;
    margin: 15px 0;
    padding: 15px;
}

.collapsible-section summary {
    cursor: pointer;
    font-weight: 600;
    user-select: none;
}

.modal-buttons {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 30px;
}

.btn-secondary {
    background: #dfe6e9;
    color: #2d3436;
}

.btn-secondary:hover {
    background: #b2bec3;
}

.btn-primary {
    background: #88b441;
    color: white;
}

.btn-primary:hover {
    background: #759936;
}

/* AI Briefing Specific */
.briefing-preview {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 4px;
    white-space: pre-wrap;
    font-family: monospace;
    font-size: 14px;
    max-height: 500px;
    overflow-y: auto;
    margin: 20px 0;
}

.copy-success {
    color: #88b441;
    font-weight: 600;
}

/* Antwort-Architekt Specific */
.aca-aa-intro {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.6;
}

.aca-aa-how-it-works,
.aca-aa-what-ai-helps {
    margin: 20px 0;
    padding: 15px;
    background: #f5f5f5;
    border-radius: 4px;
}

.aca-aa-how-it-works h3,
.aca-aa-what-ai-helps h3 {
    margin-top: 0;
    font-size: 14px;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 10px;
}

.aca-aa-prompt-preview {
    margin: 20px 0;
}

.aca-aa-prompt-preview textarea {
    width: 100%;
    height: 300px;
    font-family: monospace;
    font-size: 13px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    resize: vertical;
    background: #f9f9f9;
}

.aca-copy-button {
    background: #88b441;
    color: white !important;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
}

.aca-copy-button:hover {
    background: #759936;
}

.aca-copy-button.success {
    background: #88b441 !important;
    color: white !important;
}

.btn-primary.copy-success,
.copy-btn.copy-success {
    background: #88b441 !important;
    color: white !important;
}

.aca-cancel-button {
    background: #dfe6e9;
    color: #2d3436;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
}

.aca-cancel-button:hover {
    background: #b2bec3;
}

.aca-modal-footer {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
}
