﻿.report-container {
            max-width: 900px;
            margin: 0 auto;
            padding: 2rem;
            background: var(--bg-primary);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border-radius: 12px;
        }
        
        .report-header {
            text-align: center;
            margin-bottom: 3rem;
            padding-bottom: 2rem;
            border-bottom: 2px solid var(--accent-emerald);
        }
        
        .logos-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
            padding: 1rem;
            background: var(--bg-secondary);
            border-radius: 12px;
            flex-wrap: wrap;
            gap: 2rem;
        }
        
        .logo-item {
            text-align: center;
            flex: 1;
            min-width: 200px;
        }
        
        .logo-item img {
            max-height: 80px;
            max-width: 200px;
            object-fit: contain;
            margin-bottom: 0.5rem;
        }
        
        .logo-item h4 {
            font-size: 0.9rem;
            color: var(--text-secondary);
            font-weight: 600;
        }
        
        .organigramme {
            background: var(--bg-secondary);
            padding: 2rem;
            border-radius: 12px;
            margin: 2rem 0;
        }
        
        .organigramme h3 {
            text-align: center;
            color: var(--primary-blue);
            margin-bottom: 2rem;
            font-size: 1.5rem;
        }
        
        .org-level {
            margin-bottom: 2rem;
        }
        
        .org-president {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .org-box {
            background: var(--bg-primary);
            border: 2px solid var(--primary-blue);
            border-radius: 8px;
            padding: 1rem;
            margin: 0.5rem;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .org-box:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
        }
        
        .org-president .org-box {
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
            color: white;
            border-color: var(--primary-blue-dark);
            display: inline-block;
            min-width: 250px;
        }
        
        .org-services {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .org-service {
            background: var(--bg-tertiary);
            padding: 1.5rem;
            border-radius: 8px;
            border-left: 4px solid var(--accent-emerald);
        }
        
        .org-service h4 {
            color: var(--accent-emerald);
            margin-bottom: 1rem;
            font-size: 1.2rem;
            border-bottom: 1px solid var(--accent-emerald);
            padding-bottom: 0.5rem;
        }
        
        .org-chef {
            background: var(--accent-emerald);
            color: white;
            font-weight: 600;
            margin-bottom: 1rem;
        }
        
        .org-employee {
            background: var(--bg-primary);
            border: 1px solid var(--border-color);
            margin-bottom: 0.5rem;
        }
        
        .org-employee.alternant {
            background: var(--bg-secondary);
            border-left: 3px solid var(--accent-orange);
        }
        
        .org-employee.alternant::after {
            content: " (Alternant)";
            color: var(--accent-orange);
            font-weight: 500;
            font-size: 0.9rem;
        }
        
        .org-title {
            font-weight: 600;
            color: var(--text-primary);
        }
        
        .org-name {
            font-size: 1.1rem;
            margin-bottom: 0.3rem;
        }
        
        .org-role {
            font-size: 0.9rem;
            color: var(--text-secondary);
            font-style: italic;
        }
        
        .report-title {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
        }
        
        .report-subtitle {
            font-size: 1.5rem;
            color: var(--primary-blue);
            margin-bottom: 2rem;
        }
        
        .report-info {
            background: var(--bg-tertiary);
            padding: 1.5rem;
            border-radius: 8px;
            margin-bottom: 2rem;
        }
        
        .report-info h3 {
            color: var(--primary-blue);
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }
        
        .toc {
            background: var(--bg-secondary);
            padding: 2rem;
            border-radius: 8px;
            margin: 2rem 0;
        }
        
        .toc h2 {
            color: var(--primary-blue);
            margin-bottom: 1rem;
            text-align: center;
        }
        
        .toc ul {
            list-style: none;
            padding: 0;
        }
        
        .toc li {
            margin: 0.5rem 0;
            padding-left: 1rem;
        }
        
        .toc a {
            color: var(--text-primary);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .toc a:hover {
            color: var(--primary-blue);
        }
        
        .section {
            margin: 3rem 0;
            padding: 2rem 0;
        }
        
        .section h1 {
            color: var(--primary-blue);
            font-size: 2rem;
            margin-bottom: 1.5rem;
            border-bottom: 2px solid var(--accent-emerald);
            padding-bottom: 0.5rem;
        }
        
        .section h2 {
            color: var(--text-primary);
            font-size: 1.5rem;
            margin: 2rem 0 1rem 0;
        }
        
        .section h3 {
            color: var(--primary-blue);
            font-size: 1.2rem;
            margin: 1.5rem 0 0.5rem 0;
        }
        
        .section p {
            line-height: 1.6;
            margin-bottom: 1rem;
            text-align: justify;
        }
        
        .section ul {
            margin: 1rem 0;
            padding-left: 2rem;
        }
        
        .section li {
            margin: 0.5rem 0;
            line-height: 1.6;
        }
        
        .highlight-box {
            background: var(--bg-tertiary);
            border-left: 4px solid var(--accent-emerald);
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        
        .back-button {
            position: fixed;
            top: 2rem;
            left: 2rem;
            z-index: 1000;
        }
        
        .print-button {
            position: fixed;
            top: 2rem;
            right: 2rem;
            z-index: 1000;
        }
        
        @media print {
            .back-button, .print-button {
                display: none;
            }
            
            .report-container {
                box-shadow: none;
                margin: 0;
                padding: 1rem;
            }
            
            .section {
                page-break-inside: avoid;
            }
        }
        
        @media (max-width: 768px) {
            .report-container {
                margin: 1rem;
                padding: 1rem;
            }
            
            .back-button, .print-button {
                position: static;
                margin: 1rem 0;
            }
            
            .logos-container {
                flex-direction: column;
                gap: 1rem;
            }
            
            .org-services {
                grid-template-columns: 1fr;
            }
            
            .org-box {
                margin: 0.25rem;
                padding: 0.75rem;
            }
            
            .org-president .org-box {
                min-width: auto;
            }
        }