#tableau{
    display: flex;
    flex-direction: column;
    border-left: 1px solid lightgrey;
    border-top: 1px solid lightgrey;
    box-sizing: border-box;
    width: 100%;
    max-width: 600px;

}

.entete{
    background-color: #00B3E7;
    color: white
}

.ligne_tableau{
    display: flex;
    flex-direction: row;
    height: 25px;
}

.cellule{
    height: 100%;
    display: flex; 
    flex-direction: row;
    align-items: center;
    justify-content: center;
    border-right: 1px solid lightgray;
    border-bottom: 1px solid lightgray;
    box-sizing: border-box;
    flex-wrap: wrap;
    word-break: break-all;
}

.col_piece, .col_inter, .col_pc, .col_rj{
    width: 20%;
}

.col_piece{
    width: 40%;
}

.derniere_cellule{
    width: 60%;
    transition-duration: 0.3s;
}

.derniere_cellule:hover{
    background-color: lightgray;
    cursor: pointer;
}

.input_inv{
    font-family: 'Rounds';
    text-align: center;
    width: calc( 100% - 10px );
    background-color: transparent;
    border: none;
}

/* Chrome, Safari, Edge, Opera */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}