body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #f5f6fa;
  margin: 0;
  padding: 0;
}
.container {
  max-width: 400px;
  margin: 30px auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  padding: 24px;
}
.header {
  text-align: center;
  margin-bottom: 20px;
}

h1 {
  font-size: 1.5em;
  color: #3498db;
  margin: 0 0 12px 0;
}

.info-equipo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1.1em;
}

.label-equipo {
  font-weight: bold;
  color: #333;
}

.estado-equipo {
  font-weight: bold;
  font-size: 1.2em;
}

.estado-equipo.normal {
  color: #4caf50;
}

.estado-equipo.anomalia {
  color: #f44336;
}

.deposito-container {
  margin: 24px 0;
  padding: 16px;
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  border-radius: 12px;
}

.deposito {
  position: relative;
  width: 200px;
  height: 300px;
  margin: 0 auto 16px;
  background: linear-gradient(180deg, #ffffff 0%, #e3f2fd 100%);
  border: 3px solid #2196f3;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: inset 0 2px 8px rgba(0,0,0,0.1);
}

.nivel-agua {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, #42a5f5 0%, #1976d2 100%);
  transition: height 0.5s ease;
  height: 0%;
}

.indicadores {
  position: absolute;
  top: 0;
  bottom: 0;
  right: -60px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px 0;
}

.indicador {
  font-size: 0.75em;
  color: #666;
  padding: 4px 8px;
  background: rgba(255,255,255,0.8);
  border-radius: 4px;
}

.deposito-info {
  text-align: center;
}

.info-item {
  margin: 8px 0;
  font-size: 1.1em;
}

.label {
  font-weight: 600;
  color: #555;
}

.value {
  color: #2196f3;
  font-weight: bold;
  margin-left: 8px;
}

.elementos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 24px 0;
}

.elemento-card {
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  transition: transform 0.2s;
}

.elemento-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.elemento-icon {
  font-size: 2em;
  margin-bottom: 8px;
}

.elemento-label {
  font-size: 0.85em;
  color: #666;
  font-weight: 600;
  margin-bottom: 4px;
}

.elemento-valor {
  font-size: 1.1em;
  color: #2196f3;
  font-weight: bold;
}

.led {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  margin: 8px auto 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.led.verde {
  background: #4caf50;
  box-shadow: 0 0 12px #4caf50;
}

.led.amarillo {
  background: #ffc107;
  box-shadow: 0 0 12px #ffc107;
}

.led.rojo {
  background: #f44336;
  box-shadow: 0 0 12px #f44336;
}

.led.gris {
  background: #9e9e9e;
}
#ultimosEventos {
  margin-top: 18px;
}
.evento {
  background: #eaf6ff;
  border-radius: 6px;
  padding: 8px;
  margin-bottom: 8px;
  font-size: 0.98em;
}
