/* ── GSB Daily Ops — guest panel tab ─────────────────────────────────────── */

#gsb-ops-tab {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Stat bar at top */
.gsb-ops-stat-bar {
  display: flex;
  gap: 0;
  background: var(--gsbc-primary);
  color: #fff;
  flex-shrink: 0;
}
.gsb-ops-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 4px;
  border-right: 1px solid rgba(255,255,255,0.15);
  font-size: 11px;
  text-align: center;
}
.gsb-ops-stat:last-child { border-right: none; }
.gsb-ops-stat-val {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 2px;
}
.gsb-ops-stat-lbl {
  opacity: 0.75;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Scrollable content */
.gsb-ops-content {
  flex: 1;
  overflow-y: auto;
  padding: 0 0 24px;
}

/* Collapsible sections */
.gsb-ops-section {
  border-bottom: 1px solid var(--gsbc-border);
}
.gsb-ops-section-hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  cursor: pointer;
  background: var(--gsbc-bg2);
  user-select: none;
  -webkit-user-select: none;
}
.gsb-ops-section-hdr:hover { background: var(--gsbc-bg); }
.gsb-ops-section-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gsbc-text);
}
.gsb-ops-section-chevron {
  font-size: 12px;
  color: var(--gsbc-muted);
  transition: transform 0.2s;
}
.gsb-ops-section.open .gsb-ops-section-chevron {
  transform: rotate(180deg);
}
.gsb-ops-section-body {
  display: none;
  padding: 8px 16px 14px;
}
.gsb-ops-section.open .gsb-ops-section-body {
  display: block;
}

/* Snow report */
.gsb-ops-snow-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 10px;
}
.gsb-ops-snow-stat {
  background: var(--gsbc-bg2);
  border: 1px solid var(--gsbc-border);
  border-radius: 8px;
  padding: 8px;
  text-align: center;
}
.gsb-ops-snow-stat-val {
  font-size: 18px;
  font-weight: 700;
  color: var(--gsbc-text);
  line-height: 1.1;
}
.gsb-ops-snow-stat-lbl {
  font-size: 10px;
  color: var(--gsbc-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 2px;
}
.gsb-ops-surface {
  font-size: 13px;
  color: var(--gsbc-text);
  margin-bottom: 6px;
  font-weight: 500;
}
.gsb-ops-surface-detail {
  font-size: 12px;
  color: var(--gsbc-muted);
  line-height: 1.5;
}

/* Lift / trail rows */
.gsb-ops-item-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.gsb-ops-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid var(--gsbc-border);
  gap: 8px;
}
.gsb-ops-item-row:last-child { border-bottom: none; }
.gsb-ops-item-name {
  font-size: 13px;
  color: var(--gsbc-text);
  flex: 1;
}
.gsb-ops-item-sub {
  font-size: 11px;
  color: var(--gsbc-muted);
  display: block;
}
.gsb-ops-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
}
.gsb-ops-badge--open      { background: #dcfce7; color: #166534; }
.gsb-ops-badge--closed    { background: #fee2e2; color: #991b1b; }
.gsb-ops-badge--hold      { background: #fef3c7; color: #92400e; }
.gsb-ops-badge--limited   { background: #fef9c3; color: #854d0e; }
.gsb-ops-badge--groomed   { background: #dbeafe; color: #1e40af; }
.gsb-ops-badge--scheduled { background: #f3f4f6; color: #374151; }
.gsb-ops-badge--natural   { background: #f0fdf4; color: #166534; }

/* Difficulty dots */
.gsb-ops-diff {
  width: 10px; height: 10px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
  margin-right: 4px;
}
.gsb-ops-diff--green       { background: #22c55e; }
.gsb-ops-diff--blue        { background: #3b82f6; border-radius: 2px; }
.gsb-ops-diff--black       { background: #111827; }
.gsb-ops-diff--doubleblack { background: #111827; }
.gsb-ops-diff--expert      { background: #111827; }
.gsb-ops-diff--park        { background: #8b5cf6; border-radius: 2px; }

/* Dining */
.gsb-ops-dining-hours {
  font-size: 11px;
  color: var(--gsbc-muted);
  margin-left: 4px;
}

/* Alerts */
.gsb-ops-alert {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 8px;
  margin-bottom: 6px;
  font-size: 12px;
  line-height: 1.4;
}
.gsb-ops-alert--info    { background: #eff6ff; color: #1e40af; }
.gsb-ops-alert--warning { background: #fffbeb; color: #92400e; }
.gsb-ops-alert--danger  { background: #fef2f2; color: #991b1b; }

/* Updated timestamp */
.gsb-ops-updated {
  font-size: 10px;
  color: var(--gsbc-muted);
  text-align: center;
  padding: 8px 16px 0;
}

/* Loading state */
.gsb-ops-loading {
  text-align: center;
  padding: 32px 16px;
  color: var(--gsbc-muted);
  font-size: 13px;
}

/* Empty state */
.gsb-ops-empty {
  text-align: center;
  padding: 24px 16px;
  color: var(--gsbc-muted);
  font-size: 13px;
}

/* ── Weather forecast cards ──────────────────────────────────────────────── */
.gsb-ops-forecast-row {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding: 8px 0 4px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.gsb-ops-forecast-row::-webkit-scrollbar { display: none; }

.gsb-ops-forecast-card {
  flex-shrink: 0;
  width: 72px;
  background: var(--gsbc-bg2);
  border: 1px solid var(--gsbc-border);
  border-radius: 10px;
  padding: 8px 6px;
  text-align: center;
}
.gsb-ops-fc-day {
  font-size: 12px;
  font-weight: 700;
  color: var(--gsbc-text);
}
.gsb-ops-fc-date {
  font-size: 10px;
  color: var(--gsbc-muted);
  margin-bottom: 4px;
}
.gsb-ops-fc-desc {
  font-size: 9px;
  color: var(--gsbc-muted);
  line-height: 1.3;
  margin-bottom: 4px;
  min-height: 24px;
}
.gsb-ops-fc-temps {
  display: flex;
  justify-content: center;
  gap: 4px;
  font-size: 12px;
}
.gsb-ops-fc-hi { font-weight: 700; color: var(--gsbc-text); }
.gsb-ops-fc-lo { color: var(--gsbc-muted); }
.gsb-ops-fc-precip {
  font-size: 9px;
  color: #3b82f6;
  margin-top: 3px;
}
