.tooltip {
position: relative;
display: inline-block;
}
.tooltip .tooltiptext {
visibility: hidden;
background-color: rgba(0, 0, 0, 0.7);
color: #fff;
text-align: left;
border-radius: 4px;
padding: 2px 10px;
position: absolute;
z-index: 1;
bottom: 125%;
left: 0%;
transform: translateX(10%);
opacity: 0;
white-space: nowrap;
transition: opacity 0.2s;
border: 2px solid #ffffff;
box-shadow:
0 0 0 2px #808080;
}
.tooltip:hover .tooltiptext {
visibility: visible;
opacity: 1;
}
.scrollable-container {
width: 100%;
height: 75vh;
overflow: auto;
padding: 10px;
color: white;
background-color: rgba(0, 0, 0, 0.8);
}
hr{
height: 0.5px;
}