 /* Wrapper for heading and help icon */
 .iafwmc-header-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Heading Styling */
.iafwmc-heading {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
}

/* Help Icon Wrapper */
.iafwmc-help-icon-wrapper {
    position: relative;
    display: inline-block;
}

/* Help Icon Styling */
.iafwmc-help-icon {
    display: inline-block;
    width: 13px;
    height: 13px;
    line-height: 14px;
    text-align: center;
    background-color: #5d666b8a;
    color: white;
    border-radius: 50%;
    font-weight: bold;
    cursor: pointer;
    font-family: Arial, sans-serif;
    font-size: 9px;
}

/* Tooltip Styling */
.iafwmc-help-tooltip {
    visibility: hidden;
    width: 300px;
    background-color: #555;
    color: #fff;
    /* text-align: center; */
    border-radius: 5px;
    padding: 10px;
    position: absolute;
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 12px;
    z-index: 1;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    font-family: Arial, sans-serif !important;
    font-weight: normal !important;
}

/* Tooltip Arrow */
.iafwmc-help-tooltip::after {
    content: '';
    position: absolute;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

/* Tooltip Visibility on Hover */
.iafwmc-help-icon-wrapper:hover .iafwmc-help-tooltip {
    visibility: visible;
    opacity: 1;
}

.iafwmc-help-tooltip span
{
    font-weight: normal !important;
    font-family: Arial, sans-serif !important;
}