.speedtest-component-wrapper {
  display: flex;
  justify-content: center;
  padding: 20px 0;
  width: 100%;
}

.speedtest-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 30px;
  width: 100%;
  max-width: 460px;
  box-shadow: 0 10px 25px -5px rgba(13, 91, 181, 0.08);
  text-align: center;
  box-sizing: border-box;
}

.info-header {
  font-size: 13px;
  color: #475569;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 10px 16px;
  border-radius: 12px;
  margin-bottom: 25px;
  display: flex;
  justify-content: space-between;
}

.info-header span {
  color: #0d5bb5;
  font-weight: 600;
}

.gauge-container {
  position: relative;
  width: 280px;
  height: 170px;
  margin: 0 auto;
}

.speed-readout {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  text-align: center;
}

.speed-number {
  font-size: 42px;
  font-weight: 700;
  color: #0d5bb5;
  line-height: 1;
}

.speed-unit {
  font-size: 12px;
  color: #64748b;
  text-transform: uppercase;
  margin-top: 4px;
  font-weight: 600;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 25px 0;
  padding-top: 20px;
  border-top: 1px solid #e2e8f0;
}

.metric-item {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 10px 6px;
  border-radius: 12px;
}

.metric-label {
  font-size: 11px;
  color: #64748b;
  font-weight: 600;
  margin-bottom: 4px;
}

.metric-value {
  font-size: 17px;
  font-weight: 700;
  color: #0d5bb5;
}

.start-btn {
  width: 100%;
  background: #0d5bb5;
  color: #ffffff;
  border: none;
  padding: 15px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.start-btn:hover {
  background: #0a4993;
}

.start-btn:disabled {
  background: #e2e8f0;
  color: #94a3b8;
  cursor: not-allowed;
}