h1, h2, h3, h4, h5 {
    font-family: 'Poppins', Arial, sans-serif;
    font-weight: bold;
    margin-bottom: 10px;
}

/* 🎯 TITRE PRINCIPAL (h1) */
/*
h1 {
    font-size: 2.8rem;
    text-transform: uppercase;
    text-align: center;
    color: #007bff;
    background: linear-gradient(to right, #007bff, #00c6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-bottom: 5px;
    border-bottom: 4px solid #007bff;
}
*/

/* TITRE SECTION (h2) */
h2 {
    font-size: 1.8rem;
    color: #333;
    text-align: center;
    position: relative;
    padding-bottom: 5px;
}

h2::after {
    content: '';
    width: 80px;
    height: 3px;
    background: #007bff;
    display: block;
    margin: 8px auto 0;
}

/* 📌 TITRE SECTION (h3) */
h3 {
    font-size: 1.8rem;
    color: #444;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* 🔹 TITRE SOUS-SECTION (h4) */
h4 {
    font-size: 1.4rem;
    color: #666;
    font-style: italic;
}

/* 📝 PETIT TITRE (h5) */
h5 {
    font-size: 1.2rem;
    color: #888;
    text-transform: uppercase;
}

/* ðŸ“‚ CONTAINER DE DOCUMENTS */
#image_metadata_container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

/* DOCUMENT INDIVIDUEL */
.document {
    display: flex;
    flex-direction: row;  /* Afficher l'image Ã  gauche et les mÃ©tadonnÃ©es Ã  droite */
    border: 2px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    width: 48%;
}

/* IMAGE */

.image-container {
    width: 40%;
    padding: 10px;
}

.image {
    max-width: 100%;
    height: auto;
    border: 2px solid #ddd;
    border-radius: 8px;
}

/* MÃ‰TADONNÃ‰ES */
.metadata-container {
    width: 55%;
    padding: 10px;
}

.metadata-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.metadata-table th, .metadata-table td {
    padding: 8px;
    text-align: left;
    border: 1px solid #ddd;
}

.metadata-table th {
    background-color: #f4f4f4;
}

.metadata-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.metadata-table tr:hover {
    background-color: #f0f0f0;
}

.document h2 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 10px;
}


.title-container {
    text-align: center;
    padding: 20px;
    margin-bottom: 20px;
    background: linear-gradient(to right, #007bff, #00c6ff);
    color: white;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.title-container h1 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}