/*
Theme Name: swell_child
Template: swell
*/

#dance-analyzer-app {
  font-family: sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  background: #1a1a1a;
  padding: 20px;
  border-radius: 8px;
  box-sizing: border-box;
}

.viewports {
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 20px;
}

.viewport-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.viewport-wrapper h3 {
  color: #fff;
  text-align: center;
  margin: 0 0 10px 0;
  font-size: 1.2rem;
}

canvas {
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: #000;
  border-radius: 4px;
  border: 1px solid #333;
}

.controls {
  width: 100%;
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  background: #2a2a2a;
  padding: 15px;
  border-radius: 4px;
  box-sizing: border-box;
}

.controls button {
  padding: 10px 20px;
  cursor: pointer;
  background: #007cba;
  /* WP admin blue */
  color: #fff;
  border: none;
  border-radius: 4px;
  font-weight: bold;
}

.controls input[type="range"] {
  flex: 1;
  cursor: pointer;
}

.time-display {
  color: #fff;
  font-variant-numeric: tabular-nums;
  min-width: 80px;
  text-align: right;
}