.guidance-tooltip {
    position: absolute;
    background-color: #4CAF50; /* Stylish green background */
    color: #fff;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-family: Arial, sans-serif;
    z-index: 1000;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    transition: opacity 0.3s ease, transform 0.3s ease; /* Smooth fade-in and pop-up effect */
    opacity: 0;
    transform: scale(0.9);
}

@import url('site-theme.css');

.guidance-tooltip.show {
    opacity: 1;
    transform: scale(1);
}

.guidance-tooltip::after {
    content: "";
    position: absolute;
    bottom: 100%; /* Position the arrow above the tooltip */
    left: 50%;
    margin-left: -6px;
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent #4CAF50 transparent; /* Arrow color matches background */
}

.highlight {
    outline: 3px solid #ff9800;
    outline-offset: 5px;
    border-radius: 5px; /* Rounded corners for the highlight */
}
