/* ...existing code... */
.home-content {
    display: flex;
    flex-direction: column-reverse;
    border-radius: 3vh;
    margin: 1.5vh;
    height: 32vh;
    padding: 3vh;
    background: #e9e9e9;
}

.pedido-id-text {
  color: #414141;
  font-size: 2vh;


  display: flex;
  justify-content: space-between;
  align-items: center;

}
.pedido-id-left {
  font-weight: 500;
  text-align: left;
}
.pedido-id-right {

  font-weight: 500;
  text-align: right;
}
.pedido-resumen-text {
  color: #ffffff;
  font-size: 1.5vh;
  
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 2.6vh 0;
  gap: 0.6vh;
  
}
.pedido-estado-descriptivo {
  display: flex;
  justify-content: space-between;
  align-items: center;
 
  color: rgb(133, 133, 133);
 
  font-size: 1.8vh;
  font-weight: 500;
  

 
 

}
.pedido-estado-descriptivo-left {
  flex: 1;
  text-align: left;
  white-space: pre-line;
  font-size: 1em;
  font-weight: 500;
  opacity: 0.93;
}
.pedido-estado-descriptivo-right {
  flex: 0 0 auto;
  text-align: right;
  font-size: 1em;
  font-weight: 400;
  opacity: 0.8;
  margin-left: 1.5em;
}

/* Barra de progreso simple para estado de pedido */
.pedido-progress-bar-container {
  width: 100% !important;
  min-width: 120px;
  height: 0.8vh;
  border-radius: 0.4vh;
  margin: 2.6vh 0;
  position: relative;
  overflow: hidden;
  background: #333 !important;
}
.pedido-progress-bar {
  height: 100%;
  background: #19e28a !important;
  border-radius: 0.4vh;
  min-width: 0;
  
}

.pedido-estado-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.8vh;
  margin:0 0 3vh;
}

.pedido-estado-titulo {
  font-size: 3vh;
  font-weight: bold;
  color: #ffffff;
}

.pedido-estado-text {
  font-size: 1.6vh;
  font-weight: normal;
  color: #19e28a;
}

/* ...existing code... */