.help-icon {
    cursor: pointer;
    color:var(--blue-a);
    font-size: 20px;
    margin-right: 0.2em;
}
.help-icon:hover {
    cursor: pointer;
    color:var(--orange);
}

.help-popup {
    display: none;
    position: absolute;
    background-color: white;
    border: 1px solid #ccc;
    padding: 1em;
    border-radius:7px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 999;
    max-width:40%;
}
#helpContent{
    padding:1em;
    max-height:200px;
    overflow-y:auto;
    margin-bottom:1.5em;
}
@media (min-width: 1px) and (max-width: 576px) {
    .help-popup {
        max-width:inherit;
    }
}