.context-menu {
    position: fixed;
    z-index: 10000;
    background-color: var(--color-bg-secondary);
    display: flex;
    flex-direction: column;
    width: max-content;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 0px 12px var(--color-shadow, rgba(0, 0, 0, 0.15));
    border: 1px solid var(--color-bg-tertiary);
}

.context-group {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: .25rem;
    border-bottom: 1px solid var(--color-bg-tertiary);
    width: 100%;
}

.context-group:last-child {
    border-bottom: none;
}

.context-menu .context {
    width: 100%;
    text-align: left;
    border-radius: 4px;
    color: var(--color-text-secondary);
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
}

.context-menu .context:hover {
    background-color: var(--color-accent);
    color: var(--color-bg-primary);
}

button.context, .userinfo{
    display: flex;
    align-items: center;
    gap: .5rem;
    box-sizing: border-box;
    padding: 0;
    padding: .5rem;
}
