:root {
  --brand-maroon: #5b0303;
  --brand-maroon-2: #7a0808;
  --brand-maroon-soft: #fff1f1;
  --brand-gold: #ffd400;
  --brand-gold-dark: #c99900;
  --brand-gold-soft: #fff8d6;
  --ink: #101827;
  --text: #1f2937;
  --muted: #687386;
  --surface: #ffffff;
  --surface-2: #fffaf0;
  --page: #fbf7ef;
  --border: #eadfcd;
  --shadow: 0 18px 48px rgba(55, 22, 0, .10);
  --danger: #dc2626;
  --warning: #d97706;
  --success: #0f8a5f;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 212, 0, .18), transparent 32%),
    linear-gradient(180deg, #fffaf0 0%, var(--page) 42%, #ffffff 100%);
}
a { color: inherit; text-decoration: none; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 18px; }

.navbar {
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid rgba(234, 223, 205, .9);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; min-height: 78px; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 900; color: var(--brand-maroon); font-size: 1.08rem; letter-spacing: -.01em; }
.logo {
  width: 46px; height: 46px; border-radius: 16px;
  background: linear-gradient(135deg, var(--brand-maroon), #2b0202 60%, var(--brand-gold));
  display: grid; place-items: center; color: white;
  box-shadow: 0 14px 30px rgba(91,3,3,.23);
}
.brand-logo-img {
  width: 76px;
  height: 46px;
  border-radius: 14px;
  object-fit: contain;
  box-shadow: 0 12px 30px rgba(91,3,3,.18);
  background: var(--brand-maroon);
  padding: 4px;
  border: 1px solid rgba(255, 212, 0, .32);
}
.nav-links { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.nav-links a { color: #334155; font-weight: 700; }
.nav-links a:hover { color: var(--brand-maroon); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 16px; border-radius: 14px; border: 1px solid var(--border);
  background: white; color: var(--ink); font-weight: 800; cursor: pointer; transition: .2s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow); border-color: rgba(91,3,3,.25); }
.btn-primary { background: linear-gradient(135deg, var(--brand-maroon), var(--brand-maroon-2)); color: #ffffff; border-color: var(--brand-maroon); }
.btn-primary:hover { background: linear-gradient(135deg, #430202, var(--brand-maroon)); color: #ffffff; }

/* Keep primary-button text white inside the navbar, where link styles are more specific. */
.nav-links a.btn-primary,
.nav-links a.btn-primary:hover,
.nav-links a.btn-primary:focus,
.nav-links a.btn-primary:active {
  color: #ffffff;
}

.btn-danger { background: var(--danger); color: white; border-color: var(--danger); }
.btn-warning { background: var(--warning); color: white; border-color: var(--warning); }
.btn-sm { padding: 7px 11px; font-size: .86rem; border-radius: 11px; }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 8%, rgba(255, 212, 0, .48), transparent 22%),
    linear-gradient(135deg, #fff7dd 0%, #fff 36%, #fff3f3 100%);
  padding: 78px 0 62px;
}
.hero::after {
  content: "";
  position: absolute; inset: auto -90px -130px auto;
  width: 420px; height: 420px; border-radius: 50%;
  background: rgba(91,3,3,.08);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 34px; align-items: center; position: relative; z-index: 1; }
.eyebrow { color: var(--brand-maroon); font-weight: 900; text-transform: uppercase; letter-spacing: .09em; font-size: .78rem; }
h1 { font-size: clamp(2.25rem, 5vw, 4.55rem); line-height: 1.02; margin: 12px 0 18px; color: var(--ink); letter-spacing: -.045em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); margin: 0 0 14px; color: var(--ink); letter-spacing: -.025em; }
h3 { color: var(--ink); }
p { line-height: 1.7; color: #4b5563; }
.hero-card {
  background: rgba(255,255,255,.9); padding: 26px; border-radius: 30px;
  border: 1px solid rgba(234, 223, 205, .85);
  box-shadow: 0 28px 80px rgba(91,3,3,.16);
}
.grid { display: grid; gap: 18px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.card {
  background: rgba(255,255,255,.94); border: 1px solid var(--border); border-radius: 24px; padding: 20px;
  box-shadow: 0 14px 34px rgba(55, 22, 0, .055);
}
.section { padding: 50px 0; }
.stat { display: flex; flex-direction: column; gap: 5px; }
.stat strong { font-size: 1.8rem; color: var(--brand-maroon); }
.muted { color: var(--muted); }
.badge {
  display: inline-flex; align-items: center; gap: 5px; border-radius: 999px; padding: 6px 11px;
  font-size: .78rem; font-weight: 900; background: var(--brand-gold-soft); color: #6b4f00; border: 1px solid rgba(255, 212, 0, .35);
}
.badge-red { background: #fef2f2; color: #b91c1c; border-color: #fecaca; }
.badge-yellow { background: #fffbeb; color: #92400e; border-color: #fde68a; }
.product-card { transition: .2s ease; }
.product-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.product-card img, .image-placeholder {
  width: 100%; height: 190px; border-radius: 20px; object-fit: cover;
  background: linear-gradient(135deg, var(--brand-gold-soft), #fff, var(--brand-maroon-soft));
  display: grid; place-items: center; color: var(--brand-maroon); font-size: 2rem;
}
.product-card h3 { margin: 14px 0 6px; }
.price { font-size: 1.2rem; font-weight: 950; color: var(--brand-maroon); }
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; }
th, td { padding: 12px; text-align: left; border-bottom: 1px solid var(--border); vertical-align: middle; }
th { color: #475569; font-size: .82rem; text-transform: uppercase; letter-spacing: .05em; }
tr:hover td { background: rgba(255, 248, 214, .35); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; }
form p { margin: 0 0 14px; }
input, select, textarea {
  width: 100%; border: 1px solid var(--border); border-radius: 13px; padding: 11px 12px; font: inherit; background: white;
  color: var(--text); outline: none; transition: .16s ease;
}
input:focus, select:focus, textarea:focus { border-color: var(--brand-gold-dark); box-shadow: 0 0 0 4px rgba(255, 212, 0, .18); }
label { display: block; font-weight: 800; margin-bottom: 6px; color: var(--ink); }
.messages { margin: 16px auto; }
.message { padding: 12px 14px; border-radius: 14px; background: var(--brand-gold-soft); border: 1px solid rgba(255, 212, 0, .45); color: #5f4700; margin-bottom: 8px; font-weight: 700; }
.footer { padding: 38px 0; background: linear-gradient(135deg, #270101, var(--brand-maroon)); color: white; margin-top: 42px; }
.footer p { color: #f7dfdf; }
.footer h3 { color: white; }
.panel-layout { display: grid; grid-template-columns: 248px 1fr; gap: 22px; align-items: start; }
.sidebar {
  background: linear-gradient(180deg, #270101, var(--brand-maroon)); color: white; padding: 16px; border-radius: 24px;
  position: sticky; top: 94px; box-shadow: 0 24px 52px rgba(91,3,3,.18);
}
.sidebar h3 { color: #fff; margin-top: 6px; }
.sidebar a { display: block; padding: 11px 12px; border-radius: 12px; color: #f4dcdc; font-weight: 800; }
.sidebar a:hover { background: rgba(255,212,0,.16); color: white; }
.kpi { border-left: 5px solid var(--brand-gold); }
.device-status { width: 10px; height: 10px; border-radius: 50%; display: inline-block; background: #9ca3af; }
.device-status.online { background: var(--success); }
.actions { display: flex; gap: 9px; align-items: center; flex-wrap: wrap; }
.search-hero {
  display:flex; gap:10px; align-items:center; max-width:720px; margin:22px 0;
  background:white; border:1px solid rgba(234,223,205,.95); padding:8px; border-radius:20px;
  box-shadow:0 14px 32px rgba(91,3,3,.09);
}
.search-hero input { border:0; flex:1; min-width:180px; box-shadow: none; }
.relay-hero {
  width:156px; height:156px; border-radius:42px; margin:20px auto;
  background: linear-gradient(135deg, var(--brand-maroon), #2b0202 62%, var(--brand-gold));
  display:grid; place-items:center; font-size:4.1rem; color:white; box-shadow:0 24px 60px rgba(91,3,3,.22);
}
.section-head { display:flex; justify-content:space-between; align-items:flex-end; gap:18px; margin-bottom:20px; }
.team-card img, .team-placeholder {
  width:100%; height:250px; border-radius:22px; object-fit:cover;
  background:linear-gradient(135deg,var(--brand-gold-soft),#fff,var(--brand-maroon-soft));
  display:grid; place-items:center; font-size:3rem; color:var(--brand-maroon);
}
.product-action-form { display:flex; gap:10px; align-items:center; margin:10px 0; }
.product-action-form input { width:110px; }
.live-control-card { border-color:rgba(255,212,0,.55); box-shadow:0 18px 50px rgba(91,3,3,.08); }
.vibra-widget { position:fixed; right:20px; bottom:20px; z-index:100; }
.vibra-toggle { border:0; background:linear-gradient(135deg,var(--brand-maroon),var(--brand-maroon-2)); color:white; border-radius:999px; padding:13px 18px; font-weight:950; box-shadow:0 14px 36px rgba(91,3,3,.3); cursor:pointer; }
.vibra-panel { position:absolute; right:0; bottom:58px; width:min(360px, calc(100vw - 40px)); background:white; border:1px solid var(--border); border-radius:24px; overflow:hidden; box-shadow:0 24px 70px rgba(15,23,42,.22); }
.vibra-head { display:flex; justify-content:space-between; align-items:center; background:linear-gradient(135deg,#270101,var(--brand-maroon)); color:white; padding:13px 15px; }
.vibra-head span { font-size:.8rem; opacity:.9; }
.vibra-messages { height:280px; overflow:auto; padding:14px; display:flex; flex-direction:column; gap:10px; background:#fffaf0; }
.vibra-bot, .vibra-user { padding:10px 12px; border-radius:14px; max-width:88%; line-height:1.45; }
.vibra-bot { background:white; border:1px solid var(--border); align-self:flex-start; }
.vibra-user { background:var(--brand-gold-soft); color:#5f4700; align-self:flex-end; border:1px solid rgba(255,212,0,.35); }
.vibra-form { display:flex; gap:8px; padding:10px; border-top:1px solid var(--border); }
.vibra-form input { flex:1; }
.vibra-form button { background:var(--brand-maroon); color:white; border:0; border-radius:12px; padding:0 14px; font-weight:900; cursor:pointer; }
hr { border:0; border-top:1px solid var(--border); margin:18px 0; }
.logo-preview { max-width: 220px; max-height: 120px; border-radius: 16px; border: 1px solid var(--border); padding: 8px; background: var(--brand-maroon); }
.text-success { color: #047857 !important; }
.text-danger { color: #b91c1c !important; }

@media (max-width: 860px) {
  .hero-grid, .grid-2, .grid-3, .grid-4, .form-grid, .panel-layout { grid-template-columns: 1fr; }
  .nav-inner { align-items: flex-start; flex-direction: column; padding: 14px 0; }
  .sidebar { position: static; }
}
@media (max-width: 640px) {
  .search-hero, .product-action-form { flex-direction:column; align-items:stretch; }
  .product-action-form input { width:100%; }
  .brand { align-items:flex-start; }
  .brand-logo-img { width:70px; height:44px; }
}



/* =========================================================
   Mobile-first responsive hardening
   ========================================================= */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  min-width: 320px;
  -webkit-text-size-adjust: 100%;
}

main,
.container,
.grid > *,
.hero-grid > *,
.panel-layout > *,
.card,
.section-head > * {
  min-width: 0;
}

.container {
  width: 100%;
}

img,
video,
canvas,
svg {
  max-width: 100%;
}

p,
h1,
h2,
h3,
a,
span,
td,
th,
code {
  overflow-wrap: anywhere;
}

code,
pre {
  max-width: 100%;
  white-space: pre-wrap;
  word-break: break-word;
}

button,
.btn,
input,
select,
textarea {
  max-width: 100%;
}

input,
select,
textarea {
  min-width: 0;
}

.nav-toggle {
  display: none;
  flex: 0 0 auto;
  width: 46px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 13px;
  background: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  box-shadow: 0 8px 22px rgba(91, 3, 3, .08);
}

.nav-toggle span {
  display: block;
  width: 23px;
  height: 2px;
  border-radius: 99px;
  background: var(--brand-maroon);
  transition: transform .2s ease, opacity .2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-logout {
  display: inline-flex;
  margin: 0;
}

.actions > input,
.actions > select,
.actions > textarea {
  width: auto;
  min-width: 0;
  flex: 1 1 180px;
}

.actions > form {
  min-width: 0;
}

.table-wrap {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.table-wrap table {
  min-width: 560px;
}

.card.table-wrap {
  overflow-x: auto;
}

.product-card,
.team-card {
  height: 100%;
}

.product-card .actions form {
  margin: 0;
}

.product-card .actions .btn {
  min-height: 42px;
}

.footer h3 {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

@media (max-width: 900px) {
  .navbar {
    backdrop-filter: blur(18px);
  }

  .nav-inner {
    min-height: 70px;
    padding-top: 10px;
    padding-bottom: 10px;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 14px;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
    align-items: center;
  }

  .brand span {
    min-width: 0;
    line-height: 1.15;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    order: 3;
    width: 100%;
    padding: 10px 0 2px;
    border-top: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links > a,
  .nav-links > .btn,
  .nav-links .nav-logout,
  .nav-links .nav-logout .btn {
    width: 100%;
  }

  .nav-links > a:not(.btn) {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 10px 12px;
    border-radius: 11px;
  }

  .nav-links > a:not(.btn):hover {
    background: var(--brand-gold-soft);
  }

  .hero-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .form-grid,
  .panel-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5px;
  }

  .sidebar h3 {
    grid-column: 1 / -1;
  }

  .section-head {
    align-items: center;
  }
}

@media (max-width: 640px) {
  .container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .nav-inner {
    padding-left: 0;
    padding-right: 0;
  }

  .brand {
    align-items: center;
    gap: 9px;
    font-size: .98rem;
  }

  .brand-logo-img {
    width: 64px;
    height: 42px;
    border-radius: 11px;
  }

  .hero {
    padding: 42px 0 36px;
  }

  .hero::after {
    width: 260px;
    height: 260px;
    right: -100px;
    bottom: -110px;
  }

  h1 {
    font-size: clamp(2rem, 11vw, 3rem);
    line-height: 1.06;
    letter-spacing: -.035em;
  }

  h2 {
    font-size: clamp(1.45rem, 7vw, 1.9rem);
  }

  .section {
    padding: 30px 0;
  }

  .grid {
    gap: 14px;
  }

  .card,
  .hero-card {
    padding: 16px;
    border-radius: 18px;
  }

  .section-head {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .section-head h1,
  .section-head h2,
  .section-head p {
    margin-top: 0;
  }

  .section-head > .btn,
  .section-head > a.btn {
    width: 100%;
  }

  .section-head form.actions,
  .card > form.actions,
  .search-hero,
  .product-action-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    max-width: 100%;
  }

  .actions {
    gap: 8px;
    max-width: 100%;
  }

  .actions > input,
  .actions > select,
  .actions > textarea {
    flex-basis: 100%;
    width: 100%;
  }

  .search-hero {
    padding: 7px;
    border-radius: 16px;
  }

  .search-hero input {
    min-width: 0;
  }

  input,
  select,
  textarea {
    font-size: 16px;
  }

  .btn,
  button {
    min-height: 44px;
  }

  .product-card .actions,
  .live-control-card .actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
  }

  .product-card .actions form,
  .product-card .actions .btn,
  .live-control-card .actions form,
  .live-control-card .actions .btn,
  .product-action-form .btn {
    width: 100%;
  }

  .product-action-form input {
    width: 100%;
  }

  .sidebar {
    grid-template-columns: minmax(0, 1fr);
    padding: 13px;
    border-radius: 18px;
  }

  .relay-hero {
    width: 130px;
    height: 130px;
    border-radius: 34px;
    font-size: 3.4rem;
  }

  .table-wrap {
    margin-left: 0;
    margin-right: 0;
  }

  th,
  td {
    padding: 10px;
    white-space: nowrap;
  }

  td:first-child,
  th:first-child {
    padding-left: 8px;
  }

  .footer {
    padding: 30px 0;
    margin-top: 28px;
  }

  .vibra-widget {
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
  }

  .vibra-toggle {
    min-height: 46px;
  }

  .vibra-panel {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: calc(70px + env(safe-area-inset-bottom));
    width: auto;
    max-height: calc(100dvh - 92px - env(safe-area-inset-bottom));
    border-radius: 18px;
  }

  .vibra-messages {
    height: min(46dvh, 280px);
  }

  .vibra-form input {
    min-width: 0;
  }
}

@media (max-width: 390px) {
  .container {
    padding-left: 11px;
    padding-right: 11px;
  }

  .brand span {
    font-size: .9rem;
  }

  .brand-logo-img {
    width: 58px;
    height: 39px;
  }

  .nav-toggle {
    width: 43px;
    height: 42px;
  }

  .card,
  .hero-card {
    padding: 14px;
  }
}

/* =========================================================
   Authentication / Google sign-in
   ========================================================= */
.auth-section {
  min-height: calc(100dvh - 190px);
  display: grid;
  align-items: center;
}
.auth-container { max-width: 560px; }
.auth-card {
  padding: 32px;
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(55, 22, 0, .11);
}
.auth-heading { text-align: center; margin-bottom: 22px; }
.auth-heading h2 { margin-top: 8px; margin-bottom: 8px; }
.auth-heading p { margin: 0; }
.social-login-form { margin: 0; }
.google-login-btn {
  width: 100%;
  min-height: 50px;
  background: #fff;
  border-color: #d7dce3;
  color: #202124;
  box-shadow: 0 5px 16px rgba(15, 23, 42, .06);
}
.google-login-btn:hover {
  border-color: #aeb6c2;
  background: #fafafa;
}
.google-login-btn:disabled {
  cursor: not-allowed;
  opacity: .64;
  transform: none;
  box-shadow: none;
}
.google-icon { width: 21px; height: 21px; flex: 0 0 auto; }
.oauth-setup-note {
  margin: 9px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: .84rem;
  line-height: 1.45;
}
.oauth-setup-note code {
  padding: 2px 6px;
  border-radius: 6px;
  background: var(--brand-gold-soft);
  color: #604800;
}
.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 22px 0;
  color: var(--muted);
  font-size: .84rem;
  font-weight: 750;
}
.auth-divider::before,
.auth-divider::after {
  content: "";
  height: 1px;
  flex: 1;
  background: var(--border);
}
.auth-form ul.errorlist {
  list-style: none;
  margin: 0 0 10px;
  padding: 10px 12px;
  border: 1px solid #fecaca;
  border-radius: 12px;
  background: #fef2f2;
  color: #b91c1c;
  font-size: .9rem;
}
.auth-form .helptext { display: block; margin-top: 5px; color: var(--muted); font-size: .82rem; }
.auth-submit { width: 100%; min-height: 48px; }
.auth-footer { margin: 20px 0 0; text-align: center; }
.auth-footer a { color: var(--brand-maroon); font-weight: 900; text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 640px) {
  .auth-section { min-height: auto; }
  .auth-card { padding: 22px 16px; border-radius: 20px; }
}

/* Django built-in password recovery */
.auth-form-links {
  display: flex;
  justify-content: flex-end;
  margin: -2px 0 16px;
}
.auth-form-links a,
.auth-security-note a {
  color: var(--brand-maroon);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.auth-status-card { text-align: center; }
.auth-status-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: rgba(22, 163, 74, .12);
  color: #15803d;
  font-size: 1.7rem;
  font-weight: 900;
}
.auth-status-icon-error {
  background: rgba(220, 38, 38, .1);
  color: #b91c1c;
}
.auth-security-note {
  padding: 12px 14px;
  margin: 0 0 20px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fffaf2;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.55;
}
.auth-alert {
  padding: 12px 14px;
  margin-bottom: 16px;
  border-radius: 12px;
  font-weight: 700;
}
.auth-alert-error {
  border: 1px solid rgba(220, 38, 38, .28);
  background: rgba(220, 38, 38, .07);
  color: #991b1b;
}
.field-error {
  display: block;
  margin-top: 6px;
  color: #b91c1c;
  font-size: .84rem;
  font-weight: 700;
}


/* OTA firmware management */
.ota-card input[type="text"],
.ota-card input[type="file"],
.ota-card textarea {
  width: 100%;
}
.ota-card code,
.table-wrap code {
  word-break: break-all;
}
