.scripts-container {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.scripts-list {
    flex: 1;
}

.script-content {
    flex: 2;
}

#script-list {
    list-style: none;
    padding: 0;
}

.script-item {
    background: var(--bg-alt);
    border-radius: var(--radius);
    padding: 1rem;
    margin-bottom: 0.5rem;
    border: 1px solid #1f2937;
    cursor: pointer;
    transition: background 0.2s;
}

.script-item:hover {
    background: rgba(13,19,36,0.8);
}

#script-code {
    background: var(--bg-alt);
    border-radius: var(--radius);
    padding: 1.2rem;
    border: 1px solid #1f2937;
    white-space: pre-wrap;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    min-height: 200px;
    overflow-x: auto;
}

/* Extra: image panel under the Copy button */

#script-image-panel {
    margin-top: 1.2rem;
    text-align: center;
}

#script-image {
    max-width: 100%;
    border-radius: var(--radius);
    border: 1px solid #1f2937;
}
