body {
    margin : 0px;
    padding: 0px;
    overflow: hidden;
}

#info {
    font-family: arial;
    background-color: rgba(0,0,0,0.5);
    color: white;
    position: absolute;
    left: 10px;
    bottom: 10px;
    width: 200px;
    padding: 1em;
    z-index: 100;
}

#timeline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    flex: 1 10;
    z-index: 999;
    background: rgba(0,0,0,0.5);
}

#time-slider {
    width: 100%;
}

#time-slider:hover {
    cursor: pointer;
}

#play-button {
    border: none;
    color: #FFF;
    font-weight: 400;
    font-family: monospace;
    font-size: 20px;
    padding: 5px;
    background: rgba(0,0,0,0);
}

#play-button:hover {
    cursor: pointer;
}

.label {
    color: #FFF;
    font-family: sans-serif;
    padding: 2px;
    background: rgba(0, 0, 0, .6);
}

#side-panel {
    color: #FFF;
    font-family: sans-serif;
    padding: 10px;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .6);
    z-index: 999;
    max-height: calc(100vh - 53px);
    overflow-x: hidden;
    overflow-y: auto;
    user-select: none;
}

#logs [type="radio"] {
	display: none;
}

.tabs {
	display: flex;
	align-items: stretch;
	list-style: none;
	padding: 0;
	border-bottom: 1px solid #ccc;
}

.tab > label {
	display: block;
    padding: 6px 8px;
	border: 1px solid #ccc;
    background: rgba(0, 0, 0, .6);
    color: rgb(255, 255, 255);
	font-size: 1.2em; 
	cursor: pointer;
}
.tab:hover label {
	background: rgba(0, 0, 0, .6);
}

.timeStamp {
    padding: 8px 0;
    border-bottom: #aaaaaa solid 1px;
}

.timeStamp:hover {
    cursor: pointer;
    background: rgba(0, 0, 0, .6);
}

.list {
    margin-left: 1em;
}

.tab-content {
	display: none;
}

#logs [type="radio"]:nth-of-type(1):checked ~ .tabs .tab:nth-of-type(1) label,
#logs [type="radio"]:nth-of-type(2):checked ~ .tabs .tab:nth-of-type(2) label,
#logs [type="radio"]:nth-of-type(3):checked ~ .tabs .tab:nth-of-type(3) label,
#logs [type="radio"]:nth-of-type(4):checked ~ .tabs .tab:nth-of-type(4) label,
#logs [type="radio"]:nth-of-type(5):checked ~ .tabs .tab:nth-of-type(5) label {
	border-bottom-color: #6774ff;
	border-top-color: #6774ff;
}

#logs [type="radio"]:nth-of-type(1):checked ~ .tab-content:nth-of-type(1),
#logs [type="radio"]:nth-of-type(2):checked ~ .tab-content:nth-of-type(2),
#logs [type="radio"]:nth-of-type(3):checked ~ .tab-content:nth-of-type(3),
#logs [type="radio"]:nth-of-type(4):checked ~ .tab-content:nth-of-type(4) {
	display: block;
}
