.help-tooltip-container {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin-left: 0.4rem;
    z-index: 1000;
}

.help-tooltip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background-color: rgba(5, 60, 103, 0.12);
    color: #053c67;
    cursor: pointer;
    border: none;
    padding: 0;
    transition: background-color 0.2s ease, color 0.2s ease;
    position: relative;
    z-index: 1100;
}

.help-tooltip:hover,
.help-tooltip:focus-visible,
.help-tooltip[aria-expanded="true"] {
    background-color: rgba(5, 60, 103, 0.2);
    color: #053c67;
}

.help-tooltip i {
    font-size: 1rem;
    line-height: 1;
    pointer-events: none;
}

.help-tooltip .barschel-help-icon {
    width: 1rem;
    height: 1rem;
    display: inline-block;
    background: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2024%2024%27%3E%3Ccircle%20cx%3D%2712%27%20cy%3D%2712%27%20r%3D%2711%27%20fill%3D%27%23053c67%27/%3E%3Cpath%20fill%3D%27%23ffffff%27%20d%3D%27M12%206c-1.8%200-3.2%201.3-3.2%203h2.1c0-.6.5-1.1%201.1-1.1s1.1.5%201.1%201.1c0%20.4-.2.7-.5.9-.8.6-1.7%201.2-1.7%202.6v.5h2.1v-.4c0-.6.5-.9%201.1-1.3.7-.5%201.4-1.1%201.4-2.3C15.5%207.3%2013.9%206%2012%206zm-1.1%209.3V18h2.2v-2.7h-2.2z%27/%3E%3C/svg%3E") center / contain no-repeat;
    border-radius: 50%;
    font-style: normal;
}

.help-tooltip:focus-visible {
    outline: 2px solid rgba(5, 60, 103, 0.35);
    outline-offset: 2px;
}

.help-tooltip-popover {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 50%;
    transform: translateX(-50%);
    min-width: 220px;
    max-width: 280px;
    padding: 0.75rem 0.9rem;
    background-color: #053c67;
    color: #ffffff;
    border-radius: 0.6rem;
    box-shadow: 0 12px 24px rgba(5, 60, 103, 0.25);
    font-size: 0.85rem;
    line-height: 1.4;
    z-index: 3000;
    animation: help-tooltip-fade-in 0.18s ease-out;
}

.help-tooltip-popover::after {
    content: "";
    position: absolute;
    top: -0.45rem;
    left: 50%;
    width: 0.9rem;
    height: 0.9rem;
    background-color: inherit;
    transform: translateX(-50%) rotate(45deg);
    box-shadow: 0 0 10px rgba(5, 60, 103, 0.2);
}

.help-tooltip-popover-content {
    display: block;
    text-align: left;
}

@keyframes help-tooltip-fade-in {
    from {
        opacity: 0;
        transform: translate(-50%, -0.4rem);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}
