body {
    font-family: Arial, sans-serif;
    
    justify-content: center;
    /*align-items: center;*/
    height: 100vh;
    margin: 0;
    background-color: #f0f0f5;
}

#editor-container {
    width: 80%;
    max-width: 800px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    padding: 20px;
}

#editor {
    height: 400px;
    width: 100%;
    margin-bottom: 15px;
}

#validate-button {
    background-color: #007BFF;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#validate-button:hover {
    background-color: #0056b3;
}


#formatButton {
    background-color: #007BFF;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#formatButton:hover {
    background-color: #0056b3;
}


#error-message {
    color: red;
    margin-top: 10px;
}