/**
 * Simplified CSS for CKEditor 5 content area
 * Contains only essential styles for proper rendering in the editor
 */

/* Import the main font */
@import url(https://fonts.googleapis.com/css?family=Barlow:300,300i,400,400i,500,700,700i,800,900,900i);

/* Base editor styles */
body {
    font-family: 'Barlow', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

/* Headings */
h2 {
    font-size: 2em;
    font-weight: 700;
    margin-top: 1.5em;
    margin-bottom: 0.75em;
    color: #2c3e50;
}

h3 {
    font-size: 1.5em;
    font-weight: 700;
    margin-top: 1.25em;
    margin-bottom: 0.5em;
    color: #34495e;
}

h4 {
    font-size: 1.25em;
    font-weight: 600;
    margin-top: 1em;
    margin-bottom: 0.5em;
    color: #34495e;
}

h5 {
    font-size: 1.1em;
    font-weight: 600;
    margin-top: 0.75em;
    margin-bottom: 0.5em;
    color: #34495e;
}

h6 {
    font-size: 1em;
    font-weight: 600;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    color: #34495e;
}

/* Paragraphs */
p {
    margin-bottom: 1em;
}

/* Custom styles */
p.chapeau {
    font-size: 1.2em;
    font-weight: 500;
    color: #2980b9;
    margin-bottom: 1.5em;
}

p.encadre {
    padding: 1em;
    background-color: #ecf0f1;
    border-left: 4px solid #3498db;
    margin: 1em 0;
}

/* Lists */
ul, ol {
    margin-left: 2em;
    margin-bottom: 1em;
}

/* Links */
a {
    color: #3498db;
    text-decoration: underline;
}

a:hover {
    color: #2980b9;
}

/* Tables */
table {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 1em;
}

table td, table th {
    border: 1px solid #ddd;
    padding: 8px;
}

table th {
    background-color: #f2f2f2;
    font-weight: bold;
}

/* Blockquotes */
blockquote {
    border-left: 4px solid #ccc;
    padding-left: 1em;
    margin: 1em 0;
    font-style: italic;
    color: #666;
}
