It seems that tooltips are not functioning as expected when applied in the custom code section of SOFTR. Could you please help me identify the issue? this is the example below
<!DOCTYPE html>
<html>
<head>
<style>
.tooltip {
position: relative;
display: inline-block;
}
.tooltip .tooltiptext {
display: none;
position: absolute;
background-color: #333;
color: #fff;
padding: 10px;
border-radius: 6px;
}
.tooltip:hover .tooltiptext {
display: block;
}
</style>
</head>
<body>
<div class="tooltip">Hover me
<span class="tooltiptext">This is a tooltip</span>
</div>
</body>
</html>