/* Styles communs pour les sections EM et DGA */

/* Style pour le contenu dynamique */
.dynamic-content {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 20px;
    white-space: pre-line;
    font-size: 1.1em;
}

/* Styles pour les titres et paragraphes */
h2 {       
    text-align: left;
    margin-bottom: 2px;
    margin-top: 20px;
    color: #fff;
    font-size: 1.8em;
}

h3 {
    text-align: left;
    margin-bottom: 0;
    margin-top: 10px;
    color: #fff;
    font-size: 1.4em;
}

p {
    line-height: 1.4;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.1em;
}

/* Style pour les liens dans le contenu dynamique */
.dynamic-content a {
    color: #2ecc71;
    font-weight: bold;
    text-decoration: none;
}

.dynamic-content a:hover {
    text-decoration: underline;
}

/* Style pour les listes à puces */
.dynamic-content ul {
    margin-top: 5px;
    margin-bottom: 10px;
    padding-left: 20px;
    font-size: 1.1em;
}

.dynamic-content li {
    margin-bottom: 5px;
}

/* Style pour le texte en gras */
.dynamic-content strong {
    font-weight: bold;
    color: #fff;
}

/* Style pour le texte en italique */
.dynamic-content em {
    font-style: italic;
    color: #ddd;
}

/* Style pour le lien d'édition */
.edit-link {
    display: inline-block;
    margin-top: 20px;
    background-color: #3498db;
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.edit-link:hover {
    background-color: #2980b9;
} 