/* Weather Strategy Spectator Tab */

.ws-dashboard {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 16px;
  max-width: 900px;
  margin: 0 auto;
}

/* Current Weather Card */
.ws-current-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  border-radius: 16px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.ws-current-emoji {
  font-size: 64px;
  line-height: 1;
}

.ws-current-info {
  flex: 1;
}

.ws-current-name {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 4px;
  color: #f8fafc;
}

.ws-current-tagline {
  font-size: 14px;
  color: #94a3b8;
  margin: 0 0 12px;
}

.ws-multipliers {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.ws-mult {
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.05);
  color: #94a3b8;
}

.ws-mult-good { color: #22c55e; background: rgba(34, 197, 94, 0.1); }
.ws-mult-bad { color: #ef4444; background: rgba(239, 68, 68, 0.1); }

/* Section */
.ws-section {
  padding: 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.ws-section-title {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 12px;
  color: #e2e8f0;
}

/* Recommendations Grid */
.ws-rec-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ws-rec-card {
  padding: 12px 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.2s;
}

.ws-rec-card:hover {
  background: rgba(255, 255, 255, 0.06);
}

.ws-rec-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.ws-rec-emoji {
  font-size: 20px;
  width: 28px;
  text-align: center;
}

.ws-rec-action {
  font-weight: 600;
  font-size: 15px;
  color: #f1f5f9;
  min-width: 80px;
}

.ws-rec-priority {
  margin-left: auto;
  font-family: monospace;
  font-size: 12px;
  color: #94a3b8;
}

.ws-priority-bar {
  white-space: nowrap;
}

.ws-rec-reason {
  font-size: 13px;
  color: #94a3b8;
  margin: 0;
  padding-left: 36px;
}

/* Avoid Section */
.ws-avoid-section {
  border-color: rgba(239, 68, 68, 0.2);
  background: rgba(239, 68, 68, 0.03);
}

.ws-avoid-list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.ws-avoid-badge {
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

/* Tips */
.ws-tips-list {
  margin: 0;
  padding-left: 20px;
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.8;
}

.ws-tips-list li {
  margin-bottom: 4px;
}

/* All Weathers Grid */
.ws-all-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 10px;
}

.ws-mini-card {
  padding: 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  cursor: default;
  transition: transform 0.2s, border-color 0.2s;
}

.ws-mini-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.15);
}

.ws-mini-current {
  border-color: #3b82f6;
  background: rgba(59, 130, 246, 0.08);
}

.ws-mini-emoji {
  font-size: 32px;
  margin-bottom: 4px;
}

.ws-mini-name {
  font-size: 13px;
  font-weight: 600;
  color: #e2e8f0;
}

.ws-mini-mult {
  font-size: 11px;
  color: #64748b;
  margin: 4px 0;
}

.ws-mini-top {
  font-size: 12px;
  color: #94a3b8;
}

/* Light Mode */
.light .ws-current-card,
[data-theme="light"] .ws-current-card {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border-color: rgba(0, 0, 0, 0.1);
}

.light .ws-current-name,
[data-theme="light"] .ws-current-name { color: #0f172a; }

.light .ws-current-tagline,
[data-theme="light"] .ws-current-tagline { color: #64748b; }

.light .ws-section,
[data-theme="light"] .ws-section {
  background: rgba(0, 0, 0, 0.02);
  border-color: rgba(0, 0, 0, 0.08);
}

.light .ws-section-title,
[data-theme="light"] .ws-section-title { color: #1e293b; }

.light .ws-rec-card,
[data-theme="light"] .ws-rec-card {
  background: rgba(0, 0, 0, 0.02);
  border-color: rgba(0, 0, 0, 0.08);
}

.light .ws-rec-action,
[data-theme="light"] .ws-rec-action { color: #0f172a; }

.light .ws-rec-reason,
[data-theme="light"] .ws-rec-reason,
.light .ws-tips-list,
[data-theme="light"] .ws-tips-list { color: #64748b; }

.light .ws-mini-card,
[data-theme="light"] .ws-mini-card {
  background: rgba(0, 0, 0, 0.02);
  border-color: rgba(0, 0, 0, 0.08);
}

.light .ws-mini-name,
[data-theme="light"] .ws-mini-name { color: #0f172a; }

/* Mobile */
@media (max-width: 768px) {
  .ws-current-card {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .ws-current-emoji { font-size: 48px; }
  .ws-multipliers { justify-content: center; }

  .ws-all-grid {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 8px;
  }

  .ws-mini-emoji { font-size: 24px; }
  .ws-mini-card { padding: 8px; }

  .ws-rec-header { flex-wrap: wrap; }
  .ws-rec-priority { margin-left: 36px; margin-top: 4px; }
}
