body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f4f4f4;
}

.navbar {
    background: #1e1e1e;
    color: white;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links a {
    color: white;
    margin-left: 15px;
    text-decoration: none;
    padding: 6px 12px;
}

.nav-links a:hover {
    background: #ff9800;
    border-radius: 4px;
}

.container {
    padding: 40px;
}

.menu-item {
    background: white;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 6px;
}