/* ===== UMRAH SCHEDULE PAGE (date-strip listing) ===== */

/* This page has no 2-column desktop grid to host `all-programs.css`'s sticky
   sidebar, so force the same off-canvas drawer treatment it normally only
   gets under its own mobile breakpoint — on every screen size here. */
.filter-overlay {
  display: block; position: fixed; inset: 0; background: rgba(0,0,0,.5);
  z-index: 499; opacity: 0; pointer-events: none; transition: opacity .3s ease;
}
.filter-overlay.is-open { opacity: 1; pointer-events: auto; }
.filter-sidebar {
  position: fixed; top: 0; right: 0; width: 300px; max-width: 88vw; height: 100vh;
  overflow-y: auto; -webkit-overflow-scrolling: touch; background: #fff;
  border-radius: 0; border: none; border-left: 1px solid var(--border);
  box-shadow: -8px 0 32px rgba(0,0,0,.15); z-index: 500; padding-top: 52px;
  transform: translateX(100%); transition: transform .3s cubic-bezier(.4,0,.2,1);
}
.filter-sidebar.is-open { transform: translateX(0); }
.filter-drawer-close {
  display: flex; align-items: center; justify-content: center; position: absolute;
  top: 10px; left: 12px; width: 36px; height: 36px; border-radius: 50%; background: #fff;
  border: 1.5px solid var(--border); color: var(--text-muted); cursor: pointer;
  transition: border-color .2s, color .2s; z-index: 1;
}
.filter-drawer-close:hover { border-color: #ef4444; color: #ef4444; }
.filter-drawer-close svg { width: 15px; height: 15px; }
.filter-sidebar-header { cursor: default; }
.fst-chevron { display: none; }

.usch-wrap { max-width: 720px; margin: 0 auto; padding: 16px 16px 48px; }
.usch-wrap.usch-grid { background: #f1fef894; }

/* Companies aside — right side (RTL start) on wide screens, hidden on mobile */
.usch-providers-aside { display: none; }

@media (min-width: 769px) {
  .usch-wrap.usch-grid {
    max-width: 1100px;
    display: grid;
    grid-template-columns: 280px 1fr;
    align-items: start;
    gap: 24px;
  }
  .usch-main { grid-column: 2; grid-row: 1; min-width: 0; }
  .usch-providers-aside {
    grid-column: 1; grid-row: 1;
    display: flex; flex-direction: column;
    position: sticky; top: 16px;
    max-height: calc(100vh - 32px); overflow-y: auto;
    border: 1.5px solid var(--border); border-radius: var(--radius);
    background: var(--bg); padding: 16px;
  }
}

.usch-providers-title { font-size: 15px; font-weight: 800; color: var(--text); margin: 0 0 12px; }
.usch-provider-item {
  display: flex; align-items: center; gap: 10px; padding: 10px; border-radius: var(--radius-sm);
  text-decoration: none; color: var(--text); transition: background .15s, transform .1s;
  background: var(--bg-gray); margin-bottom: 8px;
}
.usch-provider-item:last-child { margin-bottom: 0; }
.usch-provider-item:hover { background: var(--primary-light); transform: translateY(-1px); }
.usch-provider-item--featured { background: #fef3c7; }
.usch-provider-item--featured:hover { background: #fde68a; }
.usch-provider-logo {
  width: 38px; height: 38px; border-radius: 12px; flex-shrink: 0; overflow: hidden;
  background: #dbeafe; color: #1d4ed8; font-weight: 800; font-size: 15px;
  display: flex; align-items: center; justify-content: center;
}
.usch-provider-logo img,
.usch-provider-logo svg { width: 100%; height: 100%; object-fit: cover; display: block; }
.usch-provider-info { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.usch-provider-name { font-size: 13px; font-weight: 700; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.usch-provider-city { font-size: 11px; color: var(--text-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.usch-provider-badge { flex-shrink: 0; background: var(--vip); color: #fff; font-size: 10px; font-weight: 800; padding: 3px 7px; border-radius: 6px; }
.usch-provider-empty { font-size: 13px; color: var(--text-muted); text-align: center; padding: 12px 0; }

.usch-header { display: flex; align-items: center; gap: 12px; padding: 8px 0 16px; }
.usch-header-icon-btn {
  width: 38px; height: 38px; border-radius: 50%; border: 1.5px solid var(--border); background: var(--bg);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--text); text-decoration: none;
}
.usch-header-titles { flex: 1; text-align: center; }
.usch-header-title { font-size: 17px; font-weight: 800; color: var(--text); margin: 0; }
.usch-header-sub { font-size: 13px; color: var(--text-muted); margin: 2px 0 0; }

/* Date strip */
.usch-date-strip {
  display: flex; gap: 10px; overflow-x: auto; padding: 4px 2px 16px; scroll-snap-type: x proximity;
  -ms-overflow-style: none; scrollbar-width: none;
}
.usch-date-strip::-webkit-scrollbar { display: none; }
.usch-date-item {
  flex: 0 0 auto; min-width: 78px; scroll-snap-align: start; display: flex; flex-direction: column; align-items: center;
  gap: 4px; padding: 10px 8px; border-radius: var(--radius-sm); border: 1.5px solid var(--border); background: var(--bg);
  text-decoration: none; color: var(--text); transition: border-color .15s, background .15s;
}
.usch-date-item:hover { border-color: var(--primary); }
.usch-date-item.usch-date-item--active { background: var(--green); border-color: var(--green); color: #fff; }
.usch-date-day { font-size: 12px; font-weight: 700; opacity: .85; }
.usch-date-num { font-size: 15px; font-weight: 800; }
.usch-date-month { font-size: 11px; font-weight: 700; opacity: .75; }
.usch-date-price { font-size: 11px; font-weight: 700; }
.usch-date-price--empty { opacity: .6; }

/* Filter chips */
.usch-chips-row { display: flex; flex-wrap: wrap; gap: 8px; padding-bottom: 16px; }
.usch-chip {
  padding: 7px 14px; border-radius: 999px; border: 1.5px solid var(--border); background: var(--bg);
  font-size: 13px; font-weight: 700; color: var(--text); cursor: pointer; font-family: inherit;
  display: flex; align-items: center; gap: 4px; transition: all .15s; text-decoration: none;
}
.usch-chip:hover { border-color: var(--primary); }
.usch-chip.usch-chip--active { background: var(--green); border-color: var(--green); color: #fff; }

/* Result count line */
.usch-count-row { display: flex; align-items: center; justify-content: space-between; padding-bottom: 12px; font-size: 13px; color: var(--text-muted); font-weight: 600; }

@media (max-width: 480px) {
  .usch-wrap { padding: 12px 12px 40px; }
}
