:root {
  --bg: #0e1110;
  --surface: #171c18;
  --surface-2: #1d241f;
  --surface-3: #252d27;
  --text: #f4f7f4;
  --muted: #aab4ac;
  --line: #39443c;
  --green: #00b050;
  --green-2: #19c866;
  --green-soft: rgba(0,176,80,.16);
  --danger: #ef5350;
  --warning: #ffb74d;
  --info: #42a5f5;
  --radius: 8px;
  --shadow: 0 8px 24px rgba(0,0,0,.24);
  color-scheme: dark;
}
* { box-sizing: border-box; }
html, body { margin:0; min-height:100%; background:var(--bg); color:var(--text); font-family: Inter, Segoe UI, Arial, sans-serif; }
body { min-width: 320px; }
button, input, select, textarea { font: inherit; }
button { cursor:pointer; }
button:disabled { opacity:.5; cursor:not-allowed; }
a { color: var(--green-2); }
.hidden { display:none !important; }
.muted { color:var(--muted); }
.small { font-size:.86rem; }
.bold { font-weight:700; }
.mono { font-family: Consolas, Monaco, monospace; }


.app-shell { min-height:100vh; display:grid; grid-template-rows:auto 1fr 74px; }
.topbar { position:sticky; top:0; z-index:20; display:flex; align-items:center; justify-content:space-between; gap:12px; min-height:60px; padding:8px 18px; background:#030403; border-bottom:2px solid #00b050; }
.topbar-title { display:flex; align-items:center; gap:12px; min-width:0; }
.topbar-title strong { white-space:nowrap; overflow:hidden; text-overflow:ellipsis; font-size:1.05rem; }
.topbar-actions { display:flex; gap:8px; }
.icon-btn { width:42px; height:42px; border:1px solid transparent; border-radius:12px; background:transparent; color:var(--text); display:grid; place-items:center; font-size:1.2rem; }
.icon-btn:hover { background:var(--surface-2); border-color:var(--line); }
.topbar-brand { color:var(--green); font-size:1.12rem; font-weight:900; letter-spacing:1.5px; }
.top-action-btn { min-height:38px; border:1px solid #39443c; border-radius:6px; background:#111612; color:var(--text); padding:6px 10px; display:inline-flex; align-items:center; gap:6px; font-weight:700; }
.top-action-btn:hover { border-color:var(--green); color:#baf7ca; }
.bottom-nav .nav-btn { min-height:70px; border-radius:0; padding:8px 5px; display:grid; justify-items:center; align-content:center; gap:3px; font-size:.78rem; border-top:3px solid transparent; }
.bottom-nav .nav-btn.active { border-top-color:var(--green); background:#101711; }
.bottom-nav .nav-icon { width:auto; font-size:1.15rem; }
.bottom-nav .nav-badge { position:absolute; transform:translate(15px,-12px); }
.layout { display:block; min-height:0; }
.sidebar { display:none; }
.nav-list { display:grid; gap:8px; }
.nav-btn { border:0; background:transparent; color:var(--muted); border-radius:6px; padding:12px 14px; display:flex; align-items:center; gap:11px; text-align:left; }
.nav-btn:hover { background:var(--surface-2); color:var(--text); }
.nav-btn.active { background:var(--green-soft); color:#baf7ca; font-weight:700; }
.nav-icon { width:24px; text-align:center; }
.nav-badge { margin-left:auto; min-width:22px; height:22px; padding:0 6px; border-radius:999px; background:var(--danger); color:white; display:inline-grid; place-items:center; font-size:.75rem; font-weight:700; }
.content { min-width:0; width:min(100%,1220px); margin:0 auto; padding:20px 18px 34px; }
.bottom-nav { position:fixed; left:0; right:0; bottom:0; z-index:30; display:grid; grid-template-columns:repeat(var(--nav-count,5),minmax(0,1fr)); background:#080a08; border-top:2px solid #00b050; padding-bottom:env(safe-area-inset-bottom); }

.page-head { display:flex; align-items:center; justify-content:space-between; gap:12px; margin-bottom:18px; }
.page-head h2 { margin:0; font-size:1.45rem; }
.page-actions { display:flex; flex-wrap:wrap; gap:8px; }
.grid { display:grid; gap:14px; }
.grid.stats { grid-template-columns:repeat(4,minmax(0,1fr)); }
.grid.two { grid-template-columns:repeat(2,minmax(0,1fr)); }
.grid.three { grid-template-columns:repeat(3,minmax(0,1fr)); }
.card { background:var(--surface); border:1px solid #2d382f; border-radius:var(--radius); box-shadow:0 7px 24px rgba(0,0,0,.12); }
.card-pad { padding:16px; }
.stat { min-height:122px; display:flex; align-items:center; gap:14px; }
.stat-icon { width:48px; height:48px; border-radius:50%; display:grid; place-items:center; background:var(--green-soft); color:#8af2aa; font-size:1.3rem; flex:0 0 auto; }
.stat-label { color:var(--muted); font-size:.9rem; }
.stat-value { font-size:1.6rem; font-weight:800; margin-top:4px; }
.section-title { margin:24px 0 12px; font-size:1.18rem; }
.chip-wrap { display:flex; flex-wrap:wrap; gap:8px; }
.chip { display:inline-flex; align-items:center; gap:6px; padding:7px 10px; border:1px solid #4b584d; border-radius:999px; color:#dbe3dc; background:#111612; font-size:.86rem; }
.status-dot { width:8px; height:8px; border-radius:50%; background:var(--green); margin-right:5px; flex:0 0 auto; }

.btn { min-height:42px; border-radius:6px; border:1px solid transparent; padding:9px 14px; font-weight:700; display:inline-flex; align-items:center; justify-content:center; gap:8px; text-decoration:none; }
.btn-primary { background:var(--green); color:#041108; }
.btn-primary:hover { background:var(--green-2); }
.btn-secondary { background:var(--surface-3); border-color:#4a584d; color:var(--text); }
.btn-secondary:hover { background:#303a32; }
.btn-danger { background:rgba(239,83,80,.15); border-color:rgba(239,83,80,.55); color:#ffaaa8; }
.btn-warning { background:rgba(255,183,77,.14); border-color:rgba(255,183,77,.5); color:#ffd395; }
.btn-link { border:0; background:transparent; color:var(--green-2); padding:6px; }
.btn-block { width:100%; }

.form-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:13px; }
.field { display:grid; gap:6px; }
.field.full { grid-column:1/-1; }
label { color:#dbe3dc; font-size:.9rem; font-weight:600; }
input, select, textarea { width:100%; border:1px solid #4a584d; background:#0d120e; color:var(--text); border-radius:6px; padding:11px 12px; outline:none; }
input:focus, select:focus, textarea:focus { border-color:var(--green); box-shadow:0 0 0 3px rgba(0,176,80,.14); }
textarea { resize:vertical; min-height:96px; }
.field-help { color:var(--muted); font-size:.78rem; }
.checkbox { display:flex; align-items:center; gap:8px; }
.checkbox input { width:auto; }

.toolbar { display:flex; gap:10px; flex-wrap:wrap; margin-bottom:14px; }
.toolbar > .grow { flex:1 1 260px; }
.toolbar > * { flex:0 1 220px; }
.list { display:grid; gap:10px; }
.list-item { width:100%; text-align:left; border:1px solid #303b32; background:var(--surface); color:var(--text); border-radius:7px; padding:14px; display:grid; gap:8px; }
.list-item:hover { border-color:#57725e; transform:translateY(-1px); }
.list-row { display:flex; align-items:center; justify-content:space-between; gap:10px; }
.list-main { min-width:0; }
.list-title { font-weight:800; overflow-wrap:anywhere; }
.list-sub { color:var(--muted); font-size:.9rem; margin-top:3px; overflow-wrap:anywhere; }
.pill { display:inline-flex; align-items:center; border-radius:5px; padding:5px 9px; border:1px solid #506054; font-size:.78rem; white-space:nowrap; }
.pill.green { border-color:rgba(0,176,80,.65); color:#8df4aa; background:var(--green-soft); }
.pill.orange { border-color:rgba(255,183,77,.7); color:#ffd397; background:rgba(255,183,77,.1); }
.pill.red { border-color:rgba(239,83,80,.65); color:#ffaaa8; background:rgba(239,83,80,.1); }
.pill.blue { border-color:rgba(66,165,245,.65); color:#a6d5ff; background:rgba(66,165,245,.1); }
.empty { min-height:280px; display:grid; place-items:center; text-align:center; color:var(--muted); padding:32px; }
.empty-icon { font-size:3rem; opacity:.55; margin-bottom:10px; }

.detail-grid { display:grid; grid-template-columns:minmax(0,1.4fr) minmax(280px,.8fr); gap:14px; }
.info-list { display:grid; gap:10px; }
.info-row { display:grid; grid-template-columns:150px 1fr; gap:12px; padding-bottom:9px; border-bottom:1px solid #2c352e; }
.info-row:last-child { border-bottom:0; }
.info-row dt { color:var(--muted); }
.info-row dd { margin:0; overflow-wrap:anywhere; }
.timeline { position:relative; display:grid; gap:16px; padding-left:25px; }
.timeline:before { content:""; position:absolute; left:8px; top:9px; bottom:9px; width:2px; background:#3e4b41; }
.timeline-item { position:relative; }
.timeline-item:before { content:""; position:absolute; left:-21px; top:5px; width:10px; height:10px; border-radius:50%; background:var(--green); box-shadow:0 0 0 4px #203025; }
.timeline-title { font-weight:800; }
.timeline-meta { color:var(--muted); font-size:.8rem; margin-top:3px; }
.timeline-desc { margin-top:5px; color:#d4ddd6; }
.quote-items { display:grid; gap:8px; }
.quote-row { display:grid; grid-template-columns:1fr 80px 120px 42px; gap:8px; align-items:end; }
.quote-total { font-size:1.55rem; font-weight:900; color:#9af0b4; }

.notification { border-left:4px solid #506054; }
.notification.read { opacity:.72; background:#121713; }
.notification.unread { border-left-color:var(--green); background:#18231b; }
.read-pill { background:#2a332d; color:#b8c2ba; }
button:disabled { opacity:.55; cursor:not-allowed; }

.modal-backdrop { position:fixed; inset:0; z-index:60; background:rgba(0,0,0,.72); display:grid; place-items:center; padding:18px; }
.modal { width:min(100%, 820px); max-height:92vh; overflow:auto; background:var(--surface); border:1px solid #435047; border-radius:8px; box-shadow:var(--shadow); }
.modal.small { width:min(100%, 520px); }
.modal-head { position:sticky; top:0; z-index:2; display:flex; align-items:center; justify-content:space-between; gap:10px; padding:16px 18px; background:#121713; border-bottom:1px solid #344038; }
.modal-head h3 { margin:0; }
.modal-body { padding:18px; }
.modal-actions { display:flex; justify-content:flex-end; flex-wrap:wrap; gap:9px; padding:14px 18px; border-top:1px solid #344038; }

.toast { position:fixed; right:18px; bottom:18px; z-index:90; max-width:min(420px,calc(100vw - 36px)); padding:12px 15px; border-radius:7px; background:#263229; border:1px solid #4c5c50; color:white; box-shadow:var(--shadow); animation:toastIn .18s ease-out; }
.toast.error { background:#401d1d; border-color:#8f4040; }
.toast.success { background:#173d24; border-color:#357e4b; }
@keyframes toastIn { from { transform:translateY(12px); opacity:0; } }
.loading-overlay { position:fixed; inset:0; z-index:100; background:rgba(0,0,0,.55); display:grid; place-items:center; align-content:center; gap:12px; }
.spinner { width:42px; height:42px; border:4px solid rgba(255,255,255,.2); border-top-color:var(--green); border-radius:50%; animation:spin .8s linear infinite; }
@keyframes spin { to { transform:rotate(360deg); } }

.table-wrap { overflow:auto; }
table { width:100%; border-collapse:collapse; }
th,td { padding:10px; border-bottom:1px solid #334038; text-align:left; vertical-align:top; }
th { color:var(--muted); font-size:.82rem; }

@media (max-width: 980px) {
  .grid.stats { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .detail-grid { grid-template-columns:1fr; }
}
@media (max-width: 760px) {
  .content { padding:14px 12px 28px; }
  .topbar { padding:8px 10px; }
  .topbar-title strong { font-size:.95rem; }
  .top-action-btn span:last-child { display:none; }
  .top-action-btn { width:40px; justify-content:center; padding:6px; }
  .form-grid { grid-template-columns:1fr; }
  .field.full { grid-column:auto; }
  .quote-row { grid-template-columns:1fr 70px 100px 40px; }
  .info-row { grid-template-columns:1fr; gap:3px; }
  .page-head { align-items:flex-start; }
  .bottom-nav .nav-btn { font-size:.7rem; }
}
@media (max-width: 520px) {
  .grid.stats, .grid.two, .grid.three { grid-template-columns:1fr; }
  .auth-card { padding:20px; }
  .stat { min-height:96px; }
  .quote-row { grid-template-columns:1fr 70px; }
  .quote-row .price { grid-column:1/2; }
  .quote-row .remove { grid-column:2/3; grid-row:2; }
  .page-head { flex-direction:column; }
  .page-actions { width:100%; }
  .page-actions .btn { flex:1; }
}

.attachment-item { cursor:pointer; }
.attachment-item:hover { border-color:var(--green); }


/* Tela de acesso restaurada conforme o visual original do KBYTE APP7. */
.auth-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background: #0f1213;
}
.auth-card {
  width: min(100%, 460px);
  background: #171c18;
  border: 0;
  border-radius: 12px;
  box-shadow: none;
  padding: 24px;
  text-align: center;
}
.auth-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.auth-brand-icon {
  display: block;
  width: 72px;
  height: 72px;
  color: #00b050;
}
.auth-brand-name {
  margin-top: 8px;
  color: #00b050;
  font-size: 40px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 2px;
}
.auth-brand-subtitle {
  margin-top: 2px;
  color: #f2f2f2;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}
.auth-form {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}
.auth-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 49px;
  margin: 0;
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 12px;
  background: rgba(0,0,0,.10);
  overflow: hidden;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.auth-input-wrap:focus-within {
  border-color: #00b050;
  box-shadow: 0 0 0 1px rgba(0,176,80,.16);
}
.auth-input-wrap input {
  height: 100%;
  flex: 1;
  min-width: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  outline: 0;
  padding: 0 48px 0 43px;
  color: #f4f7f4;
  font-size: 16px;
  font-weight: 400;
}
.auth-input-wrap input::placeholder {
  color: #c8cfca;
  opacity: 1;
}
.auth-input-wrap input:focus {
  border: 0;
  box-shadow: none;
}
.auth-field-icon {
  position: absolute;
  left: 9px;
  top: 50%;
  width: 22px;
  height: 22px;
  transform: translateY(-50%);
  color: #cbd2cd;
  pointer-events: none;
}
.auth-field-icon svg,
.auth-password-toggle svg,
.auth-btn-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}
.auth-password-toggle {
  position: absolute;
  right: 7px;
  top: 50%;
  width: 30px;
  height: 30px;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  padding: 5px;
  background: transparent;
  color: #cbd2cd;
}
.auth-password-toggle:hover,
.auth-password-toggle:focus-visible {
  background: rgba(255,255,255,.08);
  outline: 0;
}
.auth-enter-btn,
.auth-register-btn {
  width: 100%;
  height: 41px;
  min-height: 41px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 22px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
}
.auth-enter-btn {
  margin-top: 4px;
  border: 1px solid #00b050;
  background: #00b050;
  color: #061009;
}
.auth-enter-btn:hover,
.auth-enter-btn:focus-visible {
  background: #08ba59;
  border-color: #08ba59;
  outline: 0;
}
.auth-register-btn {
  margin-top: 10px;
  border: 1px solid rgba(255,255,255,.48);
  background: transparent;
  color: #a8e4b7;
}
.auth-register-btn:hover,
.auth-register-btn:focus-visible {
  border-color: #00b050;
  background: rgba(0,176,80,.08);
  outline: 0;
}
.auth-btn-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}
.auth-forgot-btn {
  display: inline-block;
  margin: 3px auto 0;
  border: 0;
  background: transparent;
  color: #a8e4b7;
  padding: 5px 10px;
  font-size: 14px;
  line-height: 22px;
}
.auth-forgot-btn:hover,
.auth-forgot-btn:focus-visible {
  color: #c5f0cf;
  text-decoration: underline;
  outline: 0;
}
.auth-divider {
  height: 1px;
  margin-top: 13px;
  background: rgba(255,255,255,.25);
}
.auth-admin-help {
  margin: 12px 0 0;
  color: #e3e3e3;
  font-size: 12px;
  line-height: 18px;
  font-weight: 600;
  text-align: center;
}
.auth-form-secondary {
  margin-top: 28px;
}
.auth-plain-input {
  width: 100%;
  height: 49px;
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 12px;
  background: rgba(0,0,0,.10);
  color: #f4f7f4;
  padding: 0 15px;
  outline: 0;
}
.auth-plain-input:focus {
  border-color: #00b050;
  box-shadow: 0 0 0 1px rgba(0,176,80,.16);
}
.auth-plain-input::placeholder { color: #c8cfca; opacity: 1; }
.auth-register-help { font-weight: 400; color: #aab4ac; }
.auth-reset-step { margin-top: 16px; }
@media (max-width: 520px) {
  .auth-shell { padding: 16px; align-items: center; }
  .auth-card { padding: 22px 20px; }
  .auth-brand-name { font-size: 36px; }
  .auth-brand-subtitle { font-size: 13px; }
}


/* Histórico de equipamento e impressão térmica — V7.1.3 */
.serial-history{grid-column:1/-1;margin-top:-2px}
.serial-history-loading,.serial-history-empty{border:1px solid var(--border);border-radius:8px;padding:10px 12px;color:var(--muted);background:#101612}
.serial-history-alert{border:1px solid #b98719;border-left:4px solid #e8aa24;border-radius:8px;padding:10px 12px;background:#211b0c;color:#f7e6b6}
.serial-history-alert>strong{display:block;margin-bottom:7px;color:#ffd166}
.serial-history-alert>div{padding:6px 0;border-top:1px solid #5c481a}
.serial-history-alert span{color:#d8cfb7}
.equipment-history-card{border-left:4px solid #e8aa24}
.equipment-history-list{display:grid;gap:7px}
.equipment-history-item{display:block;width:100%;text-align:left;border:1px solid var(--border);border-radius:8px;background:#101612;color:var(--text);padding:9px;cursor:pointer}
.equipment-history-item:hover{border-color:var(--green)}
.equipment-history-item strong,.equipment-history-item span{display:block}
.equipment-history-item span{font-size:12px;color:var(--muted);margin-top:3px}


/* Rotas Google Maps e Waze — V7.1.3 */
.route-card{margin-top:16px}
.route-card h3,.route-card h4{margin:0 0 8px}
.route-address{margin:0 0 12px;color:var(--muted);line-height:1.45}
.route-actions{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:8px}
.route-actions .btn{width:100%;min-height:42px}
@media(max-width:560px){.route-actions{grid-template-columns:1fr}}

/* Chat interno — KBYTE APP7 V7.2.5 */
.chat-top-btn{position:relative}
.top-chat-badge{position:absolute;right:-5px;top:-6px;min-width:20px;height:20px;padding:0 5px;border-radius:999px;background:var(--danger);color:#fff;display:grid;place-items:center;font-size:.7rem;font-weight:800;border:2px solid #030403}
.chat-info{display:flex;align-items:flex-start;gap:14px;margin-bottom:18px;border-left:4px solid var(--green)}
.chat-info-icon{font-size:1.8rem;line-height:1}
.chat-info p{margin:5px 0 0;color:var(--muted);line-height:1.45}
.section-title-row{display:flex;align-items:center;justify-content:space-between;gap:12px;margin:18px 0 10px}
.section-title-row .section-title{margin:0}
.chat-conversation{position:relative}
.chat-conversation.chat-unread{border-color:rgba(0,176,80,.72);background:#16231a}
.chat-conversation-right{display:flex;align-items:center;gap:9px;flex-shrink:0}
.chat-count{min-width:24px;height:24px;padding:0 7px;border-radius:999px;background:var(--green);color:#071109;display:inline-grid;place-items:center;font-size:.75rem;font-weight:900}
.chat-preview{margin-top:7px;color:#d4ddd6;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.chat-unread .chat-preview{color:#fff;font-weight:700}
.chat-thread-page{display:grid;gap:12px;min-height:calc(100vh - 165px)}
.chat-thread-head{margin-bottom:0}
.chat-thread-title{display:flex;align-items:center;gap:10px;min-width:0}
.chat-thread-title h2{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.chat-thread-title p{margin:3px 0 0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.chat-back{flex:0 0 auto;border-color:#39443c}
.chat-closed-banner{padding:10px 13px;border:1px solid #5c5b39;border-left:4px solid #d7bd46;border-radius:7px;background:#27240f;color:#f2e7a8;font-size:.9rem}
.chat-panel{display:grid;grid-template-rows:minmax(300px,1fr) auto auto;overflow:hidden;min-height:560px}
.chat-messages{height:min(58vh,620px);min-height:330px;overflow:auto;padding:18px 18px 10px;background:linear-gradient(180deg,#111612 0%,#0d120e 100%);scroll-behavior:smooth}
.chat-empty{min-height:100%;display:grid;place-items:center;align-content:center;gap:7px;text-align:center;color:var(--muted);padding:30px}
.chat-empty-icon{font-size:2.5rem;opacity:.7}
.chat-row{display:flex;margin:5px 0}
.chat-row.mine{justify-content:flex-end}
.chat-row.theirs{justify-content:flex-start}
.chat-bubble{max-width:min(76%,680px);padding:9px 11px 7px;border-radius:13px;background:#252d27;border:1px solid #39443c;box-shadow:0 2px 8px rgba(0,0,0,.12)}
.chat-row.mine .chat-bubble{background:#163821;border-color:#287643;border-bottom-right-radius:4px}
.chat-row.theirs .chat-bubble{border-bottom-left-radius:4px}
.chat-sender{font-size:.78rem;font-weight:800;color:#76df94;margin-bottom:4px}
.chat-text{white-space:pre-wrap;overflow-wrap:anywhere;line-height:1.42;color:#f0f5f1}
.chat-time{text-align:right;color:#99a49c;font-size:.7rem;margin-top:4px}
.chat-date{display:flex;justify-content:center;margin:14px 0 10px}
.chat-date span{padding:4px 10px;border-radius:999px;background:#242b26;border:1px solid #39443c;color:#aeb8b1;font-size:.75rem}
.chat-composer{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:9px;align-items:end;padding:12px 12px 8px;background:#151b16;border-top:1px solid #334038}
.chat-composer textarea{width:100%;min-height:46px;max-height:132px;resize:vertical;padding:11px 12px;border:1px solid #48544b;border-radius:10px;background:#0e130f;color:var(--text);font:inherit;line-height:1.4;outline:none}
.chat-composer textarea:focus{border-color:var(--green);box-shadow:0 0 0 2px rgba(0,176,80,.12)}
.chat-send{min-width:116px;min-height:46px}
.chat-hint{padding:0 13px 10px;background:#151b16;color:#879188;font-size:.72rem;text-align:right}
.chat-order-card{border-left:4px solid var(--green)}
.chat-order-card h4{margin-top:0}
.chat-order-card p{line-height:1.45}

@media(max-width:760px){
  .bottom-nav .nav-btn{font-size:.64rem;padding-left:2px;padding-right:2px}
  .bottom-nav .nav-icon{font-size:1.05rem}
  .chat-panel{min-height:calc(100vh - 205px)}
  .chat-messages{height:calc(100vh - 330px);min-height:300px;padding:13px 10px 8px}
  .chat-bubble{max-width:88%}
  .chat-composer{grid-template-columns:minmax(0,1fr) 48px;padding:9px}
  .chat-send{min-width:48px;width:48px;padding:0}
  .chat-send span{display:none}
  .chat-hint{display:none}
  .chat-thread-head{align-items:flex-start}
  .chat-thread-head>.pill{margin-top:4px}
}
@media(max-width:520px){
  .chat-info{padding:13px}
  .chat-conversation-right .small{display:none}
  .chat-thread-title h2{font-size:1.08rem}
  .chat-bubble{max-width:92%}
}
