/* --- Menu Bar --- */
.menu-bar {
    height: 24px;
    background: #f8f8f8;
    color: black;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    font-size: 13px;
    font-weight: 400;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    user-select: none;
}

.menu-left, .menu-right {
    display: flex;
    gap: 16px;
    align-items: center;
}

.menu-left .apple {
    font-size: 16px;
    font-weight: bold;
}