body {
    font-family: 'Gabarito', sans-serif;
    background-color: #2c2c2c;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

h1 {
    text-align: center;
    color: #fff;
    margin: 20px 0;
}

.lv {
    color: #ffcf62;
}

.v4 {
    color: #3cb882;
}

.info-box {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffcc00;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    display: none;
}

.close-button {
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
    color: #000;
}

.info-box p {
    margin: 0;
    font-size: 16px;
}

table {
    padding: 5px;
    width: 90%;
    border-collapse: separate;
    margin: auto;
    background-color: #23272a;
    border: 2px solid #fff;
    color: #fff;
    border-radius: 10px;
    overflow: hidden;
    table-layout: fixed; 
}

tr {
    height: 40px;
}

td {
    padding: 5px;
    text-align: center;
    box-sizing: border-box; 
}

table.items td:first-child {
    width: 20%;
    padding-left: 0; 
}

table.items td:nth-child(2), 
table.items td:nth-child(3) {
    width: 15%;
}

table.items td:nth-child(4) {
    width: 250;
}

.input-td {
    max-width: 55px;
}

.row {
    display: flex;
    align-items: center;
}

.spanmargin {
    margin: 0 10px;
}

img {
    width: 40px;
    height: auto;
}

input[type=number] {
    border-radius: 5px;
    border: 1px solid #000;
    background: #444;
    color: #fff;
    padding: 5px;
    font-size: 16px;
    text-align: center;
    width: 100px;
    box-sizing: border-box;
}

input[type=number].price-percentage {
    width: 60px;
    text-align: center;
    font-size: 14px;
    border-radius: 5px;
    border: 1px solid #000;
    background: #444;
    color: #fff;
    padding: 5px;
    box-sizing: border-box;
}

.price {
    margin-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
    position: relative;
}

.trash-icon {
    text-align: right;
    cursor: pointer;
}