.power-indicator {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #223d3dbc;
  color: white;
  padding: 12px 16px;
  border-radius: 20px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 9999;
  font-family: system-ui, -apple-system, sans-serif;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(207, 207, 207, 0.781);
}

.battery-container {
  width: 24px;
  height: 12px;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  border-radius: 2px;
  position: relative;
  background: transparent;
}

.battery-tip {
  position: absolute;
  right: -3px;
  top: 2px;
  width: 2px;
  height: 6px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 1px;
}

.battery-bar {
  height: 100%;
  background: #4ade80;
  border-radius: 1px;
  transition: all 0.3s ease;
}

#power-text {
  font-weight: 500;
  white-space: nowrap;
}