/* Styles extracted from overal_1.html */
.root-font {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
body {
  margin: 0;
  padding: 24px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: #f6f8fb;
  color: #233043;
}
.schedule-container {
  width: 100%;
  max-width: 1350px;
  margin: 0 auto;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid #e3e8ef;
  box-shadow: 0 6px 20px rgba(36, 59, 85, 0.06);
  overflow: hidden;
}
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed; /* help cells wrap and avoid overflow */
  word-wrap: break-word;
}

/* Make table horizontally scrollable on small screens */
.schedule-container .table-wrap {
  width: 100%;
  overflow-x: visible; /* allow table to reflow instead of forcing a horizontal scrollbar */
}
th,
td {
  border-bottom: 1px solid #eef2f7;
  padding: 14px 12px;
  text-align: center;
  vertical-align: middle;
  white-space: normal; /* allow wrapping */
  word-break: break-word;
}
.time-header {
  background: linear-gradient(90deg,#4465a8,#5b7fc8);
  color: white;
  font-weight: 700;
  font-size: 15px;
  width: 110px;
  padding: 12px 10px;
}
.time-cell {
  background: #e8ecf1;
  font-weight: 600;
  font-size: 13px;
  width: 100px;
}
.date-header {
  background: #4465a8;
  color: white;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 16px;
}
.session {
  background: transparent;
  font-size: 13px;
  line-height: 1.45;
  color: #243447;
}
.session-health {
  background: #e8f5e9;
}
.session-iot {
  background: #e1f5fe;
}
.coffee-break {
  background: #fff9c4;
}
.lunch {
  background: #c8e6c9;
}
.gala {
  background: #ffe0b2;
}
.closing {
  background: #b3e5fc;
}
.registration {
  background: #f5f5f5;
}
/* make session cells visually clickable */
td.clickable {
  cursor: pointer;
  text-decoration: none;
}
td.clickable .session-title {
  color: #1f4fa8;
  text-decoration: underline;
}
.session small { color: #6b7a86; font-size: 12px; display:block; margin-top:6px }

/* track chair label inside keynote/session cells */
.track-chair{
  margin-top:8px;
  font-size:12px;
  color:#2e3d49;
  background: rgba(68,101,168,0.06);
  display:inline-block;
  padding:4px 8px;
  border-radius:6px;
  font-weight:600;
}
.session-header {
  text-align: center;
  margin-bottom: 5px;
  font-size: 13px;
}
.vertical-divider {
  display: inline-block;
  width: 2px;
  height: 1em;
  background: #4465a8;
  margin: 0 5px;
  vertical-align: middle;
}
td.clickable:hover {
  background: rgba(74,115,184,0.04);
}

/* Responsive adjustments */
@media (max-width: 800px) {
  .time-header, .time-cell { width: 80px; font-size: 13px; }
  .date-header { font-size: 13px; padding: 8px; }
  th, td { padding: 10px 8px; }
}

@media (max-width: 480px) {
  .schedule-container { border-radius: 0; box-shadow: none; }
  .time-header, .time-cell { width: 70px; font-size: 12px; }
  table { table-layout: auto; }
}

/* Important notice box for overal schedule */
.important-note {
  border: 3px solid #d32f2f;
  padding: 12px 16px;
  margin: 0 0 8px 0; /* remove top gap so it sits flush with the schedule */
  width: 100%;
  max-width: 1350px;
  box-sizing: border-box;
  background: #fff7f7;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.important-label {
  color: #d32f2f;
  font-weight: 700;
  min-width: 100px;
}
.important-text { color: #222; font-size: 14px }
.important-text strong { font-weight: 700 }
