/**
 * metrics_feasability_dashboard.css - Extracted styles for metrics_feasability_dashboard
 * Author: David (davestj)
 * Extracted on: 2025-07-25 21:40:15
 */

/* styles.css - Dashboard styling for funding presentations */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: #f5f7fa;
            color: #2c3e50;
            line-height: 1.6;
        }

        /* Professional header */
        .header {
            background: #2c3e50;
            color: white;
            padding: 2rem;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .header h1 {
            font-size: 2rem;
            margin-bottom: 0.5rem;
        }

        .header p {
            opacity: 0.9;
            font-size: 1.1rem;
        }

        /* KPI cards section */
        .kpi-section {
            padding: 2rem;
            background: white;
            border-bottom: 1px solid #e0e0e0;
        }

        .kpi-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .kpi-card {
            background: #ffffff;
            border-radius: 8px;
            padding: 1.5rem;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            transition: transform 0.2s, box-shadow 0.2s;
            border-left: 4px solid #3498db;
        }

        .kpi-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }

        .kpi-card.energy { border-left-color: #e74c3c; }
        .kpi-card.cost { border-left-color: #2ecc71; }
        .kpi-card.timeline { border-left-color: #f39c12; }
        .kpi-card.efficiency { border-left-color: #9b59b6; }

        .kpi-label {
            font-size: 0.9rem;
            color: #7f8c8d;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 0.5rem;
        }

        .kpi-value {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
        }

        .kpi-change {
            font-size: 0.9rem;
            color: #2ecc71;
        }

        .kpi-change.negative {
            color: #e74c3c;
        }

        /* Main dashboard content */
        .dashboard-content {
            padding: 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .dashboard-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .dashboard-card {
            background: white;
            border-radius: 8px;
            padding: 2rem;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .dashboard-card h3 {
            margin-bottom: 1.5rem;
            color: #2c3e50;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .icon {
            width: 24px;
            height: 24px;
            fill: currentColor;
        }

        /* Chart containers */
        .chart-container {
            position: relative;
            height: 300px;
            margin-bottom: 1rem;
        }

        .chart-canvas {
            width: 100%;
            height: 100%;
        }

        /* Progress bars */
        .progress-item {
            margin-bottom: 1.5rem;
        }

        .progress-label {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.5rem;
            font-weight: 500;
        }

        .progress-bar {
            height: 10px;
            background: #ecf0f1;
            border-radius: 5px;
            overflow: hidden;
        }

        .progress-fill {
            height: 100%;
            background: #3498db;
            border-radius: 5px;
            transition: width 1s ease-out;
        }

        /* Cost breakdown table */
        .cost-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 1rem;
        }

        .cost-table th {
            text-align: left;
            padding: 0.75rem;
            background: #f8f9fa;
            border-bottom: 2px solid #dee2e6;
            font-weight: 600;
        }

        .cost-table td {
            padding: 0.75rem;
            border-bottom: 1px solid #dee2e6;
        }

        .cost-table .total {
            font-weight: bold;
            background: #f8f9fa;
        }

        /* Timeline */
        .timeline {
            position: relative;
            padding: 1rem 0;
        }

        .timeline-item {
            display: flex;
            margin-bottom: 2rem;
            position: relative;
        }

        .timeline-marker {
            width: 40px;
            height: 40px;
            background: #3498db;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            flex-shrink: 0;
            z-index: 1;
        }

        .timeline-content {
            margin-left: 2rem;
            flex: 1;
        }

        .timeline-content h4 {
            margin-bottom: 0.5rem;
            color: #2c3e50;
        }

        .timeline-content p {
            color: #7f8c8d;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 20px;
            top: 40px;
            bottom: 20px;
            width: 2px;
            background: #e0e0e0;
        }

        /* ROI Calculator */
        .calculator-input {
            display: flex;
            gap: 1rem;
            margin-bottom: 1rem;
            align-items: center;
        }

        .calculator-input label {
            flex: 1;
            font-weight: 500;
        }

        .calculator-input input {
            width: 150px;
            padding: 0.5rem;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 1rem;
        }

        .roi-result {
            background: #e8f5e9;
            padding: 1.5rem;
            border-radius: 8px;
            margin-top: 1.5rem;
            text-align: center;
        }

        .roi-result .value {
            font-size: 3rem;
            font-weight: bold;
            color: #2ecc71;
        }

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

        /* Animation classes */
        .animate-in {
            animation: fadeInUp 0.6s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Print styles for reports */
        @media print {
            body {
                background: white;
            }
            
            .dashboard-card {
                box-shadow: none;
                border: 1px solid #ddd;
                break-inside: avoid;
            }
        }

