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

/* executive-summary.css - Professional one-page brief generator */
        * {
            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;
        }

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

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

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

        /* Main Layout */
        .app-container {
            display: flex;
            min-height: calc(100vh - 120px);
        }

        /* Configuration Panel */
        .config-panel {
            width: 350px;
            background: white;
            padding: 2rem;
            box-shadow: 2px 0 4px rgba(0,0,0,0.1);
            overflow-y: auto;
        }

        .config-section {
            margin-bottom: 2rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid #e0e0e0;
        }

        .config-section:last-child {
            border-bottom: none;
        }

        .config-section h3 {
            color: #2c3e50;
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }

        .audience-selector {
            display: grid;
            gap: 0.5rem;
        }

        .audience-option {
            padding: 1rem;
            background: #f8f9fa;
            border: 2px solid #e0e0e0;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.2s;
        }

        .audience-option:hover {
            border-color: #3498db;
            background: #e3f2fd;
        }

        .audience-option.selected {
            border-color: #3498db;
            background: #e3f2fd;
        }

        .audience-option h4 {
            margin-bottom: 0.25rem;
            color: #2c3e50;
        }

        .audience-option p {
            font-size: 0.85rem;
            color: #7f8c8d;
        }

        .form-group {
            margin-bottom: 1rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: #7f8c8d;
            font-size: 0.9rem;
        }

        .form-group input[type="text"],
        .form-group input[type="number"],
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 1rem;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 80px;
        }

        .checkbox-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .checkbox-group label {
            display: flex;
            align-items: center;
            font-weight: normal;
            cursor: pointer;
        }

        .checkbox-group input[type="checkbox"] {
            margin-right: 0.5rem;
        }

        .generate-btn {
            width: 100%;
            padding: 1rem;
            background: #3498db;
            color: white;
            border: none;
            border-radius: 4px;
            font-size: 1.1rem;
            font-weight: 500;
            cursor: pointer;
            transition: background 0.2s;
        }

        .generate-btn:hover {
            background: #2980b9;
        }

        /* Preview Area */
        .preview-area {
            flex: 1;
            padding: 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #ecf0f1;
        }

        .summary-container {
            width: 100%;
            max-width: 850px;
            background: white;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            min-height: 1100px;
            position: relative;
        }

        /* Summary Document Styles */
        .summary-document {
            padding: 60px;
            font-size: 11pt;
            color: #2c3e50;
        }

        .summary-header {
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 3px solid #3498db;
        }

        .summary-header h1 {
            font-size: 28px;
            color: #2c3e50;
            margin-bottom: 10px;
        }

        .summary-header .subtitle {
            font-size: 16px;
            color: #7f8c8d;
            margin-bottom: 15px;
        }

        .summary-header .metadata {
            display: flex;
            justify-content: space-between;
            font-size: 12px;
            color: #95a5a6;
        }

        .executive-highlights {
            background: #ecf0f1;
            padding: 20px;
            border-radius: 4px;
            margin-bottom: 30px;
        }

        .executive-highlights h2 {
            font-size: 18px;
            color: #2c3e50;
            margin-bottom: 15px;
        }

        .highlight-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }

        .highlight-item {
            background: white;
            padding: 15px;
            border-radius: 4px;
            border-left: 4px solid #3498db;
        }

        .highlight-value {
            font-size: 24px;
            font-weight: bold;
            color: #3498db;
        }

        .highlight-label {
            font-size: 12px;
            color: #7f8c8d;
            text-transform: uppercase;
        }

        .summary-section {
            margin-bottom: 25px;
        }

        .summary-section h2 {
            font-size: 18px;
            color: #2c3e50;
            margin-bottom: 10px;
            padding-bottom: 5px;
            border-bottom: 1px solid #e0e0e0;
        }

        .summary-section p {
            margin-bottom: 10px;
            text-align: justify;
        }

        .summary-section ul {
            margin-left: 20px;
            margin-bottom: 10px;
        }

        .summary-section li {
            margin-bottom: 5px;
        }

        .key-metrics {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 15px;
        }

        .metric-box {
            text-align: center;
            padding: 15px;
            background: #f8f9fa;
            border-radius: 4px;
        }

        .metric-box .value {
            font-size: 20px;
            font-weight: bold;
            color: #3498db;
        }

        .metric-box .label {
            font-size: 11px;
            color: #7f8c8d;
            text-transform: uppercase;
            margin-top: 5px;
        }

        .timeline-summary {
            position: relative;
            padding-left: 40px;
            margin-top: 20px;
        }

        .timeline-summary::before {
            content: '';
            position: absolute;
            left: 15px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: #3498db;
        }

        .timeline-item {
            position: relative;
            margin-bottom: 20px;
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            left: -30px;
            top: 5px;
            width: 12px;
            height: 12px;
            background: #3498db;
            border-radius: 50%;
        }

        .timeline-item .period {
            font-weight: bold;
            color: #2c3e50;
        }

        .timeline-item .description {
            font-size: 10pt;
            color: #7f8c8d;
        }

        .call-to-action {
            background: #3498db;
            color: white;
            padding: 20px;
            border-radius: 4px;
            text-align: center;
            margin-top: 30px;
        }

        .call-to-action h3 {
            font-size: 20px;
            margin-bottom: 10px;
        }

        .call-to-action p {
            margin-bottom: 0;
        }

        .footer-info {
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #e0e0e0;
            font-size: 10px;
            color: #95a5a6;
            text-align: center;
        }

        /* Export Controls */
        .export-controls {
            position: absolute;
            top: 20px;
            right: 20px;
            display: flex;
            gap: 10px;
        }

        .export-btn {
            padding: 8px 16px;
            background: white;
            border: 1px solid #ddd;
            border-radius: 4px;
            cursor: pointer;
            font-size: 14px;
            transition: all 0.2s;
        }

        .export-btn:hover {
            background: #f8f9fa;
            border-color: #3498db;
        }

        /* Classification Stamps */
        .classification {
            position: absolute;
            top: 20px;
            right: 20px;
            padding: 5px 15px;
            font-size: 12px;
            font-weight: bold;
            text-transform: uppercase;
            border: 2px solid;
            transform: rotate(5deg);
        }

        .classification.confidential {
            color: #e74c3c;
            border-color: #e74c3c;
        }

        .classification.public {
            color: #27ae60;
            border-color: #27ae60;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .app-container {
                flex-direction: column;
            }
            
            .config-panel {
                width: 100%;
                order: 2;
            }
            
            .preview-area {
                order: 1;
            }
        }

        @media print {
            .config-panel,
            .export-controls,
            .app-header {
                display: none;
            }
            
            .preview-area {
                padding: 0;
                background: white;
            }
            
            .summary-container {
                box-shadow: none;
                max-width: 100%;
            }
            
            .summary-document {
                padding: 40px;
            }
        }

        /* Loading Animation */
        .generating-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(255, 255, 255, 0.9);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 100;
        }

        .generating-overlay.show {
            display: flex;
        }

        .generating-content {
            text-align: center;
        }

        .spinner {
            width: 50px;
            height: 50px;
            border: 3px solid #f3f3f3;
            border-top: 3px solid #3498db;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin: 0 auto 20px;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

