/* Weekly Timetable (plugin-contained) */
.timetable{
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  display:grid;
  grid-template-columns: 80px repeat(7, 1fr);
  gap: 0 24px;
  font-size: 14px;
}

.timetable__header{
  text-align:center;
  font-weight:700;
  padding: 12px 0;
}

.timetable__time{
  background: #fff;
  text-align: right;
  padding-right: 8px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  position: relative;
  top: -0.7rem;
}

/* event block */
.timetable__event{
  background:#dceaf7;
  border-radius:6px;
  padding:6px 8px;
  font-size: 16px;
  line-height: 1.35;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
}

/* Responsive: stack days if needed */
@media (max-width: 960px){
  .timetable{
    gap: 0 12px;
    font-size: 14px;
    grid-template-columns: 70px repeat(7, 1fr);
  }
  .timetable__event{font-size:14px;}
}