/* ==========================================================================
   Generation - Progress Display, Image Pane
   ========================================================================== */

/* Dev controls panel */
.dev-controls {
    background: #16213e;
    border-radius: 8px;
    margin-top: 10px;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.dev-controls.collapsed {
    max-height: 40px;
}

.dev-controls-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    cursor: pointer;
    border-bottom: 1px solid #0f3460;
}

.dev-controls-header h4 {
    font-size: 13px;
    color: #e94560;
    margin: 0;
}

.dev-controls-toggle {
    background: none;
    border: none;
    color: #888;
    font-size: 16px;
    cursor: pointer;
}

.dev-controls-body {
    padding: 12px 14px;
    max-height: 300px;
    overflow-y: auto;
}

.dev-controls.collapsed .dev-controls-body {
    display: none;
}

.dev-row {
    margin-bottom: 12px;
}

.dev-row label {
    display: block;
    font-size: 11px;
    color: #888;
    margin-bottom: 4px;
}

.dev-row input, .dev-row select {
    width: 100%;
    background: #0f3460;
    color: white;
    border: none;
    padding: 8px 10px;
    border-radius: 4px;
    font-size: 12px;
}

.dev-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
}

.dev-btn {
    background: #e94560;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 11px;
    cursor: pointer;
}

.dev-btn:hover {
    background: #ff6b6b;
}

.dev-btn.secondary {
    background: #0f3460;
}

.dev-btn.secondary:hover {
    background: #1a4a7a;
}

.gen-progress {
    margin-top: 10px;
    padding: 8px 10px;
    background: rgba(15, 52, 96, 0.5);
    border-radius: 4px;
    font-size: 11px;
    color: #aaa;
}

.gen-progress-bar {
    height: 4px;
    background: #333;
    border-radius: 2px;
    margin-top: 6px;
    overflow: hidden;
}

.gen-progress-fill {
    height: 100%;
    background: #e94560;
    transition: width 0.3s ease;
}
