/* humanoid-robot-deployment-planner.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;
}

/* ROI box highlight */
#roiBox {
    transition: all 0.3s ease;
}

#roiContent {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* 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 deployment plans */
@media print {
    .button-group,
    .action-buttons,
    .info-section,
    #roiBox .action-buttons {
        display: none !important;
    }
    
    .result-box {
        break-inside: avoid;
        page-break-inside: avoid;
        border: 1px solid #ddd;
    }
    
    body {
        background: white;
    }
}