/* ================================================
   THE STUDIO — AI Agentic Command Center CSS
   ================================================ */

/* Breadcrumb (shared) */
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; color: var(--text-muted); }
.breadcrumb-link { color: var(--text-muted); transition: var(--transition-fast); }
.breadcrumb-link:hover { color: var(--text-main); }
.breadcrumb-sep { font-size: 0.7rem; }
.breadcrumb-cur { color: var(--text-main); font-weight: 600; }

/* Studio tier badge */
.studio-tier-badge {
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    background: rgba(0,255,136,0.1);
    color: var(--accent-green);
    border: 1px solid rgba(0,255,136,0.3);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

/* ══════════════════════════════════════════
   SIDEBAR STUDIO NAV
══════════════════════════════════════════ */
.studio-nav-badge {
    margin-bottom: 1.5rem;
}

.studio-nav-link {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.9rem 1rem;
    border-radius: var(--border-radius-md);
    background: linear-gradient(135deg, rgba(0,255,136,0.08), rgba(0,207,112,0.04));
    border: 1px solid rgba(0,255,136,0.2);
    text-decoration: none;
    color: white;
    transition: all 0.25s;
    position: relative;
    overflow: hidden;
}

.studio-nav-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,255,136,0.12), transparent);
    opacity: 0;
    transition: opacity 0.25s;
}

.studio-nav-link:hover::before,
.studio-nav-link.active::before { opacity: 1; }

.snl-icon {
    width: 36px; height: 36px;
    background: linear-gradient(135deg, #00ff88, #00cf70);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #001a0d;
    flex-shrink: 0;
    box-shadow: 0 0 12px rgba(0,255,136,0.3);
}

.snl-text { flex: 1; }
.snl-title { font-size: 0.9rem; font-weight: 700; display: block; }
.snl-sub { font-size: 0.72rem; color: var(--accent-green); }

.snl-badge {
    font-size: 0.65rem;
    font-weight: 800;
    padding: 0.15rem 0.4rem;
    background: var(--accent-green);
    color: #001a0d;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

/* ══════════════════════════════════════════
   HERO PROMPT ZONE
══════════════════════════════════════════ */
.studio-hero {
    position: relative;
    border-radius: var(--border-radius-lg);
    padding: 3rem 2rem 2rem;
    margin-bottom: 2rem;
    overflow: hidden;
    border: 1px solid rgba(0,255,136,0.15);
}

.studio-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(0,255,136,0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(108,99,255,0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(248,32,176,0.06) 0%, transparent 60%);
    pointer-events: none;
}

.studio-hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    animation: particleFloat linear infinite;
    opacity: 0;
}

@keyframes particleFloat {
    0%   { transform: translateY(100%) translateX(0); opacity: 0; }
    10%  { opacity: 0.6; }
    90%  { opacity: 0.3; }
    100% { transform: translateY(-100px) translateX(var(--drift)); opacity: 0; }
}

.studio-hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Agent Avatar */
.studio-agent-avatar {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
}

.agent-ring {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid rgba(0,255,136,0.3);
    animation: ringRotate 3s linear infinite;
}

.agent-ring::before {
    content: '';
    position: absolute;
    top: -2px; left: 30%;
    width: 40%; height: 2px;
    background: var(--accent-green);
    border-radius: 2px;
    box-shadow: 0 0 8px var(--accent-green);
}

@keyframes ringRotate { to { transform: rotate(360deg); } }

.agent-core {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #001f0e, #003319);
    border: 2px solid rgba(0,255,136,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--accent-green);
    box-shadow:
        0 0 20px rgba(0,255,136,0.2),
        inset 0 0 20px rgba(0,255,136,0.05);
    position: relative;
    z-index: 1;
}

.agent-pulse {
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    border: 1px solid rgba(0,255,136,0.15);
    animation: agentPulse 2s ease-out infinite;
}

@keyframes agentPulse {
    0%   { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.4); opacity: 0; }
}

.studio-hero-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.6rem;
    background: linear-gradient(135deg, #ffffff, rgba(255,255,255,0.7));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.studio-hero-sub {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 2rem;
    max-width: 560px;
}

