body {
    font-family: Arial, sans-serif;
    margin: 0;
    background-color: #f4f4f4;
}
.listAchats {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}
.listAchats th, .listAchats td {
    padding: 15px 5px;
    text-align: left;
}
.listAchats th {
    background-color: #f7f7f7;
    color: #333;
    font-weight: 600;
}
.listAchats tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}
.listAchats tbody tr:hover {
    background-color: #f1f1f1;
}
.listAchats tfoot td{
  padding:0;
}
.listAchats input[type="text"] {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size:20px;
}
.jsql_btn {
    border: none;
    cursor: pointer;
    padding: 10px;
    border-radius: 4px;
}
.jsql_btn svg {
    width: 20px;
    height: 20px;
    vertical-align: middle;
}
.addCart {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.addCart svg {
    margin-right: 8px;
}
.addCart label {
    cursor: pointer;
}
.footer-container {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 10px;
    padding: 20px;
}
.listAchats input[name="productQte"]{
  width:85px;
}
.listAchats thead th:not(:nth-child(2)){
  width:0px;
}
