/**
 * CSS pour l'intégration des informations du site dans la fiche projet
 */

/* Style pour la colonne de droite avec les informations du site */
.fichehalfright {
    /* La colonne de droite garde sa largeur normale pour afficher les informations du site */
}

/* Améliorer l'affichage des sections */
.fichehalfright h3 {
    margin-top: 20px;
    margin-bottom: 10px;
}

.fichehalfright h3:first-child {
    margin-top: 0;
}

/* Style pour les chantiers à venir */
.fichehalfright .chantier-item {
    margin-bottom: 15px;
    padding: 10px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
}

/* Assurer que les tableaux dans la colonne de droite sont bien affichés */
.fichehalfright table {
    width: 100%;
}

/* Style pour la carte */
.fichehalfright #sites2-project-map {
    width: 100%;
    height: 300px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* Responsive : sur petits écrans, empiler les colonnes */
@media (max-width: 768px) {
    .fichecenter {
        flex-direction: column;
    }
    
    .fichehalfleft,
    .fichehalfright {
        width: 100% !important;
        max-width: 100% !important;
    }
}
