body {
    font-family: Arial, sans-serif;
}
.form-group {
    margin-bottom: 10px;
}
.btn_add, .btn_send {
    padding: 10px 20px;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
}
.btn_add {
    background-color: #4CAF50; /* Vert pour ajouter */
}
.btn_send {
    background-color: #008CBA; /* Bleu pour envoyer */
}
.product-row {
    border: 1px solid #ddd;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    position: relative;
}
.product-row .remove-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #f44336;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
}
.product-row .remove-btn:hover {
    background-color: #d32f2f;
}
.off-canvas-menu {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: #111;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}
.off-canvas-menu h2, .off-canvas-menu p {
    color: white;
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    display: block;
    transition: 0.3s;
}
.off-canvas-menu button {
    position: absolute;
    top: 20px;
    left: 25px;
    font-size: 20px;
    margin-left: 50px;
    background-color: #111;
    color: white;
    border: none;
    cursor: pointer;
}
#main {
    transition: margin-left 0.5s;
    padding: 16px;
}

/* Style général du formulaire */
form {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 8px;
    background-color: #f9f9f9;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Titres du formulaire */
form h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

/* Étiquettes */
label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #555;
}

/* Champs de saisie */
input[type="text"],
input[type="number"],
input[type="email"],
textarea,
select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
    margin-bottom: 15px;
    box-sizing: border-box;
}

/* Boutons */
button,
input[type="submit"] {
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

button:hover,
input[type="submit"]:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}

/* Bouton désactivé */
button:disabled,
input[type="submit"]:disabled {
    background-color: #6c757d;
    cursor: not-allowed;
}

/* Champs de texte */
textarea {
    resize: vertical;
    min-height: 100px;
}

/* Groupes de champs */
.field-group {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

/* Groupes de champs internes */
.field-group .form-group {
    flex: 1;
    margin-right: 10px;
}

/* Dernière groupe de champs sans marge droite */
.field-group .form-group:last-child {
    margin-right: 0;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.off-canvas-menu {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: #111;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}

.off-canvas-menu button {
    position: absolute;
    top: 20px;
    left: 25px;
    font-size: 20px;
    background-color: #111;
    color: white;
    border: none;
    cursor: pointer;
}

.off-canvas-menu h2, .off-canvas-menu p {
    color: white;
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    display: block;
    transition: 0.3s;
}

#main {
    transition: margin-left 0.5s;
    padding: 16px;
}

.product-row {
    border: 1px solid #ccc;
    padding: 10px;
    margin: 10px 0;
}

.remove-btn {
    color: red;
    text-decoration: none;
}

button {
    padding: 10px 20px;
    font-size: 16px;
}
