/* ============================================
   schedule.css — Fixtures / schedule table
   ============================================ */

.schedule-wrapper {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 40px;
}

.schedule-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.schedule-header h3 {
  font-size: 16px;
  font-weight: 700;
}

.schedule-header span {
  font-size: 12px;
  color: var(--text-muted);
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
}

.schedule-table th {
  text-align: left;
  padding: 12px 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--card-border);
  background: var(--navy3);
}

.schedule-table td {
  padding: 14px 16px;
  font-size: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.schedule-table tr:last-child td {
  border-bottom: none;
}

.schedule-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.schedule-table .time-col {
  color: var(--text-muted);
}

.schedule-table .team-name {
  font-weight: 500;
}

.schedule-table .league-name {
  color: var(--text-muted);
  font-size: 13px;
}