.logo-ctx-menu {
    position: fixed;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
    padding: 5px;
    min-width: 228px;
    z-index: 99999;
    display: none;
    animation: logoCtxFadeIn 0.12s ease;
}

.logo-ctx-menu.active {
    display: block;
}

@keyframes logoCtxFadeIn {
    from { opacity: 0; transform: scale(0.96) translateY(-4px); }
    to   { opacity: 1; transform: scale(1)    translateY(0); }
}

.logo-ctx-item {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 8px 12px;
    border: none;
    background: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13.5px;
    font-family: inherit;
    color: #1c1c1e;
    text-align: left;
    transition: background 0.1s;
    white-space: nowrap;
}

.logo-ctx-item:hover {
    background: #f3f4f6;
}

.logo-ctx-item:disabled {
    opacity: 0.6;
    cursor: wait;
}

.logo-ctx-icon {
    display: flex;
    align-items: center;
    color: #6b7280;
    flex-shrink: 0;
}

.logo-ctx-sep {
    height: 1px;
    background: #e5e7eb;
    margin: 4px 0;
}
