#container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.CodeMirror {
    border-radius: 10px;
    font-family: 'Nanum Gothic', sans-serif;
}

#editor-container {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn {
    margin: 5px;
    padding: 10px 20px;
    font-size: 1em;
    cursor: pointer;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.btn:hover {
    background-color: #0056b3;
}


button {
    border: none;
    background-color: transparent;
    color: white;
    font-size: 1em;
    cursor: pointer;
}

select {
    border: none;
    background-color: transparent;
    color: white;

}

option {
    background-color: #007bff;
    color: white;
    font-size: 1em;
}

#buttons {
    margin-top: 10px;
}

#description {
    margin-top: 10px;
    font-size: 1.2em;
    color: #333;
    font-family: 'Pretendard';
    font-weight: 400;
    display: flex;
    justify-content: center;
}