

/* Conteneur global */
.wpcf7 {
    font-family: Arial, sans-serif;
    color: #333;
    background: #f9f9f9;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
#company-suggestions {
    display: none;
    position: absolute;
    width: 100%;
    z-index: 1000;
    background: white;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-top: -5px;
    padding: 10px;
    max-height: 200px;
    overflow-y: auto;
}

#company-suggestions.active {
    display: block;
}

.wpcf7-form-control-wrap {
    position: relative;
}
/* Style des champs de formulaire */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea {
    height: 60px;
    width: 100%;
    padding: 10px;
    margin-bottom: -15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: border-color 0.3s;
}
.wpcf7 input[type="submit"] {
    display: block;
    margin: 0 auto;
}
.wpcf7 input:focus,
.wpcf7 textarea:focus {
    border-color: #e74c3c;
    outline: none;
    box-shadow: 0 0 5px rgba(231, 76, 60, 0.5);
}

/* Style des labels */
.wpcf7 label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

/* Style du bouton Envoyer */
.wpcf7 input[type="submit"] {
    display: block;
    margin: 0 auto;
    background-color: #8A1F1F;  /* Changé en 8A1F1F */
    color: white;
    font-size: 16px;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    min-width: 80%; 
    cursor: pointer;
    transition: background-color 0.3s, box-shadow 0.3s, color 0.3s; /* Ajout de la transition pour la couleur */
}

.wpcf7 input[type="submit"]:hover {
    background-color: #C10303;  /* Changé en C10303 */
    color: #ffc100;  /* Changé en jaune */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Suggestions d'entreprise */
.company-suggestions {
    background: white;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-top: -5px;
    padding: 10px;
    max-height: 200px;
    overflow-y: auto;
}

.company-suggestions .suggestion-item {
    padding: 10px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: background-color 0.2s;
}

.company-suggestions .suggestion-item:hover {
    background-color: #f0f0f0;
}

.company-suggestions .company-name {
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}
.company-suggestions:empty {
    display: none;
}

.company-suggestions .company-address,
.company-suggestions .company-activite,
.company-suggestions .company-siret {
    font-size: 13px;
    color: #555;
}