/* Grundlegendes Styling */
.menu {
    width: 100%;
    background-color: #f5f5f5;
    border-bottom: 1px solid #ccc;
    padding: 10px 20px;
    box-sizing: border-box;
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Flex-Layout für Desktop & Mobil */
.menu-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.menu-left a,
.menu-right a {
    margin-left: 5px;
    margin-right: 5px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.menu-left a:last-child {
    margin-right: 0;
}

.menu-right a.logout {
    font-weight: bold;
    color: #d9534f;
}

/* Mobile Anpassung */
@media (max-width: 600px) {
    .menu-nav {
        flex-direction: column;
        align-items: flex-start;
    }
    .menu-left, .menu-right {
        width: 100%;
        margin-bottom: 5px;
    }
    .menu-right {
        text-align: right;
    }
    .menu-left a, .menu-right a {
        margin: 5px 10px;
    }
}

canvas{
  display:block;
  touch-action:none;
}