body {
    margin: 0;
    background: #1e1e1e;
    color: white;
    font-family: Arial;
}

header {
    background: #111;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.buttons button {
    background: #007acc;
    border: none;
    color: white;
    padding: 10px 15px;
    margin-left: 10px;
    cursor: pointer;
    border-radius: 6px;
}

.buttons button:hover {
    background: #0580e6;
}

.container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 10px;
}

.editor {
    background: #252526;
    border-radius: 6px;
    padding: 10px;
}

.code {
    height: 300px;
    width: 100%;
}

#output {
    grid-column: span 3;
    width: 100%;
    height: 400px;
    background: white;
    border-radius: 6px;
}
