body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f5f5f5;
    color: #111;
}

/* Top Bar */
.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: white;
    border-bottom: 1px solid #ddd;
}

.menu {
    font-size: 24px;
    cursor: pointer;
}

/* Content */
.container {
    padding: 20px;
}

.card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    margin-top: 20px;
}

/* Status Box (später wichtig) */
.status {
    margin-top: 20px;
    padding: 15px;
    background: #e9f5ff;
    border-radius: 12px;
    font-size: 14px;
}

/* Footer */
.footer {
    text-align: center;
    padding: 20px;
    font-size: 12px;
    color: #777;
}