/* ── Pagina layout ── */
.session-page {
  min-height: 100vh;
  background: var(--bg-body);
  display: flex;
  flex-direction: column;
}

.session-topbar {
  height: 52px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 20px;
  gap: 12px;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.session-topbar-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.session-topbar-logo {
  width: 28px;
  height: 28px;
  border-radius: 7px;
}

.session-topbar-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
}

.session-topbar-divider {
  width: 1px;
  height: 20px;
  background: var(--border);
}

.session-topbar-piece {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 300px;
}

.session-topbar-section {
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 250px;
}

.session-topbar-zone {
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: var(--accent-light);
  color: var(--accent);
  flex-shrink: 0;
}

.session-topbar .nav-today-time {
  margin-left: auto;
}

/* ── Twee-kolom layout ── */
.session-body {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 16px;
  padding: 16px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* ── Linkerkolom ── */
.session-left {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ── Rechterkolom ── */
.session-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ── Panel component ── */
.session-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  box-shadow: var(--shadow-sm);
}

.panel-title {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.panel-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 12px;
}

.panel-header-row .panel-title {
  margin-bottom: 0;
}

.btn-analysis-compact {
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, #60a5fa, #2563eb);
  font-size: 11px;
  font-weight: 700;
  color: white;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.15s, opacity 0.15s, box-shadow 0.15s;
}

.btn-analysis-compact:not(:disabled):hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-analysis-compact:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
}

/* ── Timer ── */
.timer-display {
  font-size: 52px;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  text-align: center;
  font-family: var(--font-mono);
  cursor: text;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: border-color 0.15s;
  line-height: 1;
  margin: 8px 0 4px;
  padding: 8px 4px;
}

.timer-display:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--accent-light);
}

.timer-hint {
  text-align: center;
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.timer-info-box {
  text-align: center;
  margin-top: 6px;
  padding: 6px 12px;
  background: var(--success-light);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: var(--radius-sm);
  font-size: 11px;
  color: #065f46;
  line-height: 1.5;
}

.timer-controls {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 6px;
  margin-top: 12px;
}

.timer-btn {
  padding: 9px 4px;
  border-radius: var(--radius-sm);
  border: none;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s, opacity 0.15s,
              box-shadow 0.15s;
  color: white;
}

.timer-btn:not(:disabled):hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.timer-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
}

.timer-btn.start {
  background: linear-gradient(135deg, #22c55e, #16a34a);
}
.timer-btn.free {
  background: linear-gradient(135deg, #60a5fa, #2563eb);
  font-size: 11px;
}
.timer-btn.pause {
  background: linear-gradient(135deg, #fb923c, #f97316);
}
.timer-btn.stop {
  background: linear-gradient(135deg, #f87171, #ef4444);
}

.session-notes-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.session-notes-panel .notes-area {
  flex: 1;
  min-height: 220px;
}

/* ── Countdown (right column — no practice-time logging) ── */
.countdown-panel--compact {
  padding: 12px 16px;
}

.countdown-hint {
  margin: 0 0 8px;
  font-size: 10px;
  line-height: 1.45;
  color: var(--text-muted);
  text-align: center;
}

.countdown-compact-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.countdown-duration-wrap {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
}

.countdown-mini-btn {
  width: 22px;
  height: 22px;
  border-radius: 4px;
  border: 1px solid var(--border);
  background: var(--surface-2);
  color: var(--text-primary);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 1;
}

.countdown-mini-btn:hover:not(:disabled) {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

.countdown-mini-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.countdown-min-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
  margin-right: 2px;
}

.countdown-panel--compact .countdown-duration-input {
  width: 32px;
  padding: 2px 0;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  font-family: var(--font-mono);
  background: var(--surface);
  color: var(--text-primary);
}

.countdown-display {
  flex: 1;
  font-size: 16px;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  text-align: center;
  font-family: var(--font-mono);
  cursor: text;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: border-color 0.15s;
  line-height: 1;
  padding: 4px 6px;
  margin: 0;
  min-width: 0;
}

.countdown-display:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--accent-light);
}

.countdown-display.countdown-finished {
  color: var(--warning);
  border-color: rgba(245, 158, 11, 0.45);
  background: var(--warning-light);
  animation: countdown-finished-pulse 1.2s ease-in-out infinite;
}

@keyframes countdown-finished-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.2);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(245, 158, 11, 0.08);
  }
}

.countdown-toggle-btn {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 50%;
  border: none;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  color: white;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  transition: transform 0.15s, opacity 0.15s, box-shadow 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 1;
}

.countdown-toggle-btn.running {
  background: linear-gradient(135deg, #fb923c, #f97316);
}

.countdown-toggle-btn:not(:disabled):hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.countdown-toggle-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
}

/* ── Tellers ── */
.counter-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.counter-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  align-items: center;
  gap: 8px;
  min-height: 36px;
}

.counter-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-primary);
  cursor: help;
}

.counter-controls {
  display: flex;
  align-items: center;
  gap: 6px;
}

