section.main {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

section.offers {
    flex: none;
    height: 262px;
    overflow-y: auto;
    padding-left: 10px;
    padding-bottom: 5px;
}

div.new div.icon {
    background: linear-gradient(90deg, 
        rgb(134 239 172 / 0.6) 0%,
        rgb(134 239 172 / .8) 50%,
        rgb(134 239 172 / 1) 100%) !important;
}

div.new div.action a:hover {
    background-color: rgb(16 185 129);
    color: #f2f2f2;
}

section.detail {
    border: 1px solid rgb(186 230 253);
    background-color: rgb(248 250 252);
    border-radius: .5rem;
    flex: 0 0 350px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: .875rem;
    padding: 20px 20px 0 20px;
}

section.detail > div {
    display: none;
}

section.detail > div > div {
    display: flex;
    margin-top: 10px;
}

section.detail > div > div > label {
    flex: 0 0 150px;
    padding-top: 2px;
}

section.detail > div > div > input {
    flex: 0 0 150px;
}

section.detail input:disabled,
section.detail select:disabled {
    background-color: initial;
    color: initial;
    border-color: transparent;
    appearance: none;
}

table {
    display: table;
    margin-top: 20px;
    font-size: .875rem;
    border-collapse: collapse;
}

th {
    text-align: left;
    padding-left: .5rem;
}

thead tr {
    background-color: var(--row-highlight-bg-color);
    border-top: 2px solid rgb(229 231 235);
    border-bottom: 1px solid rgb(229 231 235);
    padding-top: 2px;
    padding-bottom: 2px;
}

tbody td {
    padding-top: 5px;
    padding-right: 4px;
}

td input, td select {
    width: 100%;
}

td {
    width: 150px;
}

td.price {
    width: 100px;
}

td button {
    padding: 0 7px;
    margin-left: 5px;
}

tfoot td {
    padding-top: 20px;
    text-align: center;
}