.ts-body {

color: yellow !important;
}

/* Assuming the label is in the first table cell of each row */
#truckstock-app tr > td:first-child {
    display: none; /* Hide the label cells */
}

.tstk-wrap {
display: block;
padding: 10px;
background-color: #dceec2;
}

.sold-big {
    padding: 0px;
    margin: 0px;
    position: relative;
    display: block; /* Para que el overlay se ajuste al tamaño de la imagen */
}

.sold-big img {
    padding: 0px;
    margin: 0px;
    display: block;
    width: 100%; /* Ajusta según necesites */
    height: auto;
}

.sold-big::after {
    padding: 0px;
    margin: 0px;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("sold-big.png") center center no-repeat;
    background-size: contain; /* o cover según prefieras */
    pointer-events: none; /* Para que no bloquee clics */
}

.sold-thumb {
    padding: 0px;
    margin: 0px;
    position: relative;
    display: block; /* Para que el overlay se ajuste al tamaño de la imagen */
}

.sold-thumb img {
    padding: 0px;
    margin: 0px;
    display: block;
    width: 100%; /* Ajusta según necesites */
    height: auto;
}

.sold-thumb::after {
    padding: 0px;
    margin: 0px;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("sold-thumb.png") center center no-repeat;
    background-size: contain; /* o cover según prefieras */
    pointer-events: none; /* Para que no bloquee clics */
}
