/* Styles for the Playground page */
.playground {
    padding: 40px 20px;
    background-color: #f9f9f9;
    max-width: 900px;
    margin: auto;

    h1, h2, h3 {
        text-align: center;
    }
}

.code-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.input-area {
    width: 80%;
    margin-bottom: 20px;
    text-align: center;
}

select, textarea {
    width: 100%;
    margin: 10px 0;
    padding: 10px;
    font-size: 1rem;
}

button {
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
}

button:hover {
    background-color: #0056b3;
}

.output-area {
    width: 80%;
    background-color: #f4f4f4;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    white-space: pre-wrap;
    text-align: left;
    font-family: monospace;
    max-height: 200px;
    overflow-y: auto;
}

h3 {
    margin-top: 20px;
}

h4 {
    margin-bottom: 10px;
}

textarea {
    font-family: monospace;
}