/* ---------------------------Help Icon-------------------- */
 .integrazo-fc-helpicon-header-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Heading Styling */
.integrazo-fc-helpicon-heading {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
}

/* Help Icon Wrapper */
.integrazo-fc-helpicon-help-icon-wrapper {
    position: relative;
    display: inline-block;
}

/* Help Icon Styling */
.integrazo-fc-helpicon-help-icon {
    display: inline-block;
    width: 13px;
    height: 13px;
    line-height: 16px;
    text-align: center;
    background-color: #5d666b8a;
    color: white;
    border-radius: 50%;
    font-weight: bold;
    cursor: pointer;
    font-family: Arial, sans-serif;
    font-size: 10px;
}

/* Tooltip Styling */
.integrazo-fc-helpicon-help-tooltip {
    visibility: hidden;
    width: 260px;
    background-color: #333;
    color: #fff;
    border-radius: 6px;
    padding: 10px 12px;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    opacity: 0;
    transition: opacity 0.2s;
    font-size: 12px;
    line-height: 1.5;
    z-index: 99999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    font-family: Arial, sans-serif !important;
    font-weight: normal !important;
    white-space: normal;
    word-wrap: break-word;
    pointer-events: none;
}

/* Tooltip Arrow — points up, aligned to left where icon is */
.integrazo-fc-helpicon-help-tooltip::after {
    content: '';
    position: absolute;
    top: -8px;
    left: 8px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent #333 transparent;
}

/* Tooltip Visibility on Hover */
.integrazo-fc-helpicon-help-icon-wrapper:hover .integrazo-fc-helpicon-help-tooltip {
    visibility: visible;
    opacity: 1;
}

.integrazo-fc-helpicon-help-tooltip span
{
    font-weight: normal !important;
    font-family: Arial, sans-serif !important;
}
/* ---------------------------Help Icon End-------------------- */