
.tooltip {
    font-weight: bold;
    color: blue;
    cursor: pointer;
    position: relative;
}

.tooltip .tooltip-text {
    display: flex;
    flex-direction: column;
    background-color: black;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    width: 250px;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.2s, visibility 0.2s;
    cursor: auto;
    font-weight: normal;

    position: absolute;
    top: 100%; /* Position below the parent */
    left: 0; /* Align with the left edge of the parent */
    transform: translateY(5px);
}

.tooltip .tooltip-text label {
    font-size: 14px;
}

.close-tooltip {
    margin-left: auto;
    margin-bottom: 15px;
    cursor: pointer;
}

.add-to-vocab {
    margin-top: 15px;
    margin-right: 5px;
}

.tooltip.active .tooltip-text {
    visibility: visible;
    opacity: 1;
}

#test_shortcode {
    padding: 20px; 
    background-color: #bada55;
}