/* Styles pour le bloc de recherche */
.profile-search-block {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.profile-search-block label {
    font-size: 1rem;
    color: #333;
    margin-bottom: 5px;
}

.profile-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 client */
.profile-client-info-card {
    background-color: #fafafa;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    max-width: 450px;
    margin-top: 20px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.profile-client-info-card.hidden {
    display: none;
}

.profile-client-info-card h3 {
    font-size: 1.6rem;
    color: #222;
    margin: 0 0 15px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.profile-client-info-card .profile-client-details {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
}

.profile-client-info-card .profile-chantiers-title {
    font-size: 1.2rem;
    color: #333;
    margin-top: 20px;
    font-weight: bold;
    border-top: 1px solid #ddd;
    padding-top: 10px;
}

.profile-client-info-card .profile-chantiers-list {
    margin-top: 10px;
    list-style-type: none;
    padding-left: 0;
}

.profile-client-info-card .profile-chantiers-list li {
    padding: 8px 0;
    font-size: 0.95rem;
    color: #444;
    border-bottom: 1px solid #eee;
}

.profile-client-info-card .profile-chantiers-list li:last-child {
    border-bottom: none;
}
