/* Admin look */
:root{
  --primary:#0f49a0;
  --accent:#fd9b4d;
  --bg:#f5f7fb;
  --text:#111827;
  --muted:#6b7280;
}
html,body{height:100%;}
body{background:var(--bg);color:var(--text);font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial,sans-serif;}
.navbar{background:#fff;border-bottom:1px solid #e5e7eb;box-shadow:0 10px 30px rgba(0,0,0,.03);}
.brand{color:var(--primary);font-weight:700;}
.card{border:0;border-radius:1rem;box-shadow:0 10px 26px rgba(0,0,0,.06);}
.stat{display:flex;align-items:center;gap:12px;}
.stat .ico{width:44px;height:44px;border-radius:12px;display:grid;place-items:center;color:#fff;
  background: linear-gradient(135deg, var(--primary), #0b3680);
}


.badge-status{
  padding:.4rem .6rem;
  border-radius:.6rem;
  font-weight:600;
  display:inline-flex;        /* evita quebra feia */
  align-items:center;
  white-space:nowrap;         /* NÃO quebrar em espaço */
  line-height:1;
}


.badge-aberto{background:#e0f2fe;color:#075985;}
.badge-analise{background:#fff7ed;color:#9a3412;}
.badge-resolvido{background:#dcfce7;color:#166534;}
.badge-cancelado{background:#fee2e2;color:#991b1b;}
.table thead th{color:#374151;}
footer{border-top:1px solid #e5e7eb;background:#fff;}
.btn-primary{background:linear-gradient(135deg, var(--primary), #0b3680);border:0;}
.btn-accent{background:linear-gradient(135deg, var(--accent), #ff7c1a);border:0;color:#1f2937;}
.sidebar .list-group-item{border:0;border-radius:.6rem;margin-bottom:.35rem;}
.sidebar .list-group-item.active{background:linear-gradient(135deg, var(--primary), #0b3680);}
.preview img{width:110px;height:110px;object-fit:cover;border-radius:10px;margin-right:6px;}
