body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

h1 {
    text-align: center;
    margin-top: 20px;
}

.editor-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

#language-select {
    width: 200px;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#code-editor {
    width: 90%;
    height: 300px;
    padding: 10px;
    font-family: monospace;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: none;
    background-color: #f9f9f9;
}

button {
    padding: 10px 20px;
    margin: 20px 0;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #218838;
}

#output-frame {
    width: 90%;
    height: 300px;
    border: 1px solid #ccc;
    margin-top: 20px;
    border-radius: 4px;
    background-color: white;
}
