.help-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    background-color: var(--bs-primary);
    color: #ffffff;
    border-radius: 50%;
    cursor: pointer;
}
.help-icon i {
    pointer-events: none;
}
.help-icon .fa-question {
    font-size: 12px;
}
.custom-popup {
    display: none;
    position: absolute;
    background-color: #fff;
    border: 1px solid var(--bs-secondary);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    border-radius: 0.5rem;
    z-index: 1000;
    min-width: 300px;
    min-height: 300px;
    overflow: auto;
    white-space: normal;
    color:#000000;
}
.custom-popup img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
}
.custom-popup h4 {
    margin-bottom: 10px;
    font-size: 16px;
    color: var(--bs-primary);
}
.custom-popup p {
    margin-bottom: 10px;
    font-size: 14px;
    text-align: justify;
    color: var(--bs-muted);
}