.portal-extension-entry {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    gap: 6px;
    padding: 0 9px;
    border: 1px solid #cfd9ea;
    border-radius: 7px;
    background: #f8faff;
    color: #34425a;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    transition: border-color .18s ease, background-color .18s ease, color .18s ease;
}

.portal-extension-entry:hover,
.portal-extension-entry:focus-visible {
    border-color: #8eb2ff;
    background: #edf3ff;
    color: #175fd4;
}

.portal-extension-entry-icon {
    color: #246bfd;
    font-size: 14px;
    line-height: 1;
}

html.portal-dark .portal-extension-entry {
    border-color: #344966;
    background: #101e32;
    color: #c9d8ed;
}

html.portal-dark .portal-extension-entry:hover,
html.portal-dark .portal-extension-entry:focus-visible {
    border-color: #628be0;
    background: #162a49;
    color: #ffffff;
}

@media screen and (max-width: 970px) {
    .portal-extension-entry {
        width: 30px;
        min-height: 30px;
        padding: 0;
    }

    .portal-extension-entry-label {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
        white-space: nowrap;
    }
}
