.layout {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.controls {
    background: #2a2a2a;
    width: 95%;
    border: 1px solid whitesmoke;
    padding: 15px;
    border-radius: 6px;
}

.controls label {
    display: Block;
    margin-bottom: 8px;
    cursor: pointer;
    width: 95%;
    padding: 0.05rem;
}

.controls hr {
    margin: 15px 0;
    border: none;
    border-top: 1px solid #444;
}

button {
    background: #3b82f6;
    color: #fff;
    border: none;
    padding: 8px 10px;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background: #2563eb;
}

.output {
    background: #111;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    width: 95%;
        border: 1px solid whitesmoke;
}

.toolbar {
    background: #2a2a2a;
    padding: 8px 10px;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

pre {
    margin: 0;
    padding: 12px;
    overflow-x: auto;
    color: #c9d1d9;
    font-size: 13px;
    line-height: 1.4;
}