/* humanoid-use-case-generator.css - Tool-specific styles only */

/* Info section three column layout */
.info-section {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px !important;
    margin-top: 50px !important;
}

/* FAQ styles */
.faq-answer {
    display: none;
    padding: 12px 0 12px 20px;
    border-left: 3px solid #3498db;
    margin-top: 8px;
    color: #5a6268;
    line-height: 1.6;
}

.faq-question {
    cursor: pointer;
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: #3498db;
}

/* Progress bar animation */
.progress-bar {
    overflow: hidden;
}

/* Workflow preview styling */
#workflowPreview {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 8px;
}

/* Responsive breakpoints */
@media (max-width: 1024px) {
    .info-section {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .info-section {
        grid-template-columns: 1fr !important;
    }
    
    .output-header {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 15px;
    }
    
    .output-header .action-buttons {
        width: 100%;
        display: flex;
        flex-direction: row !important;
        justify-content: space-between;
        gap: 10px;
    }
    
    .output-header .action-buttons .btn {
        flex: 1;
        margin: 0;
        white-space: nowrap;
        padding: 10px 12px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .output-header .action-buttons {
        flex-direction: column !important;
    }
    
    .output-header .action-buttons .btn {
        width: 100%;
    }
}

/* Print styles for use case reports */
@media print {
    .button-group,
    .action-buttons,
    .info-section {
        display: none !important;
    }
    
    .result-box {
        break-inside: avoid;
        page-break-inside: avoid;
        border: 1px solid #ddd;
        margin-bottom: 15px;
    }
    
    body {
        background: white;
    }
}