#menu {
    position: fixed;
    top: 0;
    right: 0;
    height: 30px;
    padding-right: 10px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    z-index: 1000;
}

.menu-btn {
    background: #333;
    border: 1px solid #555;
    color: #eee;
    padding: 4px 10px;
    font-family: inherit;
    font-size: 12px;
    cursor: pointer;
    outline: none;
    transition: all 0.2s;
    text-transform: uppercase;
    border-radius: 3px;
    height: 22px;
    line-height: 12px;
}

.menu-btn:hover {
    background: #444;
    color: #fff;
    border-color: #fff;
}
