 /* Styling the little "?" circle */
    .info-icon {
        display: inline-block;
        width: 18px;
        height: 18px;
        background-color: #007bff; 
        color: white;
        border-radius: 50%;
        text-align: center;
        font-size: 12px;
        line-height: 18px;
        font-weight: bold;
        cursor: help;
        margin-left: 5px;
    }

    .tooltip {
        position: relative;
        display: inline-block;
        /* Removed the dotted line so it doesn't go under the blue icon */
        cursor: help;                                                                                                   
    }

    .tooltip .tooltiptext {
        visibility: hidden;
        width: 420px; /* Made it a bit wider for the long verse */
        /*background-color: #333; */
		background-color: white;
        color: black;
		/*color: #fff; */
        text-align: center;
        border-radius: 5px;
        padding: 10px;
        position: absolute;
        z-index: 1;
        bottom: -540%; /* Moved it up a bit higher */
        left: 50%;
        margin-left: -425px; 
        opacity: 0;
        transition: opacity 0.3s;
        font-size: 0.9em;
        line-height: 1.4;
    }

    .tooltip:hover .tooltiptext {
        visibility: visible;
        opacity: 1;
    }

    .tooltip .tooltiptext::after {
        content: "";
        position: absolute;
        top: 100%;
        left: 50%;
        margin-left: -5px;
        border-width: 5px;
        border-style: solid;
        border-color: #333 transparent transparent transparent;
    }