/* Monkey Playground Styles */
.playground-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.controls-bar {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}

.playground-select {
    padding: 0.75rem 1rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    border: 2px solid #000;
    box-shadow: 4px 4px 0 #000;
    background: #fff;
    cursor: pointer;
    font-size: 1rem;
}

.playground-select:focus {
    outline: none;
    box-shadow: 2px 2px 0 #000;
    transform: translate(2px, 2px);
}

.editor-area {
    width: 100%;
    min-height: 400px;
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    padding: 1.5rem;
    border: 2px solid #000;
    box-shadow: 5px 5px 0 #000;
    resize: vertical;
    outline: none;
    background: #f9fafb;
    color: var(--text-main);
}

.editor-area:focus {
    border-color: var(--primary);
}

.output-area {
    min-height: 150px;
    max-height: 300px;
    overflow-y: auto;
    padding: 1.5rem;
    background: #1e1e1e;
    color: #f1f1f1;
    border: 2px solid #000;
    box-shadow: 5px 5px 0 #000;
    font-family: 'Courier New', monospace;
    white-space: pre-wrap;
}
