/* Emergency Stop Pull Switch - Painted metal knob in white square */

.emergency-stop-panel {
  background: #e0e0e0;
  border-radius: 4px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  height: 100%;
  box-sizing: border-box;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.emergency-stop-knob {
  width: 50%;
  height: 50%;
  border-radius: 50%;
  /* Painted metal red finish */
  background:
    radial-gradient(circle at 35% 35%, #d44 0%, #b22 30%, #911 60%, #700 100%);
  border: 2px solid #500;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* Metal knob depth effect */
  box-shadow:
    0 3px 6px rgba(0, 0, 0, 0.4),
    0 1px 2px rgba(0, 0, 0, 0.3),
    inset 0 -2px 4px rgba(0, 0, 0, 0.3),
    inset 0 2px 2px rgba(255, 100, 100, 0.2);
  cursor: default;
}

.emergency-text,
.stop-text {
  color: #fff;
  font-family: 'Arial', 'Helvetica', sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  /* Painted lettering look */
  text-shadow: none;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.emergency-text {
  font-size: 9px;
}

.stop-text {
  font-size: 12px;
  margin-top: 1px;
}