.counter-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface-2);
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, color 0.15s;
  flex-shrink: 0;
}

.counter-btn:hover {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

.counter-btn.reset-btn {
  border-radius: 6px;
  width: auto;
  padding: 0 8px;
  font-size: 11px;
  background: var(--warning-light);
  border-color: var(--warning);
  color: #92400e;
}

.counter-btn.reset-btn:hover {
  background: var(--warning);
  color: white;
}

.counter-value {
  font-size: 22px;
  font-weight: 500;
  min-width: 40px;
  text-align: center;
  color: var(--text-primary);
  font-family: var(--font-mono);
}

.counter-value.danger {
  color: var(--danger);
}

.counter-divider {
  height: 1px;
  background: var(--border);
  margin: 4px 0;
}

/* ── Gebrian toggle ── */
.gebrian-toggle-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  align-items: center;
  gap: 8px;
}

.toggle-switch-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

.toggle-switch {
  position: relative;
  width: 40px;
  height: 22px;
  flex-shrink: 0;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.toggle-track {
  position: absolute;
  inset: 0;
  background: #cbd5e1;
  border-radius: 22px;
  cursor: pointer;
  transition: background 0.2s;
}

.toggle-track::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  background: white;
  border-radius: 50%;
  transition: transform 0.2s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.toggle-switch input:checked + .toggle-track {
  background: var(--accent);
}

.toggle-switch input:checked + .toggle-track::after {
  transform: translateX(18px);
}

.intensity-btns {
  display: flex;
  gap: 4px;
}

.intensity-btn {
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface-2);
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.15s;
}

.intensity-btn.active {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

/* ── FrustrationGuard banner ── */
.frustration-banner {
  display: none;
  padding: 10px 14px;
  background: #eff6ff;
  border: 1px solid #93c5fd;
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-sm);
  font-size: 12px;
  color: var(--text-primary);
  margin-top: 8px;
}

.frustration-banner.active {
  display: block;
}

.frustration-banner-actions {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

/* ── Tempo sectie ── */
.tempo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.tempo-field label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.tempo-input {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  font-family: var(--font-mono);
  background: var(--surface);
  color: var(--text-primary);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.tempo-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(30,110,181,0.12);
}

.tempo-info-row {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 6px;
  padding: 6px 8px;
  background: var(--surface-2);
  border-radius: var(--radius-sm);
}

/* ── Metronome ── */
.metronome-block {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.metronome-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}

.metronome-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
}

.metro-time-sig-label {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
}

.metro-time-sig-text {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
}

.metro-time-sig-select {
  min-width: 58px;
  padding: 4px 6px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--text-primary);
  font-size: 11px;
  font-weight: 700;
  font-family: var(--font-mono);
  cursor: pointer;
}

.metro-time-sig-select:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.metronome-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 8px;
}

.metro-btn {
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  border: none;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  color: white;
  transition: transform 0.15s, opacity 0.15s, box-shadow 0.15s;
}

.metro-btn:not(:disabled):hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.metro-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
}

.metro-btn.metro-start {
  background: linear-gradient(135deg, #22c55e, #16a34a);
}

.metro-btn.metro-stop {
  background: linear-gradient(135deg, #f87171, #ef4444);
}

.metro-btn.metro-tap {
  background: linear-gradient(135deg, #fb923c, #ea580c);
  min-width: 52px;
}

.metro-btn.metro-tap:not(:disabled):active,
.metro-btn.metro-tap.metro-tap-pulse {
  transform: scale(0.97);
  box-shadow: 0 0 0 2px rgba(234, 88, 12, 0.28);
}

.metro-bpm-group {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
}

.metro-bpm-display {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  min-width: 88px;
  padding: 6px 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  font-family: var(--font-mono);
  transition: border-color 0.1s, box-shadow 0.1s, transform 0.1s;
}

.metro-bpm-display.metro-pulse {
  transform: scale(1.04);
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(30, 110, 181, 0.15);
}

.metro-bpm-display.metro-accent {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(30, 110, 181, 0.22);
}

.metro-bpm-display:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(30, 110, 181, 0.12);
}

.metro-bpm-input {
  width: 44px;
  padding: 0;
  border: none;
  background: transparent;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  font-family: var(--font-mono);
  text-align: center;
  line-height: 1;
  -moz-appearance: textfield;
  appearance: textfield;
}

.metro-bpm-input::-webkit-outer-spin-button,
.metro-bpm-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.metro-bpm-input:focus {
  outline: none;
}

.metro-bpm-input:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.metro-bpm-unit {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
}

.metro-beat-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border);
  align-self: center;
  margin-right: 2px;
  transition: background 0.1s, transform 0.1s;
}

.metro-bpm-display.metro-pulse .metro-beat-dot {
  background: var(--accent);
  transform: scale(1.3);
}

.metro-bpm-display.metro-accent .metro-beat-dot {
  background: var(--accent);
  transform: scale(1.5);
}

/* ── Energy sectie ── */
.energy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.energy-btn {
  padding: 8px 4px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  text-align: center;
  transition: all 0.15s;
}

