/* Battery Level Styles */
.battery-display {
  display: flex;
  align-items: center;
  gap: 8px;
}

.battery-bar {
  position: relative;
  width: 40px;
  height: 8px;
  background-color: #333;
  border: 1px solid #555;
  border-radius: 4px;
  overflow: hidden;
}

.battery-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  border-radius: 3px;
  transition: width 0.3s ease;
}

.battery-fill.battery-high {
  background: linear-gradient(90deg, #4CAF50, #66BB6A);
}

.battery-fill.battery-medium {
  background: linear-gradient(90deg, #FF9800, #FFB74D);
}

.battery-fill.battery-low {
  background: linear-gradient(90deg, #F44336, #EF5350);
}

.battery-text {
  font-size: 11px;
  color: #fff;
  font-weight: bold;
  min-width: 30px;
}

/* Detail view battery display */
.detail-battery-display {
  display: flex;
  align-items: center;
  gap: 10px;
}

.detail-battery-bar {
  width: 60px;
  height: 10px;
  background-color: #333;
  border: 1px solid #555;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}

.detail-battery-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  border-radius: 4px;
  transition: width 0.3s ease;
}

.detail-battery-fill.battery-high {
  background: linear-gradient(90deg, #4CAF50, #66BB6A);
}

.detail-battery-fill.battery-medium {
  background: linear-gradient(90deg, #FF9800, #FFB74D);
}

.detail-battery-fill.battery-low {
  background: linear-gradient(90deg, #F44336, #EF5350);
}

.detail-battery-text {
  font-size: 14px;
  color: #fff;
  font-weight: bold;
}

.helmet-battery {
  font-size: 12px;
  color: #bbb;
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.helmet-battery .battery-display {
  gap: 4px;
}

.helmet-battery .battery-bar {
  width: 25px;
  height: 5px;
}

.helmet-battery .battery-text {
  font-size: 10px;
  min-width: 22px;
}
