/* Editor Modes */
.simple-mode {
    width: 100%;
    height: 100%;
    display: none;
    position: relative;
    flex: 1;
}

.simple-mode.active {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    flex: 1;
}

.advanced-mode {
    display: flex;
    flex-direction: column;
    position: relative;
    flex: 1;
}

.advanced-mode.hidden {
    display: none;
    position: relative;
    flex: 1;
}

.simple-description {
    background: var(--tertiary-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.simple-textarea {
    width: 100%;
    min-height: 150px;
    background: var(--secondary-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1rem;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 14px;
    line-height: 1.5;
    resize: vertical;
}

/* Generated prompt section */
.simple-generated-prompt {
    display: none;
    margin-top: 1.5rem;
}

.simple-generated-prompt.show {
    display: block;
}

/* Prompt Builder */
.prompt-builder {
    background: var(--tertiary-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.prompt-section {
    margin-bottom: 1rem;
}

.prompt-section:last-child {
    margin-bottom: 0;
}

.section-header {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.variable-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.variable-tag {
    padding: 4px 8px;
    background: var(--accent-bg);
    border: 1px solid var(--accent-color);
    border-radius: 4px;
    font-size: 12px;
    color: var(--accent-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.variable-tag:hover {
    background: var(--accent-color);
    color: white;
}

/* Model selector */
.model-selector {
    display: flex;
    gap: 4px;
    background: var(--tertiary-bg);
    border-radius: 6px;
    padding: 4px;
}

.model-option {
    flex: 1;
    padding: 6px 12px;
    font-size: 12px;
    text-align: center;
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--animation-speed);
}

.model-option.active {
    background: var(--accent-color);
    color: white;
}