/* stylescontact.css */
body {
    font-family: 'Urbanist', sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 20px;
}

.contact-page {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
}

.contact-page h2 {
    color: #6a7450;
}

/* Styles pour le menu déroulant */
select {
    width: 81%; /* Prendre toute la largeur du conteneur */
    padding: 10px; /* Espacement intérieur */
    border: 1px solid #6a7450; /* Bordure avec la couleur de votre thème */
    border-radius: 5px; /* Coins arrondis */
    background-color: #ffffff; /* Couleur de fond */
    font-size: 16px; /* Taille de la police */
    color: #333; /* Couleur du texte */
    transition: border-color 0.3s ease; /* Transition pour la bordure */
}

/* Changer la couleur de la bordure au survol */
select:hover {
    border-color: #5a6340; /* Couleur de bordure au survol */
}

/* Changer la couleur de la bordure lorsque le menu est sélectionné */
select:focus {
    border-color: #4a5d3c; /* Couleur de bordure au focus */
    outline: none; /* Supprimer le contour par défaut */
}

.contact-info {
    margin-top: 20px;
}

.contact-info p {
    font-size: 1.2em;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

label {
    margin: 10px 0 5px;
}

input, textarea {
    width: 80%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    padding: 10px 20px;
    background-color: #6a7450;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #5a6340;
}

.quantity-selector {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.quantity-selector button {
    width: 30px;
    height: 30px;
    border: none;
    background-color: #6a7450;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}
.quantity-selector input {
    text-align: center;
    width: 40px;
    border: none;
    background: none;
}
button[type="submit"] {
    margin-top: 15px;
    padding: 10px;
    background-color: #6a7450;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}