/* Prompt Box */
.studio-prompt-box {
    width: 100%;
    max-width: 760px;
    background: rgba(255,255,255,0.04);
    border: 1.5px solid rgba(0,255,136,0.2);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    transition: border-color 0.25s, box-shadow 0.25s;
    margin-bottom: 1.5rem;
}

.studio-prompt-box:focus-within {
    border-color: rgba(0,255,136,0.5);
    box-shadow: 0 0 30px rgba(0,255,136,0.08);
}

.studio-prompt-input {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: white;
    font-size: 1.05rem;
    line-height: 1.6;
    padding: 1.2rem 1.4rem;
    resize: none;
    font-family: var(--font-body);
}

.studio-prompt-input::placeholder { color: rgba(255,255,255,0.3); }

.spb-row { display: flex; }

.spb-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 1rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    background: rgba(0,0,0,0.15);
    flex-wrap: wrap;
    gap: 0.5rem;
}

.spb-hints { display: flex; flex-wrap: wrap; gap: 0.4rem; }

.hint-chip {
    padding: 0.35rem 0.75rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 100px;
    color: var(--text-muted);
    font-size: 0.78rem;
    cursor: pointer;
    transition: all 0.2s;
}
.hint-chip:hover {
    background: rgba(0,255,136,0.08);
    border-color: rgba(0,255,136,0.3);
    color: var(--accent-green);
}

.spb-actions { display: flex; align-items: center; gap: 0.5rem; }

.token-count {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-family: 'Courier New', monospace;
}

.spb-clear {
    padding: 0.4rem 0.6rem;
    font-size: 0.8rem;
    border-color: rgba(255,255,255,0.1);
}

/* Launch Button */
.btn-launch {
    position: relative;
    padding: 0.7rem 1.6rem;
    background: linear-gradient(135deg, #00ff88, #00cf70);
    color: #001a0d;
    border-radius: var(--border-radius-sm);
    font-weight: 800;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
    overflow: hidden;
}
.btn-launch:not([disabled]):hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,255,136,0.35);
}
.btn-launch[disabled] {
    filter: grayscale(0.6);
    opacity: 0.5;
    cursor: not-allowed;
}
.launch-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}
.btn-launch:not([disabled]):hover .launch-glow { opacity: 1; }

/* MODE BUTTONS */
.studio-modes {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    justify-content: center;
}

.mode-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.2rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--border-radius-md);
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
    min-width: 170px;
}
.mode-btn i { font-size: 1.2rem; flex-shrink: 0; }
.mode-btn:hover {
    border-color: rgba(0,255,136,0.3);
    color: var(--text-main);
    background: rgba(0,255,136,0.04);
}
.mode-btn.active {
    border-color: var(--accent-green);
    background: rgba(0,255,136,0.08);
    color: white;
}
.mode-btn.active i { color: var(--accent-green); }
.mode-title { font-size: 0.9rem; font-weight: 700; }
.mode-desc  { font-size: 0.75rem; color: var(--text-muted); }

/* ══════════════════════════════════════════
   PIPELINE ORCHESTRATION
══════════════════════════════════════════ */
.pipeline-section {
    animation: fadeInUp 0.5s both;
    margin-bottom: 2rem;
}

.pipeline-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.pipeline-title-row {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.pipeline-agent-dot {
    width: 12px; height: 12px;
    border-radius: 50%;
    background: var(--accent-green);
    box-shadow: 0 0 10px var(--accent-green);
    animation: dotPulse 1s ease-in-out infinite alternate;
}
@keyframes dotPulse {
    from { transform: scale(0.9); box-shadow: 0 0 6px var(--accent-green); }
    to   { transform: scale(1.2); box-shadow: 0 0 16px var(--accent-green); }
}

.pipeline-title  { font-size: 1.3rem; font-weight: 700; }
.pipeline-meta   { display: flex; align-items: center; gap: 1rem; color: var(--text-muted); font-size: 0.9rem; }

/* Pipeline Steps */
.pipeline-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.pipeline-step {
    background: var(--bg-panel);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-md);
    padding: 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
}

.pipeline-step.ps-waiting  { opacity: 0.5; }
.pipeline-step.ps-running  { border-color: rgba(0,210,255,0.4); background: rgba(0,210,255,0.04); }
.pipeline-step.ps-done     { border-color: rgba(0,255,136,0.3); background: rgba(0,255,136,0.04); }
.pipeline-step.ps-error    { border-color: rgba(248,32,176,0.4); background: rgba(248,32,176,0.04); }

