#legendContainer {
    position: absolute;
/*     bottom: 60px; */
/*     left: 10px; */
	
    top: 10vw;
    right: 20vw;
	
    width: 470px;
    padding: 5px;
    background: white;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    border-radius: 4px;
    z-index: 1000;
    font-size: 11px;
}

.legendBar {
    height: 20px;
    /* background: linear-gradient(to right,
blue, green, yellow, orange, red); */
    margin-bottom: 4px;
    border-radius: 3px;
}

.legendLabels {
    display: flex;
    justify-content: space-between;
}

#resultTable {
    position: absolute;
    top: 15vw;
    right: 20vw;
    width: 470px;
/*     height: 260px; */
/*     display: none; */
/*     bottom: 50px; */
    max-height: 70%;
    overflow: auto;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    padding: 10px;
    border-radius: 4px;
    z-index: 1000;
}

#resultTable table {
    border-collapse: collapse;
    width: 100%;
    margin-top: 8px;
}

#resultTable th,
#resultTable td {
    border: 1px solid #ccc;
    padding: 6px;
    text-align: center;
}

.time-cell {
    cursor: pointer;
    color: #007bff;
    text-decoration: underline;
}

.time-cell:hover {
    background-color: #f0f8ff;
}

.time-cell:active {
    background-color: #e0e0e0;
}

