body {
    background-color: #022DBD;
}

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

.editor {
    flex: 1;
    padding: 10px;
    font-family: monospace;
    font-size: 14px;
}

.buttons {
    display: flex;
    justify-content: space-between;
    padding: 10px;
}

.button {
    padding: 8px 16px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
}

.export-button {
    background-color: #28a745;
}

.clear-button {
    background-color: #dc3545;
}