.pipeline-step.ps-running::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 200%; height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-blue), transparent);
    animation: scanLine 1.5s linear infinite;
}
@keyframes scanLine { to { left: 100%; } }

.ps-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.ps-step-name   { font-weight: 700; font-size: 0.95rem; }
.ps-step-agent  { font-size: 0.75rem; color: var(--text-muted); }
.ps-step-status {
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.ps-progress {
    height: 3px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    overflow: hidden;
}
.ps-progress-fill {
    height: 100%;
    border-radius: 2px;
    transition: width 0.4s ease;
}

/* Master Progress Bar */
.pipeline-master-bar {
    background: var(--bg-panel);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-md);
    padding: 1.2rem 1.5rem;
}
.pmb-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.6rem;
}
#pmb-pct { font-weight: 700; color: var(--accent-green); }
.pmb-track {
    width: 100%;
    height: 8px;
    background: rgba(255,255,255,0.08);
    border-radius: 4px;
    overflow: hidden;
}
.pmb-fill {
    height: 100%;
    background: linear-gradient(90deg, #6c63ff, #00ff88);
    border-radius: 4px;
    transition: width 0.6s cubic-bezier(0.4,0,0.2,1);
    position: relative;
    overflow: hidden;
}
.pmb-fill::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 1.2s linear infinite;
}
@keyframes shimmer { from { transform: translateX(-100%); } to { transform: translateX(100%); } }

/* ══════════════════════════════════════════
   RESULTS PANEL
══════════════════════════════════════════ */
.results-section {
    animation: fadeInUp 0.6s both;
    margin-bottom: 2rem;
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}
.results-header h3 { font-size: 1.4rem; }

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.2rem;
}

.result-card {
    background: var(--bg-panel);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-md);
    padding: 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    animation: fadeInUp 0.5s both;
    transition: all 0.3s;
}
.result-card:hover {
    border-color: rgba(255,255,255,0.15);
    transform: translateY(-3px);
}

.rc-header { display: flex; align-items: center; gap: 0.8rem; }
.rc-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}
.rc-title  { font-weight: 700; font-size: 0.95rem; }
.rc-agent  { font-size: 0.75rem; color: var(--text-muted); }

.rc-preview {
    background: rgba(0,0,0,0.3);
    border-radius: 8px;
    padding: 1rem;
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.8);
    max-height: 160px;
    overflow-y: auto;
    scrollbar-width: thin;
}
.rc-preview canvas {
    width: 100%;
    border-radius: 6px;
    display: block;
}

.rc-actions { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.rc-btn {
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.04);
    color: var(--text-muted);
    transition: all 0.2s;
}
.rc-btn:hover {
    background: rgba(255,255,255,0.08);
    color: white;
    border-color: rgba(255,255,255,0.2);
}
.rc-btn.primary {
    background: var(--grad-primary);
    border: none;
    color: white;
}

/* ══════════════════════════════════════════
   AI PLUGIN SELECTOR PANEL
══════════════════════════════════════════ */
.plugin-selector-panel {
    border-radius: var(--border-radius-lg);
    padding: 1.8rem;
    margin-bottom: 2rem;
}

.psp-head {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}
.psp-head h4 { font-size: 1.05rem; display: flex; align-items: center; gap: 0.5rem; }

.plugin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1rem;
}

.plugin-slot {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--border-radius-md);
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    transition: all 0.25s;
}
.plugin-slot:hover {
    border-color: rgba(108,99,255,0.3);
    background: rgba(108,99,255,0.04);
}

