/* ===== OLC Schedule Styles ===== */

/* GRID (cards) */
.olc-week-wrap{max-width:1100px;margin:40px auto;font-family:inherit}
.olc-week-grid{display:grid;grid-template-columns:repeat(7,1fr);gap:14px;margin-top:10px}

.olc-day{
  background:#fbfaf7;
  border-radius:16px;
  box-shadow:0 10px 22px rgba(0,0,0,.08);
  overflow:hidden;
  min-height:220px;
  display:flex;
  flex-direction:column;
}

.olc-day-h{
  padding:14px 14px 12px;
  background:rgba(182,138,58,.10);
  color:#3a2a1a;
  font-weight:700;
  text-align:center;
  letter-spacing:.2px;
}

.olc-day-b{padding:14px;display:flex;flex-direction:column;gap:10px}

.olc-slot{
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  border-radius:14px;
  padding:12px 12px;
}

.olc-time{font-weight:800;color:#b68a3a;font-size:14px;margin-bottom:6px}
.olc-class{font-weight:700;color:#3a2a1a;font-size:14.5px;margin-bottom:4px}
.olc-meta{color:#666;font-size:13.5px;line-height:1.6}

.olc-empty{
  border:1px dashed rgba(0,0,0,.15);
  background:rgba(255,255,255,.65);
  color:#8a8a8a;
  border-radius:14px;
  padding:12px;
  text-align:center;
  font-size:13.5px;
}

/* TABLE (days x times) */
.olc-table-wrap{max-width:1100px;margin:40px auto;overflow-x:auto}
.olc-table{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  background:#fff;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 10px 22px rgba(0,0,0,.08);
}
.olc-table thead th{
  background:rgba(182,138,58,.10);
  color:#3a2a1a;
  font-weight:700;
  text-align:center;
  padding:14px 10px;
  border-bottom:1px solid rgba(0,0,0,.06);
  white-space:nowrap;
}
.olc-th-time{min-width:80px}
.olc-table tbody td{
  padding:10px;
  border-bottom:1px solid rgba(0,0,0,.06);
  border-right:1px solid rgba(0,0,0,.06);
  vertical-align:top;
  min-width:160px;
}
.olc-table tbody tr:last-child td{border-bottom:none}
.olc-table tbody td:last-child{border-right:none}
.olc-td-time{
  font-weight:800;
  color:#b68a3a;
  text-align:center;
  white-space:nowrap;
  background:#fbfaf7;
}
.olc-cell-item{
  background:#fbfaf7;
  border:1px solid rgba(0,0,0,.06);
  border-radius:12px;
  padding:10px;
  margin-bottom:8px;
}
.olc-cell-title{font-weight:800;color:#3a2a1a;font-size:13.5px;margin-bottom:4px}
.olc-cell-meta{color:#666;font-size:12.8px;line-height:1.5}
.olc-cell-trainer{font-weight:700;color:#3a2a1a}
.olc-cell-empty{color:#bbb;text-align:center;padding:6px 0}

/* Mobil: 7 sütun yerine kaydırılabilir */
@media(max-width:1100px){
  .olc-week-grid{
    grid-template-columns:repeat(7, minmax(220px, 1fr));
    overflow-x:auto;
    padding-bottom:10px;
    scroll-snap-type:x mandatory;
  }
  .olc-day{scroll-snap-align:start}
}
