@charset "UTF-8";






#timeline_wrapper{
  position: relative;
  display: grid;
  border:2px solid #000;
  grid-template-columns: 4fr repeat(26,1fr);
  grid-auto-rows: 48px;
}

#timeline_wrapper div.tl_cell{
  overflow: hidden;
  border-bottom: 1px solid #000;
  display: grid;
  align-items: center;
  justify-content: center;
}

#timeline_wrapper div.tl_col--hour{
  border-right: 1px solid #000;
}

#timeline_wrapper div.tl_col--title{
  border-right: 1px solid #000;
}
#timeline_wrapper div.tl_col--00{
  border-right: 1px dotted #000;
}
#timeline_wrapper div.tl_col--30{
  border-right: 1px solid #000;
}

#timeline_wrapper .tl_timebar{
  position: absolute;
  font-size:xx-small;
  font-weight: bold;
  background-color:rgba(128,128,255,0.5);
  border:2px solid #444;
  padding:0;
  margin: 2px;
  border-radius: 8px;
  width:calc(100% - 4px);
  height:calc(100% - 4px);
  display: grid;
  align-items: center;
  justify-content: center;
  overflow:hidden;
}

#timeline_wrapper .tl_timebar.hive{
  background-color:rgba(255,128,128,0.5);
}


