
/* --- Test Mode Controls --- */

#testmode-controls-wrapper {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 100%;
  max-width: 480px;
  padding: 10px 0;
}

/* Test mode color navigation buttons */
.testmode-color-controls {
  width: 100%;
  max-width: 480px;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 2;
  margin-top: 16px;
}

.testmode-color-controls button {
  padding: 6px 16px;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 8px;
  border: none;
  background: #222;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  transition: background 0.2s;
}

.testmode-color-controls button:hover {
  background: #444;
}

/* Color swatches */
.testmode-color-controls .color-swatch {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  cursor: pointer;
  background: #222;
  transition: transform 0.15s, border-color 0.15s;
  display: inline-block;
  box-sizing: border-box;
  aspect-ratio: 1 / 1;
}

.testmode-color-controls .color-swatch.selected {
  border-color: #fff;
  transform: scale(1.15);
}

.testmode-color-controls .color-swatch:hover {
  transform: scale(1.1);
  border-color: #aaa;
}


/* --- Test mode title glow buttons --- */

.testmode-titleglow {
  width: 100%;
  max-width: 480px;
  margin: 4px auto;
  margin-top: 8px;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 2;
}

.testmode-titleglow button {
  padding: 4px 14px;
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 8px;
  border: 2px solid transparent;
  background: #222;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  transition: background 0.2s, border 0.2s;
}

.testmode-titleglow button.selected {
  color: #fff;
  border: 2px solid #fff;
}

.testmode-titleglow button:hover {
  background: #444;
}
