/* ============================================================
   MasFlow Manager — Tema Yönetimi (Tur 6)
   ============================================================ */

.theme-panel {
    padding: 20px;
}

.theme-header {
    margin-bottom: 24px;
}

.theme-title {
    font-family: 'Syne', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--text, #c9d1d9);
    margin: 0 0 6px;
}

.theme-subtitle {
    font-size: 13px;
    color: var(--muted, #8b949e);
    margin: 0;
}

/* ── TEMA GRID ────────────────────────────────────────────── */
.theme-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.theme-card {
    background: var(--surface, #161b22);
    border: 2px solid var(--border, #30363d);
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}

    .theme-card:hover {
        border-color: var(--accent, #c9963a);
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    }

    .theme-card.is-active {
        border-color: var(--accent, #c9963a);
        box-shadow: 0 0 0 4px rgba(201, 150, 58, .15);
    }

/* ── TEMA PREVIEW (mini menü görünümü) ──────────────────── */
.theme-card-preview {
    aspect-ratio: 16/9;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid var(--border, #30363d);
}

.theme-preview-header {
    height: 28px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 12px;
    border-bottom: 1px solid rgba(0, 0, 0, .08);
}

.theme-preview-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    flex-shrink: 0;
}

.theme-preview-line {
    flex: 1;
    height: 6px;
    border-radius: 3px;
    max-width: 80px;
}

.theme-preview-body {
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.theme-preview-card {
    height: 22px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    padding: 0 8px;
    justify-content: flex-end;
}

.theme-preview-pill {
    width: 22px;
    height: 12px;
    border-radius: 6px;
}

/* ── KART INFO ──────────────────────────────────────────── */
.theme-card-info {
    padding: 14px 16px;
}

.theme-card-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    font-size: 15px;
    color: var(--text, #c9d1d9);
}

.theme-card-emoji {
    font-size: 20px;
}

.theme-card-title strong {
    flex: 1;
    font-weight: 600;
}

.theme-badge {
    background: var(--accent, #c9963a);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 2px 8px;
    border-radius: 10px;
}

.theme-card-desc {
    font-size: 12px;
    color: var(--muted, #8b949e);
    line-height: 1.4;
}

/* ── ACTIONS ───────────────────────────────────────────── */
.theme-actions {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    padding-top: 16px;
    border-top: 1px solid var(--border, #30363d);
}

@media (max-width: 600px) {
    .theme-grid {
        grid-template-columns: 1fr;
    }

    .theme-actions {
        justify-content: stretch;
    }

        .theme-actions .btn {
            flex: 1;
        }
}
