body {
    font-family: Arial, sans-serif;
    display: flex;
    height: 100vh;
    margin: 0;
    background: #1e1e1e;
    color: white;
}

.container {
    display: flex;
    width: 100%;
}

.sidebar {
    width: 250px;
    background: #333;
    color: white;
    padding: 10px;
}

    .sidebar h2 {
        text-align: center;
    }

    .sidebar input, .sidebar button {
        width: 100%;
        padding: 10px;
        margin-top: 10px;
        border: none;
        border-radius: 5px;
        background: #555;
        color: white;
    }

    .sidebar ul {
        list-style: none;
        padding: 0;
    }

        .sidebar ul li {
            padding: 10px;
            cursor: pointer;
            background: #444;
            margin-top: 5px;
            text-align: center;
        }

            .sidebar ul li:hover {
                background: #666;
            }

.editor {
    flex-grow: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

#noteArea {
    flex-grow: 1;
    width: 100%;
    font-size: 16px;
    padding: 10px;
    background: #222;
    color: white;
    border: none;
    border-radius: 5px;
}

#deletePage {
    background: red;
    color: white;
    border: none;
    padding: 10px;
    margin-top: 10px;
    cursor: pointer;
    border-radius: 5px;
}
