body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}


body.dark-mode {
    background-color: #222;
    color: #fff;
}



#editor-container {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#editor {
    width: 80%;
    margin-bottom: 20px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 2px;
    resize: vertical;
    min-height: 400px;
    overflow: auto; /* Add overflow property */
}

#stats {
    text-align: center;
    margin-bottom: 10px;
}

#footer {
    color: #888;
    text-align: center;
    margin-top: 20px;
}
