/* proctor.css — Proctor scoring UI styles for Cisco Arena Organizer
 * Cisco blue: #00BCEB  |  loaded after organizer.css
 */

/* ── Tab strip ── */
.proctor-tabs {
  display: flex;
  gap: 4px;
  border-bottom: 2px solid var(--line-soft);
  margin-bottom: 18px;
  margin-top: 12px;
}

.proctor-tab-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  color: var(--i2);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color .15s;
  white-space: nowrap;
}
.proctor-tab-btn.active {
  font-weight: 700;
  color: #00BCEB;
  border-bottom-color: #00BCEB;
}
.proctor-tab-btn:hover:not(.active) {
  color: var(--i1);
}

/* ── Tab badge ── */
.proctor-badge {
  background: #00BCEB;
  color: #fff;
  border-radius: 10px;
  font-size: 10px;
  font-weight: 700;
  padding: 1px 6px;
  min-width: 18px;
  text-align: center;
  line-height: 16px;
}

/* ── GamePlan scoring layout ── */
.gp-scoring-grid {
  display: grid;
  grid-template-columns: 200px 1fr 320px;
  gap: 14px;
  align-items: start;
}

/* Team list item */
.gp-team-item {
  padding: 10px 14px;
  border-bottom: 1px solid var(--line-soft);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  border-left: 3px solid transparent;
  transition: background .12s;
}
.gp-team-item:hover { background: var(--s2); }
.gp-team-item.active {
  background: color-mix(in srgb, #00BCEB 12%, transparent);
  border-left-color: #00BCEB;
}

/* Rubric band buttons */
.rubric-band-btn {
  padding: 4px 10px;
  font-size: 12px;
  border-radius: 4px;
  cursor: pointer;
  transition: all .1s;
}
.rubric-band-btn.selected {
  background: #00BCEB;
  border-color: #00BCEB;
  color: #fff;
  font-weight: 700;
}
.rubric-band-btn:not(.selected) {
  background: var(--s2);
  border: 1px solid var(--line-soft);
  color: var(--i2);
}

/* ── Zona Mixta ── */
.zm-curveball-btn {
  padding: 6px 14px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
  transition: all .12s;
}
.zm-curveball-btn.active {
  background: #00BCEB;
  border-color: #00BCEB;
  color: #fff;
  font-weight: 700;
}
.zm-curveball-btn:not(.active) {
  background: var(--s2);
  border: 1px solid var(--line-soft);
  color: var(--i2);
}

/* ── Triage review table ── */
.triage-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.triage-table th {
  padding: 8px 10px;
  color: var(--i3);
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .05em;
  border-bottom: 2px solid var(--line-soft);
  text-align: left;
}
.triage-table td {
  padding: 10px 10px;
  border-bottom: 1px solid var(--line-soft);
  vertical-align: top;
}
.triage-table tr:nth-child(even) td {
  background: var(--s2);
}

/* Override modal backdrop */
.proctor-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}
