.text-black{
    color: black;
}
.custom-tooltip {
    position: relative;
    display: inline-block;
}

.custom-tooltip .tooltip-text {
    visibility: hidden;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 10px;
    position: absolute;
    z-index: 1;
    bottom: 100%;
    left: -30%;
    opacity: 0;
    transition: all 0.3s ease-out;
    font-size: 13px;
}
.custom-tooltip:hover{
    color: #319148;
    transition: all 0.3s ease-out;
}
.custom-tooltip:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}
.bg-unlocked {
    background-color: #FFE9E9;
}
.bg-locked {
    background-color: #E9F5FF;
}
.entry:hover {
    background-color: #f0ecec;
    transition: all 0.3s;
}
