/* Lazy vs. Rich Training Dynamics Styles */

:root {
  --color-teacher: #e8e8e8;
  --color-student: #c8c8c8;
}

.lvr-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1em;
}

.page-title {
  margin-top: 2em;
  margin-bottom: 0;
}

.reset-button {
  padding: 8px 16px;
  background-color: #f0f0f0;
  border: 1px solid #ccc;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.2s;
}

.reset-button:hover {
  background-color: #e0e0e0;
}

.sim-button {
  padding: 8px 16px;
  background-color: #f0f0f0;
  border: 1px solid #ccc;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.2s;
}

.sim-button:hover {
  background-color: #e0e0e0;
}

.sim-button:active {
  background-color: #d0d0d0;
}

.section-label {
  font-size: 12px;
  color: #888;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 20px;
}

input[type="range"] {
  accent-color: #555;
}

.slider-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0.5em 1em;
  border-radius: 6px;
}

.slider-row.teacher { background-color: var(--color-teacher); }
.slider-row.student { background-color: var(--color-student); }

.slider-label {
  font-size: 15px;
  min-width: 2em;
  text-align: right;
}

.slider-name {
  font-size: 13px;
  color: #666;
  min-width: 7em;
}

.slider-input {
  width: 140px;
}

.slider-value {
  font-size: 14px;
  min-width: 3em;
}

.plots-container {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 2em;
}

.plot-wrapper {
  flex: 1;
}

.plot-canvas-box {
  position: relative;
}

.plot-canvas-box.square {
  /* Chart.js will set height = width via aspectRatio:1 */
}

.logscale-control {
  margin-top: 10px;
  text-align: center;
  font-size: 14px;
}

.logscale-control label {
  margin-right: 24px;
  cursor: pointer;
}
