/* Follow-up Questions Container */
.followup-questions-container {
    margin: 20px 0;
    padding: 16px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid var(--border-secondary);
    border-radius: 12px;
    box-shadow: 0 4px 6px var(--shadow-primary);
}

.followup-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-secondary);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.followup-header i {
    color: var(--accent-warning);
    font-size: 16px;
}

.followup-questions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 10px;
}

.followup-question-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-secondary);
    border-radius: 8px;
    color: var(--text-tertiary);
    font-size: 13px;
    font-weight: 400;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
    min-height: 50px;
}

.followup-question-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--border-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px var(--shadow-primary);
}

.followup-question-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px var(--shadow-primary);
}

.followup-question-btn i {
    color: var(--accent-primary);
    font-size: 14px;
    flex-shrink: 0;
}

.followup-question-btn span {
    flex: 1;
    line-height: 1.4;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .followup-questions-grid {
        grid-template-columns: 1fr;
    }

    .followup-question-btn {
        font-size: 12px;
        padding: 10px 14px;
    }
}

/* Animation for when questions appear */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.followup-questions-container {
    animation: fadeInUp 0.4s ease-out;
}

.followup-question-btn {
    animation: fadeInUp 0.4s ease-out;
    animation-fill-mode: both;
}

.followup-question-btn:nth-child(1) { animation-delay: 0.1s; }
.followup-question-btn:nth-child(2) { animation-delay: 0.2s; }
.followup-question-btn:nth-child(3) { animation-delay: 0.3s; }
.followup-question-btn:nth-child(4) { animation-delay: 0.4s; }
.followup-question-btn:nth-child(5) { animation-delay: 0.5s; }

/* Special styling for "Fakten Checks" button */
.fakten-checks-btn {
    background: linear-gradient(135deg, rgba(175, 162, 76, 0.25) 0%, rgba(175, 162, 76, 0.15) 100%);
    border: 1px solid var(--accent-primary);
    grid-column: -1; /* Position on the right */
    margin-left: auto;
}

.fakten-checks-btn:hover {
    background: linear-gradient(135deg, rgba(186, 168, 80, 0.45) 0%, rgba(190, 162, 80, 0.25) 100%);
    border-color: var(--accent-primary-hover);
}

.fakten-checks-btn i {
    color: var(--accent-primary);
}
