/* Phase 6 split from frontend/static/app.css */
/* Section: easyvdo */

/* ---------- Easy VDO Mode Grid ---------- */
.evdo-mode-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.evdo-mode-card {
    background: var(--bg-elevated);
    border: 2px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}
.evdo-mode-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), transparent);
    opacity: 0;
    transition: opacity var(--transition-normal);
}
.evdo-mode-card:hover {
    border-color: var(--accent-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.15);
}
.evdo-mode-card:hover::before { opacity: 1; }
.evdo-mode-card.active {
    border-color: var(--accent-blue);
    background: rgba(59, 130, 246, 0.08);
    box-shadow: 0 0 0 1px var(--accent-blue), 0 4px 16px rgba(59, 130, 246, 0.2);
}
.evdo-mode-card.active::before { opacity: 1; }
.evdo-mode-icon {
    font-size: 36px;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}
.evdo-mode-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
    position: relative;
    z-index: 1;
}
.evdo-mode-desc {
    font-size: 12px;
    color: var(--text-muted);
    position: relative;
    z-index: 1;
}

/* ---------- Easy VDO Settings ---------- */
.evdo-settings-layout {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 24px;
}
.evdo-settings-left, .evdo-settings-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.panel-note {
    margin-top: 6px;
    font-size: 12px;
    color: var(--text-muted);
}

/* Easy VDO history items */
.evdo-history-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-subtle);
}
.evdo-history-item:last-child { border-bottom: none; }
.evdo-history-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}
.evdo-history-meta {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
}
.evdo-history-badge {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}
.evdo-history-badge.ai_only        { background: rgba(59, 130, 246, 0.15); color: var(--accent-blue); }
.evdo-history-badge.ai_real_audio  { background: rgba(16, 185, 129, 0.15); color: var(--accent-green); }
.evdo-history-badge.ai_real_tts    { background: rgba(168, 85, 247, 0.15); color: #a855f7; }
.evdo-history-badge.ai_real_tts_cut { background: rgba(245, 158, 11, 0.15); color: var(--accent-yellow); }
.evdo-history-badge.real_tts_cut   { background: rgba(239, 68, 68, 0.15); color: #ef4444; }
.evdo-history-badge.ab_roll        { background: rgba(6, 182, 212, 0.15); color: var(--accent-cyan); }
.evdo-history-badge.product        { background: rgba(59, 130, 246, 0.15); color: var(--accent-blue); }
.evdo-history-badge.tutorial       { background: rgba(16, 185, 129, 0.15); color: var(--accent-green); }
.evdo-history-badge.story          { background: rgba(168, 85, 247, 0.15); color: #a855f7; }
.evdo-history-badge.health         { background: rgba(245, 158, 11, 0.15); color: var(--accent-yellow); }
.evdo-history-badge.food           { background: rgba(239, 68, 68, 0.15); color: #ef4444; }
.evdo-history-badge.promo          { background: rgba(6, 182, 212, 0.15); color: var(--accent-cyan); }
