body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f0f0f0;
}
#content {
    flex-direction: column;
    align-items: center;
}

#code-output-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

#code,
#results {
    width: 69.5%;
}
#results,
#code {
    margin-top: 20px;
    border: 1px solid #ccc;
    padding: 10px;
    width: 49.5%;
    margin: 0 2.5%;
    height: 300px;
    overflow: auto;
    background-color: #fff;
}
input[type="file"] {
    margin: 20px 0;
}

#input-container {
    text-align: center;
    width: 100%;
    align-self: start;
}

.title {
    text-decoration: none;
    color: black;
}