/* help-tip base styles - enhanced in site-custom.css */
.help-tip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: rgba(245, 106, 106, 0.15);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 11px;
    line-height: 20px;
    cursor: help;
    vertical-align: middle;
    margin-left: 0.35em;
    transition: background-color 0.2s ease;
}

.help-tip:hover {
    background-color: rgba(245, 106, 106, 0.35);
}

.help-tip:before {
    content: '?';
    font-weight: bold;
    color: #f56a6a;
}