/**
 * Gauge Styles
 */

.gauge-container {
  width: 100%;
  max-width: 400px;
  height: auto;
  aspect-ratio: 1;
  padding: 10px;
  border-radius: 13px;
  position: relative;
  margin: 0 auto;
}

.gauge-container > .label {
  position: absolute;
  right: 0;
  top: 0;
  display: inline-block;
  background: rgba(0,0,0,0.5);
  font-family: monospace;
  font-size: 0.8em;
  padding: 5px 10px;
  border-radius: 0 13px 0 0;
}

.gauge-container > .gauge .dial {
  stroke: rgb(34, 36, 46);
  stroke-width: 2;
  fill: rgba(0,0,0,0);
}

.gauge-container > .gauge .value {
  stroke: rgb(47, 227, 255);
  stroke-width: 2;
  fill: rgba(0,0,0,0);
}

.gauge-container > .gauge .value-text {
  fill: rgb(47, 227, 255);
  font-family: sans-serif;
  font-weight: bold;
  font-size: 0.8em;
}

/* Two variant - thicker strokes */
.gauge-container.two > .gauge .dial {
  stroke-width: 10;
}

.gauge-container.two > .gauge .value {
  stroke: orange;
  stroke-dasharray: none;
  stroke-width: 13;
}

.gauge-container.two > .gauge .value-text {
  fill: #333;
  font-weight: 100;
  font-size: 1em;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .gauge-container {
    max-width: 300px;
  }
}
