body.dark-mode {
    background: #181a1b;
    color: #e0e0e0;
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    height: 100vh;
    overflow: hidden; /* verhindert globale Scrollbar */
}
.toolbar {
    background: #23272a;
    padding: 1rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #222;
}
.toolbar input[type="text"] {
    background: #2c2f33;
    color: #e0e0e0;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    width: 300px;
}
.container {
    display: flex;
    height: calc(100vh - 60px);
}
.sidebar {
    width: 260px;
    background: #23272a;
    border-right: 1px solid #222;
    padding: 1rem 0.5rem;
    overflow-y: auto;
}
.main-content {
    flex: 1;
    padding: 2rem;
    background: #181a1b;
    overflow-y: auto;
}
/* EasyMDE Dark Anpassung */
.editor-toolbar, .CodeMirror {
    background: #23272a !important;
    color: #e0e0e0 !important;
}
