.menu-bar {
    display: flex;
    gap: 4px;
    padding: 4px 0 8px 0;
    border-bottom: 1px solid #3a3a3a;
    margin-bottom: 8px;
    flex-wrap: wrap;
}
.menu-item { position: relative; display: inline-block; }
.menu-btn {
    background: transparent;
    border: none;
    color: #cccccc;
    font-size: 14px;
    font-family: 'Segoe UI', sans-serif;
    padding: 4px 14px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s;
}
.menu-btn:hover { background: rgba(255,255,255,0.08); color: #ffffff; }
.menu-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #2d2d2d;
    border: 1px solid #3a3a3a;
    border-radius: 6px;
    min-width: 180px;
    padding: 4px 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.6);
    z-index: 1000;
    margin-top: 2px;
}
.menu-dropdown.show { display: block; }
.menu-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    color: #cccccc;
    font-size: 13px;
    font-family: 'Segoe UI', sans-serif;
    cursor: pointer;
    transition: background 0.15s;
    border: none;
    background: transparent;
    width: 100%;
    text-align: left;
}
.menu-dropdown-item:hover { background: rgba(255,255,255,0.08); color: #ffffff; }
.menu-dropdown-divider { height: 1px; background: #3a3a3a; margin: 4px 12px; }