.ps-slot-head {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.ps-slot-icon {
    width: 36px; height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.ps-slot-name { font-weight: 700; font-size: 0.9rem; }
.ps-slot-desc { font-size: 0.75rem; color: var(--text-muted); }

.plugin-select {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--border-radius-sm);
    color: white;
    padding: 0.55rem 0.8rem;
    font-size: 0.85rem;
    outline: none;
    cursor: pointer;
    transition: border-color 0.2s;
    width: 100%;
}
.plugin-select:focus { border-color: rgba(108,99,255,0.5); }
.plugin-select option { background: #1a1c28; }

.ps-slot-status {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
}

.status-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
}
.status-dot.online  { background: var(--accent-green); box-shadow: 0 0 4px var(--accent-green); }
.status-dot.offline { background: rgba(255,255,255,0.3); }
.status-dot.apikey  { background: var(--accent-blue); box-shadow: 0 0 4px var(--accent-blue); }

/* ══════════════════════════════════════════
   API KEY MANAGER MODAL
══════════════════════════════════════════ */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    z-index: 100;
    display: none;
}
.modal-backdrop.open { display: block; }

.api-modal, .store-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    z-index: 101;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    width: min(640px, 90vw);
    max-height: 85vh;
    overflow-y: auto;
    display: none;
    flex-direction: column;
    transition: transform 0.3s cubic-bezier(0.16,1,0.3,1);
}
.api-modal.open, .store-modal.open {
    display: flex;
    transform: translate(-50%, -50%) scale(1);
}

.api-modal-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}
.api-modal-head h3 { font-size: 1.1rem; display: flex; align-items: center; gap: 0.5rem; }

.api-keys-list { display: flex; flex-direction: column; gap: 1rem; }

.api-key-row {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.api-key-label {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.api-key-label a {
    font-size: 0.7rem;
    color: var(--accent-blue);
    text-decoration: underline;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
}
.api-key-input-row { display: flex; gap: 0.5rem; }
.api-key-input {
    flex: 1;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--border-radius-sm);
    color: white;
    padding: 0.6rem 0.9rem;
    font-size: 0.85rem;
    font-family: 'Courier New', monospace;
    outline: none;
    transition: border-color 0.2s;
}
.api-key-input:focus { border-color: rgba(0,255,136,0.4); }
.api-key-input::placeholder { color: rgba(255,255,255,0.25); }

.api-key-saved {
    font-size: 0.72rem;
    color: var(--accent-green);
    display: none;
    align-items: center;
    gap: 0.3rem;
}
.api-key-saved.visible { display: flex; }

/* ══════════════════════════════════════════
   PLUGIN STORE MODAL
══════════════════════════════════════════ */
.store-modal { width: min(900px, 90vw); }

.store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.store-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--border-radius-md);
    padding: 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    transition: all 0.25s;
}
.store-card:hover {
    border-color: rgba(248,32,176,0.3);
    background: rgba(248,32,176,0.04);
    transform: translateY(-3px);
}
.store-card-header { display: flex; align-items: center; gap: 0.8rem; }
.store-card-logo {
    width: 44px; height: 44px;
    border-radius: 10px;
    object-fit: cover;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}
.sc-name { font-weight: 700; font-size: 0.9rem; }
.sc-category { font-size: 0.72rem; color: var(--text-muted); }
.sc-desc { font-size: 0.8rem; color: var(--text-muted); line-height: 1.4; }
.sc-footer { display: flex; justify-content: space-between; align-items: center; }
.sc-badge {
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-weight: 700;
}
.sc-badge.free    { background: rgba(0,255,136,0.15); color: var(--accent-green); }
.sc-badge.api     { background: rgba(0,210,255,0.15); color: var(--accent-blue); }
.sc-badge.partner { background: rgba(248,32,176,0.15); color: var(--accent-pink); }

/* Toast */
.toast { position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%) translateY(100px); background: rgba(18,20,28,0.95); border: 1px solid var(--glass-border); border-radius: var(--border-radius-sm); padding: 1rem 2rem; color: white; font-size: 0.9rem; backdrop-filter: blur(20px); z-index: 999; transition: transform 0.4s cubic-bezier(0.16,1,0.3,1); pointer-events: none; }
.toast.show { transform: translateX(-50%) translateY(0); }

/* Utility */
.mt-auto { margin-top: auto; }
.w-100   { width: 100%; }
.text-muted { color: var(--text-muted); }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 960px) {
    .studio-hero { padding: 2rem 1rem; }
    .studio-hero-title { font-size: 1.5rem; }
    .studio-modes { flex-direction: column; }
    .pipeline-steps { grid-template-columns: 1fr; }
    .plugin-grid { grid-template-columns: 1fr; }
    .results-grid { grid-template-columns: 1fr; }
}
