/* Classic Schedule Table Layout */
:root {
  --primary: #000;
  --bg: #fff;
  --border: #000;
  --brand-primary: #5A8DEE;
  --brand-gradient: linear-gradient(to right, #5A8DEE 0%, #222f3e 100%);
  --brand-accent: #222f3e;
  --brand-bg: #fff;
  --brand-card-bg: #f8f9fa;
  --brand-text: #222f3e;
  --brand-muted: #6c757d;
}

.owl-controls {
  display: none!important;
}

body {
  background: var(--brand-bg);
  color: var(--brand-text);
  font-family: 'Montserrat', Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.page-header {
  text-align: center;
  margin: 2rem 0 1rem 0;
}
.page-header h1 {
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: 2px;
  margin: 0;
  color: #5A8DEE;
  text-shadow: 0 2px 8px rgba(34,47,62,0.08);
}
.page-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0.5rem 0 0 0;
  color: #5A8DEE;
  text-shadow: 0 2px 8px rgba(34,47,62,0.08);
}

.schedule-section {
  max-width: 1200px;
  margin: 0 auto 2rem auto;
  padding: 1.5rem 0 2rem 0;
  background: var(--brand-bg);
}

.branch-header {
  font-size: 1.25rem;
  font-weight: 800;
  text-align: left;
  margin: 2rem 0 0.5rem 0;
  letter-spacing: 1px;
  border-top: 3px solid var(--border);
  padding-top: 1rem;
  color: #fff;
  background: var(--brand-gradient);
  padding: 0.85rem 1.2rem;
  border-radius: 0.6rem;
  margin-top: 2rem;
  margin-bottom: 1.2rem;
  box-shadow: 0 2px 12px rgba(34,47,62,0.10);
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
  background: var(--brand-card-bg);
  border-radius: 0.5rem;
  box-shadow: 0 2px 12px rgba(34,47,62,0.06);
  overflow: hidden;
}
.schedule-table th,
.schedule-table td {
  border: 2px solid var(--border);
  padding: 0.75rem 0.5rem;
  text-align: center;
  font-size: 1rem;
  color: var(--brand-text);
  background: var(--brand-bg);
  font-weight: 500;
}
.schedule-table th {
  font-size: 1.08rem;
  font-weight: 900;
  background: var(--brand-gradient);
  letter-spacing: 1px;
  color: #fff;
  border-color: #222f3e;
}
.schedule-table .class-name {
  font-weight: 900;
  font-size: 1.1rem;
  color: #5A8DEE;
}

/* Responsive Table: horizontal scroll on small screens */
@media (max-width: 991.98px) {
  .schedule-section {
    padding: 0 0.25rem;
  }
  .schedule-table {
    font-size: 0.95rem;
  }
}
@media (max-width: 767.98px) {
  .page-header h1 {
    font-size: 1.5rem;
  }
  .page-header h2 {
    font-size: 1.1rem;
  }
  .branch-header {
    font-size: 1rem;
    padding-top: 0.5rem;
  }
  .schedule-table {
    display: none !important;
  }
  .mobile-schedule {
    display: block;
    padding: 0.5rem;
  }
  .mobile-schedule-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    margin-bottom: 1rem;
    padding: 1rem 1.25rem;
    border: 2px solid #000;
  }
  .mobile-schedule-header {
    font-weight: 900;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    text-align: left;
  }
  .mobile-schedule-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.25rem;
    font-size: 0.98rem;
  }
  .mobile-schedule-label {
    font-weight: 700;
    color: #333;
  }
  .mobile-schedule-value {
    font-weight: 400;
    color: #111;
    text-align: right;
    margin-left: 1rem;
  }
  .mobile-schedule .fw-bold.text-uppercase.text-dark {
    color: #fff !important;
    background: var(--brand-gradient);
    padding: 0.6rem 1.1rem;
    border-radius: 0.6rem;
    margin-bottom: 1.1rem;
    font-size: 1.08rem;
    font-weight: 900;
    letter-spacing: 1.5px;
    box-shadow: 0 2px 12px rgba(34,47,62,0.10);
  }
  .mobile-schedule .card {
    border-color: #5A8DEE;
    background: var(--brand-card-bg);
    box-shadow: 0 2px 12px rgba(34,47,62,0.06);
  }
  .mobile-schedule .fw-bold.mb-3 {
    color: #fff;
    background: var(--brand-gradient);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    font-weight: 900;
    letter-spacing: 1px;
    box-shadow: 0 2px 8px rgba(34,47,62,0.08);
    display: inline-block;
  }
  .mobile-schedule .bi-people-fill,
  .mobile-schedule .bi-clock,
  .mobile-schedule .bi-book,
  .mobile-schedule .bi-person,
  .mobile-schedule .bi-geo-alt,
  .mobile-schedule .bi-door-closed {
    color: #5A8DEE !important;
  }
  .mobile-schedule .card-body {
    padding: 1.1rem 1rem 1rem 1rem;
  }
  .mobile-schedule .row.mb-1 {
    margin-bottom: 0.5rem !important;
  }
  .mobile-schedule .col-5.text-muted.small {
    color: var(--brand-muted) !important;
    font-weight: 600;
    font-size: 0.98rem;
  }
  .mobile-schedule .col-7 {
    color: var(--brand-text);
    font-size: 1.01rem;
    font-weight: 500;
  }
  .mobile-schedule .bg-light {
    background: #f3f7ff !important;
  }
}

@media (min-width: 768px) {
  .mobile-schedule {
    display: none !important;
  }
}