#monitor h4 {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 600;
  color: #0078D7;
}

.estado-contenedor {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.estado-box-full,
.estado-box {
  background: #fff;
  padding: 12px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.estado-box-full {
  flex: 1 1 80%;
  max-width: 80%;
}

.estado-box {
  flex: 1 1 20%;
  max-width: 20%;
}

.bar {
  width: 100%;
  height: 12px;
  background: #e5e5e5;
  border-radius: 6px;
  overflow: hidden;
  margin-top: 4px;
}

.bar-fill {
  height: 100%;
  transition: width 0.3s ease;
  border-radius: 6px;
}

.bar-green  { background: #4caf50; }
.bar-yellow { background: #ffb300; }
.bar-red    { background: #d32f2f; }
