@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Fira+Code:wght@400;500&display=swap');

body { font-family: 'Inter', sans-serif; }

.sidebar-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #64748b;
    border-radius: 8px;
    transition: all 0.2s;
}
.sidebar-btn:hover { background-color: #f1f5f9; color: #0f172a; }
.sidebar-btn.active { background-color: #eff6ff; color: #1d4ed8; font-weight: 600; }

.card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.json-viewer {
    background-color: #0b0e14;
    color: #39ff14; /* Cor clássica de terminal */
    padding: 20px;
    border-radius: 12px;
    font-family: 'Fira Code', monospace;
    font-size: 13px;
    line-height: 1.6;
    border: 1px solid #1e293b;
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.3);
}

.input-field {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: ring 0.2s;
}
.input-field:focus { border-color: #3b82f6; ring: 3px rgba(59,130,246,0.1); }

.var-tag {
    display: inline-block;
    padding: 4px 10px;
    background: #e0f2fe;
    border: 1px solid #bae6fd;
    color: #0369a1;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    margin: 0 6px 6px 0;
}

/* No seu style.css */
.json-viewer pre {
    tab-size: 2;
    filter: drop-shadow(0 0 1px rgba(255,255,255,0.1));
}

/* Garante que o texto dentro do span não quebre de forma estranha */
.json-viewer span {
    display: inline-block;
}