/* ========== ВЕРХНЯЯ СТРОКА МЕНЮ (ХЕДЕР) ========== */
.top-menu-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #1a1a1a;
    color: #fff;
    padding: 1px 8px;
    font-size: 14px !important;
    font-weight: 400;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.top-menu-left { display: flex; align-items: center; gap: 4px; }

.top-menu-bar:hover {
    background: #2a2a2a;
}

.top-menu-left,
.top-menu-left * {
    cursor: pointer;
    user-select: none;
}

.top-menu-bar .project-title {
    font-size: 8px;
    font-weight: 400;
    letter-spacing: 0.04em;
}

.top-menu-gear {
    background: transparent;
    border: none;
    color: inherit;
    font-size: 12px;
    line-height: 1;
    padding: 0;
    cursor: pointer;
}

.top-menu-gear:hover {
    color: #60a5fa;
}

.top-menu-modes {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    font-size: 8px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.top-menu-mode-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
}

.top-menu-mode-link:hover {
    color: #ffffff;
}

.top-menu-mode-link.is-active {
    color: #ffffff;
    font-weight: 700;
    text-decoration: underline;
}

