#peticion-nuevo-lote #historico {
    display: grid;
    grid-template-columns: auto auto auto auto auto auto auto;
    padding-bottom: 20px;
}

#peticion-nuevo-lote #historico .observaciones {
    grid-column: 1 / -1;
    font-style: italic;
    color: #666;
    padding-left: 8px;
    background-color: inherit;
    border-bottom: 1px solid rgb(211, 208, 208);
    margin-bottom: 4px;
}

#peticion-nuevo-lote #historico .header {
    font-weight: bold;
}

#peticion-nuevo-lote #historico .sep {
    border-bottom: 1px solid rgb(211, 208, 208);
}

#peticion-nuevo-lote #historico>div {
    padding: 2px 4px;
    display: flex;
    align-items: center;
}

#peticion-nuevo-lote #historico .header.sep:not(.row2) {
    border-bottom: 1px solid grey;
}


#peticion-nuevo-lote .delete>img {
    width: 32px;
    height: 32px;
}


#peticion-nuevo-lote:not(.permiso-altas-lote) #request-lote {
    display: none;
}

#peticion-nuevo-lote .estado-aceptado {
    /* background-color: green ; */
    padding: 1px 4px;
    margin: 1px 0px;
    border-radius: 4px;
    color: white;
    font-weight: bold;
    justify-content: center;
    font-size: 0;
}

#peticion-nuevo-lote .estado-aceptado::before {
    content: "✅";
    font-size: 16px;
    color: white;
}

#peticion-nuevo-lote .estado-cancelado {
    /* background-color: red ; */
    padding: 1px 4px;
    margin: 1px 0px;
    border-radius: 4px;
    color: white;
    font-weight: bold;
    justify-content: center;
    font-size: 0;
}

#peticion-nuevo-lote .estado-cancelado::before {
    content: "❌";
    font-size: 16px;
    color: white;
}

#peticion-nuevo-lote .estado-expirado {
    /* background-color: rgb(255, 217, 0) ; */
    padding: 1px 4px;
    margin: 1px 0px;
    border-radius: 4px;
    color: white;
    font-weight: bold;
    justify-content: center;
    font-size: 0;
}

#peticion-nuevo-lote .estado-expirado::before {
    content: "⏰";
    font-size: 16px;
    color: black;
}