.resource-editor-wrapper {
    position: fixed;
    z-index: 2000;
    top: 100px;
    right: 0;
    padding: 0.25rem;
    background-color: var(--grey-color);
    border: 2px solid var(--grey-color-dark);
    border-right: none;
    border-radius: 50% 0 0 50%;
}

#resource-editor {
    display: flex;
    padding: 0.5rem;
    border-radius: 50%;
    font-size: 1rem;
    text-decoration: none;
}

/* [bl-res] is for specificity, not scoping: offer-grid.css loads later and its
   `.company-col span { display: block; width: 100% }` stretches the circle into an ellipse.
   Smaller than .grid-action's 2rem — this chip sits on the text it annotates. */
[bl-res] > .resource-editor-icon {
    position: absolute;
    z-index: inherit;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    border: 1px solid transparent;
    border-radius: 50%;
    margin-top: -14px;
    cursor: pointer;
    transition: background-color 0.12s ease, border-color 0.12s ease;
}

    /* Off-palette on purpose: a tool overlay must not read as site UI. The stroke stands
       in for font-weight, which an icon font ignores; the halo carries it on dark panels. */
    .resource-editor-icon > .k-icon.k-font-icon {
        font-size: 17px;
        color: #0d6efd;
        -webkit-text-stroke: 0.4px currentcolor;
        text-shadow: 0 0 2px rgba(255, 255, 255, 0.9);
    }

    [bl-res] > .resource-editor-icon:hover,
    [bl-res] > .resource-editor-icon:focus-visible {
        background-color: var(--grey-color-light);
        border-color: #0d6efd;
    }
