body {
    font-family: Arial, sans-serif;
    margin: 20px;
    background-color: #a6c8ff;
    color: #2c3e50;
    overflow-x: hidden;
}

h1 {
    text-align: center;
    color: #3498db;
}

#languageSelector, #filename {
    display: block;
    margin: 20px auto;
    padding: 10px;
    background-color: #85c1e9;
    color: #2c3e50;
    border: none;
    border-radius: 5px;
}

.CodeMirror {
    width: 80%;
    height: 400px;
    display: block;
    margin: 20px auto;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #d5e8f2;
    color: #2c3e50;
}

button {
    display: inline-block;
    margin: 10px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    background-color: #3498db;
    color: #ecf0f1;
    border: none;
    border-radius: 5px;
}

button:hover {
    background-color: #2980b9;
}

#licenseButton {
    position: absolute;
    top: 10px;
    left: 10px;
}
