.number-input {
    display: inline-flex;
    position: relative;
    overflow: hidden;
    width: fit-content;
}

.number-input input {
    border: none;
    outline: none;
    -moz-appearance: textfield; /* Remove default Firefox spinner */
}

/* Buttons container (Right side) */
.number-input .buttons {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #ccc;
}

/* Buttons (Empty, icons via ::before) */
.number-input button {
    width: 25px;
    height: 50%;
    border: none;
    background: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    user-select: none;
    position: relative;
}

/* Up button icon */
.number-input .increment::before {
    content: "\e911"; 
    font-family: "shoptet"; 
    font-size: 10px;
  height: 100%;
  left: 0;
  line-height: 18px;
  position: absolute;
  text-align: center;
  top: 0;
  width: 100%;
    background-color: #f3f3f3;
}

/* Down button icon */
.number-input .decrement::before {
    content: "\e90e"; 
    font-family: "shoptet"; 
      height: 100%;
    font-size: 10px;
  left: 0;
  line-height: 18px;
  position: absolute;
  text-align: center;
  top: 0;
  width: 100%;
    background-color: #f3f3f3;
}

/* Divider between up and down buttons */
.number-input .increment {
    border-bottom: 1px solid #ccc;
}

.number-input input::-webkit-outer-spin-button,
.number-input input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}


.detail-parameters tr {
    display: flex;
    flex-wrap: wrap;
}

.detail-parameters tr>*{
    width: 100%;
}

.detail-parameters tr>td{
    padding-bottom: 10px;
}

.surcharge-list{
    width: 100%;
}

.surcharge-list:has(.number-input){
    width: 50%;
}

.detail-parameters tbody{
    display: flex;
    flex-wrap: wrap;
}

#newHeightInput, #newWidthInput {
    width: 100% !important;!i;!;
}

.number-input {
    width: 90%;
}

.info-panel{
    border: 2px solid #DD0E7B;
    background: #FFF6FB;
    border-radius: 4px;
    font-family: Poppins;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0%;
    padding: 10px 15px;
    margin: 20px 0px;
    display: flex;
    align-items: center;
}
.info-panel img{
    margin-right: 10px;
}

.detail-parameters tbody > tr{
    order: 0;
}

.detail-parameters tbody > tr:has(#newHeightInput){
    order: 2;
}

.detail-parameters tbody > tr:has(#newWidthInput){
    order: 1;
}
.detail-parameters tbody tr:last-child{
    order: 10;
}
  