/* Phoenix Nest METS — Schedule Tab Styles */

.schedule-container {
  padding: 0 0 80px 0;
}

.schedule-loading,
.schedule-empty {
  text-align: center;
  padding: 40px 20px;
  color: #8e9297;
  font-size: 14px;
}

.sched-week-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: #1e2126;
  border-bottom: 1px solid #2d3136;
  position: sticky;
  top: 0;
  z-index: 10;
}

.sched-week-label {
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  text-align: center;
}

.sched-nav-btn {
  background: #2d3136;
  border: none;
  color: #b0b8c1;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-family: inherit;
}

.sched-nav-btn:active { background: #3d4146; }

.sched-day {
  border-bottom: 1px solid #2d3136;
  padding: 12px 16px;
}

.sched-day.sched-today { background: rgba(52, 152, 219, 0.08); }
.sched-day.sched-past { opacity: 0.5; }
.sched-day.sched-closed { opacity: 0.7; }

.sched-day-header {
  font-weight: 700;
  font-size: 13px;
  color: #b0b8c1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.sched-today-badge {
  background: #3498db;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  vertical-align: middle;
  margin-left: 4px;
}

.sched-closed-msg {
  background: #2d3136;
  color: #8e9297;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13px;
  text-align: center;
}

.sched-stations {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.sched-station-card {
  flex: 1;
  min-width: 120px;
  max-width: 200px;
  background: #23272b;
  border: 2px solid #3d4146;
  border-radius: 10px;
  padding: 12px;
  text-align: center;
}

.sched-station-name { font-weight: 700; font-size: 13px; margin-bottom: 6px; }
.sched-tier-req { font-size: 10px; color: #8e9297; margin-bottom: 4px; }
.sched-approved { color: #5ebd6e; font-weight: 600; }
.sched-booked-name { font-size: 14px; font-weight: 600; color: #fff; margin-bottom: 2px; }
.sched-booked-label { font-size: 11px; color: #8e9297; text-transform: uppercase; letter-spacing: 0.5px; }
.sched-open-label { font-size: 12px; color: #5ebd6e; font-weight: 600; }
.sched-past-label { color: #5a5e64; }
.sched-locked { font-size: 10px; color: #8e9297; margin-top: 2px; }

.sched-book-btn {
  background: #3498db;
  color: #fff;
  border: none;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-family: inherit;
  margin-top: 4px;
  width: 100%;
}

.sched-book-btn:active { background: #2980b9; }
.sched-book-btn:disabled { background: #3d4146; color: #6c7177; cursor: default; }

.sched-my-section {
  margin: 16px;
  background: #23272b;
  border-radius: 10px;
  padding: 14px;
  border: 1px solid #2d3136;
}

.sched-my-title {
  font-weight: 700;
  font-size: 12px;
  color: #b0b8c1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.sched-my-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid #2d3136;
}

.sched-my-item:last-child { border-bottom: none; }
.sched-my-date { font-size: 13px; color: #b0b8c1; font-weight: 600; min-width: 80px; }
.sched-my-station { font-size: 13px; color: #fff; flex: 1; }

.sched-cancel-btn {
  background: transparent;
  border: 1px solid #e74c3c;
  color: #e74c3c;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
  cursor: pointer;
  font-family: inherit;
}

.sched-cancel-btn:active { background: rgba(231, 76, 60, 0.15); }
.sched-cancel-btn:disabled { opacity: 0.5; cursor: default; }
