 * 16. Bottom Log
 * ============================================================ */

#bottom-log {
  margin-top: var(--gap-module);
  margin-bottom: var(--gap-module);
}

#bottom-log #timeline {
  background: var(--bg-base);
  border: 1px solid #333;
  border-radius: 0;
  padding: 8px 14px;
}

#bottom-log .side-title {
  font-size: 10px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 6px;
}

#log {
  max-height: 180px;
  overflow-y: auto;
  font-size: 11px;
  line-height: 1.7;
}

.log-e {
  border-bottom: 1px solid #252525;
  padding: 1px 0;
}

.log-e.goal {
  color: var(--gold-primary);
  font-weight: bold;
}

.log-e.concede {
  color: var(--red);
  font-weight: bold;
}

.log-e.ok {
  color: var(--green);
}

.log-e.fail {
  color: var(--red);
}

.log-e.info {
  color: var(--text-dim);
}

.log-e.combo {
  color: var(--gold-primary);
}

/* ============================================================
 * 17. Pick Coach
 * ============================================================ */

.pick-coach {
  flex: 1;
  min-width: 220px;
  padding: 14px;
  background: var(--bg-card);
  border: 2px solid var(--border-default);
  border-radius: 0;
  cursor: pointer;
  position: relative;
  box-shadow: var(--shadow-card);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.pick-coach::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  height: 4px;
  background: var(--gold-primary);
  border-radius: 0;
  pointer-events: none;
}

.pick-coach:hover {
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-card), var(--shadow-gold-glow);
}

.pick-coach .pc-name {
  font-size: 14px;
  font-weight: bold;
  color: var(--gold-primary);
  margin-bottom: 4px;
}

.pick-coach .pc-style {
  font-size: 12px;
  margin-bottom: 8px;
  color: var(--text-main);
}

.pick-coach .pc-desc {
  font-size: 11px;
  color: var(--text-dim);
  line-height: 1.5;
}

.pick-coach .pc-scout {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 8px;
}

.pick-coach .pc-scout span {
  font-size: 11px;
  color: var(--text-dim);
  line-height: 1.4;
  display: block;
  font-style: italic;
}

/* ============================================================
 * 18. Coach Callout
 * ============================================================ */

.coach-callout {
  background: var(--bg-base);
  border: none;
  border-left: 2px solid var(--gold-primary);
  border-radius: 0;
  padding: 8px 12px;
  margin-bottom: 10px;
  font-size: 12px;
  line-height: 1.5;
}

.coach-callout b {
  display: block;
  color: var(--gold-primary);
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 2px;
}

.coach-callout span {
  display: block;
  color: var(--text-main);
  font-size: 11px;
  font-style: italic;
}

/* ============================================================
 * 19. Threat Meter / Status Chips
 * ============================================================ */

.threat-meter {
  display: block;
  height: 3px;
  background: var(--bg-card);
  border-radius: 0;
  margin: 4px 0;
  overflow: hidden;
}

.threat-meter span {
  display: block;
  height: 100%;
  background: var(--red);
}

.threat-meter.low span {
  background: var(--green);
}

.threat-meter.mid span {
  background: var(--gold-primary);
}

.threat-meter.high span {
  background: var(--red);
}

.threat-line {
  font-size: 11px;
  color: var(--text-dim);
  margin: 2px 0;
}

.status-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.status-chips span {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  padding: 1px 6px;
  font-size: 10px;
  color: var(--text-dim);
  border-radius: 0;
}

