body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    color: #333;
}

.layout {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.header {
    background-color: #f5f5f5;
    padding: 20px;
    text-align: center;
}

.content {
    display: flex;
    flex: 1;
}

.sidebar {
    background-color: #e4e4e4;
    padding: 20px;
    width: 200px; /* Anpassen nach Bedarf */
}

#main-content {
    flex: 1;
    padding: 20px;
}

button {
    display: block;
    padding: 10px;
    margin-bottom: 10px; /* Abstand zwischen den Buttons */
    width: 100%; /* Buttons nehmen die volle Breite des sidebar-Elements ein */
    box-sizing: border-box; /* Stellt sicher, dass Padding und Border innerhalb der angegebenen Breite enthalten sind */
    cursor: pointer;
}

/* Weitere Stile gemäß deinem Original-Beispiel */

