/* Styles pour le bloc de recherche */
.chantier-search-block {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.chantier-search-block label {
    font-size: 1rem;
    color: #333;
    margin-bottom: 5px;
}

.chantier-client-select {
    padding: 8px 12px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 100%;
    max-width: 300px;
}

/* Styles pour la carte d'information chantier */
.chantier-info-card {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    max-width: 600px;
    margin-top: 20px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.chantier-info-card.hidden {
    display: none;
}

.chantier-info-card h3 {
    font-size: 1.5rem;
    color: #222;
    margin: 0 0 15px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.chantier-info-card .chantier-details {
    font-size: 1rem;
    color: #666;
    margin-bottom: 15px;
}

.chantier-info-card .chantier-title {
    font-size: 1.2rem;
    color: #333;
    margin-top: 20px;
    font-weight: bold;
    border-top: 1px solid #ddd;
    padding-top: 10px;
}

.chantier-info-card .chantier-list {
    margin-top: 10px;
    list-style-type: none;
    padding-left: 0;
}

.chantier-info-card .chantier-list li {
    padding: 10px 0;
    font-size: 0.95rem;
    color: #444;
    border-bottom: 1px solid #eee;
    transition: background-color 0.3s;
}

.chantier-info-card .chantier-list li:last-child {
    border-bottom: none;
}

/* Style pour les commentaires */
.chantier-info-card .chantier-list .chantier-commentaire {
    font-size: 0.9rem;
    color: #555;
    margin-top: 5px;
    padding-left: 10px;
    border-left: 2px solid #ddd;
    line-height: 1.4;
    font-style: italic;
}
