.generator-box {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.controls {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.control-group {
    flex: 1;
    min-width: 250px;
}

.control-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

.control-group input,
.control-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    box-sizing: border-box;
}

.output-container {
    background: #272822;
    border-radius: 6px;
    overflow: hidden;
}

.output-header {
    background: #3e3d32;
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #f8f8f2;
    font-size: 0.9rem;
}

.btn-copy {
    background: #75715e;
    color: white;
    border: none;
    padding: 4px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: background 0.2s;
}

.btn-copy:hover {
    background: #a59f85;
}

#outputArt {
    margin: 0;
    padding: 20px;
    color: #f8f8f2;
    font-family: 'Courier New', Courier, monospace;
    font-size: 14px;
    line-height: 1.2;
    white-space: pre-wrap;
    /* or pre? ASCII usually needs pre. pre-wrap breaks alignment */
    white-space: pre;
    overflow-x: auto;
    min-height: 150px;
}