.energy-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.energy-btn.selected {
  background: var(--accent-light);
  border-color: var(--accent);
  color: var(--accent);
  font-weight: 700;
}

.energy-btn.selected.low {
  background: var(--warning-light);
  border-color: var(--warning);
  color: #92400e;
}

/* ── Notities ── */
.notes-area {
  width: 100%;
  min-height: 100px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-family: var(--font-sans);
  background: var(--surface);
  color: var(--text-primary);
  resize: vertical;
  transition: border-color 0.15s, box-shadow 0.15s;
  line-height: 1.5;
}

.notes-area:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(30,110,181,0.12);
}

.prev-notes {
  max-height: 100px;
  overflow-y: auto;
  padding: 8px 10px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.5;
  white-space: pre-wrap;
  word-break: break-word;
}

/* ── Actieknoppen ── */
.session-actions {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 8px;
  margin-top: auto;
}

/* ── Unsaved indicator ── */
.unsaved-indicator {
  position: fixed;
  top: 16px;
  right: 16px;
  background: var(--accent-2);
  color: white;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: var(--shadow-md);
  display: none;
  z-index: 100;
}

.unsaved-indicator.visible {
  display: block;
}

/* ── Micro-break toast ── */
.micro-break-toast {
  display: none;
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  padding: 16px 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  max-width: 480px;
  width: calc(100% - 32px);
  animation: slideUp 0.4s cubic-bezier(0.34,1.56,0.64,1);
}

.micro-break-toast.visible {
  display: flex;
  align-items: center;
  gap: 14px;
}

.micro-break-icon { font-size: 32px; flex-shrink: 0; }

.micro-break-text strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 3px;
}

.micro-break-text small {
  font-size: 12px;
  opacity: 0.9;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* ── Evaluatie modal ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 16px;
}

.modal-overlay.active {
  display: flex;
  animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-box {
  background: var(--surface);
  border-radius: var(--radius-xl);
  padding: 28px;
  width: min(680px, 100%);
  max-height: calc(100vh - 32px);
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  animation: slideUpModal 0.25s ease;
}

@keyframes slideUpModal {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-header {
  text-align: center;
  margin-bottom: 20px;
}

.modal-header h2 {
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 4px;
  color: var(--text-primary);
}

.modal-header p {
  font-size: 13px;
  color: var(--text-secondary);
  margin: 0;
}

.eval-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}

.eval-option {
  padding: 14px 16px;
  border-radius: var(--radius-md);
  border: 2px solid var(--border);
  cursor: pointer;
  transition: all 0.15s;
}

.eval-option:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.eval-option.selected {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(30,110,181,0.15);
}

.eval-option.poor   { background: #fef2f2; }
.eval-option.fair   { background: #fffbeb; }
.eval-option.good   { background: #ecfdf5; }
.eval-option.excellent { background: #eff6ff; }

.eval-option.disabled {
  opacity: 0.4;
  pointer-events: none;
  filter: grayscale(0.6);
}

.eval-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 3px;
}

.eval-desc {
  font-size: 11px;
  color: var(--text-secondary);
}

.session-summary-panel {
  display: none;
  padding: 14px 16px;
  background: var(--success-light);
  border: 1px solid rgba(16,185,129,0.3);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  font-size: 13px;
  line-height: 1.8;
  color: var(--text-primary);
}

.modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 8px;
}

/* ── Free Practice badge op session card ── */
.session-page.free-practice-active .session-body {
  outline: 3px solid var(--accent);
  outline-offset: -3px;
  border-radius: var(--radius-sm);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .session-body {
    grid-template-columns: 1fr;
    padding: 12px;
  }
  .timer-display { font-size: 40px; }
  .countdown-panel--compact .countdown-display { font-size: 18px; }
  .eval-options { grid-template-columns: 1fr; }
}

/* ── Hard Stop Modal ── */
.hard-stop-box {
  max-width: 480px;
  text-align: center;
}

.hard-stop-icon {
  font-size: 48px;
  margin-bottom: 12px;
  animation: none;
}

.modal-overlay.active .hard-stop-icon {
  animation: pulse-stop 1.5s ease-in-out infinite;
}

@keyframes pulse-stop {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.hard-stop-science {
  background: var(--warning-light);
  border: 1px solid rgba(245,158,11,0.3);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 12px;
  color: #92400e;
  line-height: 1.5;
  margin: 16px 0;
  text-align: left;
}

.hard-stop-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.hard-stop-option {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.15s;
  text-align: left;
}

.hard-stop-option:hover {
  border-color: var(--accent);
  background: var(--accent-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

#btnHardStopArchive {
  border-color: rgba(245,158,11,0.4);
  background: var(--warning-light);
}

#btnHardStopArchive:hover {
  border-color: var(--warning);
  background: #fde68a;
}

#btnHardStopSave {
  background: var(--surface-2);
}

.hard-stop-option-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.hard-stop-option-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.hard-stop-option-desc {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.hard-stop-option-desc strong {
  color: var(--accent-2);
}
