body {
  background: #050505;
  color: white;
  font-family: Arial;
  font-size: 18px;
  padding: 0;
  margin: 0;
}

#debug {
  position: fixed;
  bottom: 0;
  right: 0;
  padding: 5px;
  color: #999;
  text-align: right;
  font-size: 12px;
}

.scheduleContainer {
  display: flex;
  /*width: 640px;*/
  width: 1920px;
  height: 1080px;
  /*border: 1px solid red;*/
  justify-content: stretch;
  align-items: stretch;
}

.box {
  background: #222222;
  padding: 1rem;
  width: 100%;
}

.videoContainer {
  border: 1px solid blue;
  position: absolute;
  left: 640px;
  top: 180px;
  width: 1280px;
  height: 720px;
  display: none;
}

.topContainer {
  border: 1px solid green;
  position: absolute;
  left: 640px;
  top: 0px;
  width: 1280px;
  height: 180px;
  display: none;
}

.bottomContainer {
  border: 1px solid green;
  position: absolute;
  left: 640px;
  top: 900px;
  width: 1280px;
  height: 180px;
  display: none;
}

div.listContainer {
  column-count: 3;
  column-fill: auto;
  height: 96%;
}

ul.subjects {
  list-style: none;
  margin: 0;
  padding: 0;
}

ul.subjects > li {
  background: #111;
  border-radius: 1rem;
  margin: 0 0 1rem 0;
  padding: 1rem;
  /*color: #222;*/
  break-inside: avoid;
}

ul.subjects .title {
  font-size: 24px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  display: block;
  margin-bottom: 4px;
}

ul.schedule {
  list-style: none;
  margin: 4px 0 0 0;
  padding: 0;
}

ul.schedule > li {
  color: #bbb;
  font-size: 15px;
  line-height: 20px;
  display: flex;
  align-items: center;
  gap: 1rem;
}

ul.schedule .time {
  display: inline-block;
  width: 8rem;
}

ul.schedule .rooms {
  color: #999;
  display: inline-block;
  width: 8rem;
  text-align: right;
}

ul.schedule .track {
  display: inline-block;
  height: 10px;
  background: #333;
  position: relative;
  flex-grow: 1;
}

ul.schedule .track .thumb {
  background: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
}

ul.schedule .active .track .thumb {
  background: #ff0;
}

ul.schedule .track .now {
  background: rgba(0, 0, 0, 0.5);
  border-right: 1px solid #fff;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
}

/* inverze barev v aktivnich polich */
ul.subjects > li.active {
  background: #fff;
  color: #222;
}

ul.schedule .active .time {
  color: #00f;
}

ul.subjects > li.active .time,
ul.subjects > li.active .rooms {
  color: #666;
}

ul.subjects > li.active .track {
  background: #ddd;
}

ul.subjects > li.active .track .thumb {
  background: #000;
}

ul.subjects > li.active .active .track .thumb {
  background: #00f;
}

ul.subjects > li.active .track .now {
  background: rgba(255, 255, 255, 0.5);
  border-right: 1px solid #000;
}

/* temata podle typu akce */
ul.subjects > li {
  border-left: 5px solid #666;
}

ul.subjects > li.active {
  border-color: #ccc;
}

/* seminar */
ul.subjects > li.seminar {
  border-color: #066;
}

ul.subjects > li.active.seminar {
  border-color: #0cc;
}

ul.subjects > li.seminar .thumb {
  background: #0cc !important;
}

/* lecture */
ul.subjects > li.lecture {
  border-color: #606;
}

ul.subjects > li.active.lecture {
  border-color: #c0c;
}

ul.subjects > li.lecture .thumb {
  background: #c0c !important;
}

/* exam */
ul.subjects > li.exam {
  border-color: #600;
}

ul.subjects > li.active.exam {
  border-color: #c00;
}

ul.subjects > li.exam .thumb {
  background: #c00 !important;
}

/* teaching */
ul.subjects > li.teaching {
  border-color: #660;
}

ul.subjects > li.active.teaching {
  border-color: #cc0;
}

ul.subjects > li.teaching .thumb {
  background: #cc0 !important;
}

/* reservation */
ul.subjects > li.reservation {
  border-color: #060;
}

ul.subjects > li.active.reservation {
  border-color: #0c0;
}

ul.subjects > li.reservation .thumb {
  background: #0c0 !important;
}

/*# sourceMappingURL=styles.css.map */
