/* Général */
#dimensionForm {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
}

#dimensionForm label {
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
}

#dimensionForm input[type="number"],
#dimensionForm select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

#dimensionForm button {
    width: 100%;
    padding: 12px;
    background-color: #007bff;
    color: white;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#dimensionForm button:hover {
    background-color: #0056b3;
}

/* Tableau de bon de commande */
table {
    width: 100%;
    margin-top: 20px;
    border-collapse: collapse;
}

table thead th {
    background-color: #007bff;
    color: white;
    padding: 10px;
    text-align: left;
}

table tbody td {
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

table img {
    width: 80px;
    height: auto;
    border-radius: 5px;
}

table input[type="number"] {
    width: 60px;
    padding: 5px;
    text-align: center;
}

table tbody tr:hover {
    background-color: #f1f1f1;
}

table tbody tr td:last-child {
    font-weight: bold;
    color: #007bff;
}

/* Résultat du calcul */
#result {
    margin-top: 20px;
    padding: 15px;
    background-color: #e9f7fe;
    border: 1px solid #007bff;
    border-radius: 5px;
    color: #007bff;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
}
