/* Styles pour améliorer l'affichage du formulaire */
#custom-callbackFormContainer {
    width: 100%;
    max-width: 400px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
}

/* Centrer et espacer les boutons */
.custom-button-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 15px;
    gap: 10px; /* Ajoute un espace entre les boutons */
}

/* Ajuster la largeur des inputs */
.custom-form-control {
    width: calc(100% - 20px);
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 14px;
    margin-bottom: 10px;
}

/* Ajout d'une animation sur les boutons */
.custom-btn {
    display: inline-block;
    background-color: #28a745; /* Vert principal */
    color: white;
    font-size: 16px;
    font-weight: bold;
    padding: 12px 20px;
    border-radius: 30px; /* Arrondi */
    text-align: center;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s;
    border: none;
    cursor: pointer;
    margin: 10px 5px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

/* Effet au survol */
.custom-btn:hover {
    background-color: #218838;
    transform: scale(1.05);
}

/* Boutons WhatsApp */
.custom-btn i {
    margin-right: 5px;
}
