body {
    font-family: 'Gabarito', sans-serif;
    background-color: #2c2c2c;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

h1 {
    text-align: center;
    color: #fff;
    margin: 20px 0;
}

.lv {
    color: #ffcf62;
}

.v4 {
    color: #3cb882;
}

table {
    padding: 5px;
    width: 90%;
    border-collapse: separate;
    margin: auto;
    background-color: #23272a;
    border: 2px solid #fff;
    color: #fff;
    border-radius: 10px;
    overflow: hidden;
}

tr {
    height: 40px;
}

td {
    padding: 5px;
    padding-left: 20px;
}

button {
    font-family: 'Arial', sans-serif;
    font-size: 30px;
    padding: 6px 30px;
    margin: 0 5px;
    border: 2px solid transparent;
    border-radius: 40px;
    cursor: pointer;
    position: relative;
    background-color: transparent;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
    outline: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 400px;
}

button:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
}

button.normal {
    border-color: #fff;
    color: #fff;
}

button.normal:hover {
    background-color: #fff;
    color: #000;
    border-color: #fff;
}

button.electric {
    border-color: #2ecc71;
    color: #2ecc71;
}

button.electric:hover {
    background-color: #2ecc71;
    color: #fff;
    border-color: #2ecc71;
}

.select-wrapper {
    display: flex;
    justify-content: center; 
    gap: 10px;
    margin-top: 20px;
}

.input-td {
    max-width: 55px;
}

.row {
    display: flex;
    align-items: center;
}

.spanmargin {
    margin: 0 10px;
}

img {
    width: 40px;
    height: auto;
}

select {
    border-radius: 5px;
    border: 1px solid #000;
    background: #444;
    color: #fff;
    padding: 5px;
    font-size: 16px;
    text-align: center;
    width: 130px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

select::-ms-expand {
    display: none;
}

.select-wrapper {
    position: relative;
    display: inline-block;
}

.select-wrapper::after {
    content: '▼';
    font-size: 16px;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #fff;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.select-wrapper.selected::after {
    opacity: 0;
}

input[type=number] {
    border-radius: 5px;
    border: 1px solid #000;
    background: #444;
    color: #fff;
    padding: 5px;
    font-size: 16px;
    text-align: center;
    width: 90px;
}

.price {
    margin-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
    position: relative;
}

.trash-icon {
    text-align: right;
    cursor: pointer;
}
