.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 20px;
}

.btn-primary {
  display: inline-block;
  background: #0D395F;
  color: #ffffff !important;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 8px;
}

.btn-primary:hover {
  opacity: 0.85;
  color: #ffffff !important;
}

/* Schedule page */
.sched-toggle {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 20px;
}

.sched-toggle-btn {
  padding: 10px 18px;
  border-radius: 8px;
  border: 2px solid #0D395F;
  background: white;
  color: #0D395F;
  font-weight: bold;
  cursor: pointer;
}

.sched-toggle-btn.active {
  background: #0D395F;
  color: white;
}

.sched-panel {
  display: none;
}

.sched-panel.active {
  display: block;
}

.sched-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.sched-week-banner td {
  background: #E6F1FB;
  color: #0D395F;
  font-weight: bold;
  padding: 8px 14px;
}

.sched-row td {
  padding: 8px 14px;
  vertical-align: top;
  line-height: 1.4;
}

.sched-row td:first-child {
  white-space: nowrap;
  border-left: 4px solid;
}

.sched-row.sched-zebra {
  background: #fafafa;
}

.sched-lecture td:first-child { border-color: #0D395F; color: #0D395F; }
.sched-lab td:first-child { border-color: #416E96; color: #416E96; }
.sched-homework td:first-child { border-color: #166C75; color: #166C75; }
.sched-assessment td:first-child { border-color: #B1850B; color: #B1850B; }
.sched-fallback td:first-child { border-color: #999999; color: #999999; }

.sched-link {
  color: #0D395F;
}

.sched-sep {
  opacity: 0.4;
  padding: 0 5px;
}
