:root {
  --ink: #0e1728;
  --muted: #53617a;
  --blue: #0d5cff;
  --green: #43bf12;
  --green-soft: #e9f7dd;
  --paper: #fbfaf7;
  --line: #dededb;
  --danger: #ff302a;
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: light;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

button {
  color: inherit;
  font: inherit;
}

.nerli-shell {
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  grid-template-rows: 94px minmax(0, 1fr) 72px;
  position: relative;
  isolation: isolate;
  overflow-x: hidden;
  background-color: var(--paper);
  background-image: radial-gradient(circle, rgba(14, 23, 40, 0.11) 0.75px, transparent 0.9px);
  background-size: 8px 8px;
}

.nerli-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(circle at 69% 43%, rgba(255,255,255,.92) 0, rgba(255,255,255,.5) 36%, transparent 68%);
}

.topbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 29px;
  border-bottom: 1px solid rgba(14, 23, 40, 0.14);
  background: rgba(251, 250, 247, 0.82);
  backdrop-filter: blur(14px);
  position: relative;
  z-index: 20;
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-crop {
  display: block;
  height: 57px;
  width: 225px;
  overflow: hidden;
  position: relative;
}

.brand-logo {
  display: block;
  width: 230px;
  height: auto;
  transform: translate(-5.5px, -11px);
}

.network-pill {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding: 10px 20px;
  border: 1px solid #d8d8d5;
  border-radius: 999px;
  background: rgba(255,255,255,.86);
  font-size: 18px;
}

.live-dot {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--green);
  box-shadow: inset 0 -1px 1px rgba(0,0,0,.14);
}

.live-dot.small {
  width: 12px;
  height: 12px;
}

.settings-button {
  justify-self: end;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 14px;
  background: transparent;
  cursor: pointer;
}

.settings-button:hover,
.settings-button:focus-visible {
  background: rgba(14,23,40,.06);
}

.settings-button svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.workspace {
  width: 100%;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(330px, 28.5%) minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  padding: 9px 33px 45px 44px;
}

.intro {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 38px;
  padding: 17px 8px 10px 0;
}

.intro h1 {
  margin: 0 0 24px;
  font-size: clamp(47px, 3.42vw, 56px);
  line-height: 1.08;
  letter-spacing: -2.8px;
  font-weight: 760;
}

.intro p {
  max-width: 390px;
  margin: 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
  letter-spacing: -.2px;
}

.privacy-line {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 18px;
  white-space: nowrap;
}

.shield {
  width: 38px;
  height: 43px;
  overflow: visible;
  fill: white;
  stroke: var(--ink);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.shield .shield-check {
  fill: none;
  stroke: var(--green);
  stroke-width: 2.1;
}

.share-panel {
  width: 100%;
  max-width: 1055px;
  justify-self: end;
  align-self: center;
  padding: 28px 37px 25px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 10px 34px rgba(24,31,43,.07);
  backdrop-filter: blur(8px);
}

.panel-heading {
  display: flex;
  align-items: baseline;
  gap: 30px;
  margin: 0 5px 24px;
}

.panel-heading h2 {
  margin: 0;
  font-size: 29px;
  line-height: 1;
  letter-spacing: -.9px;
}

.online-count {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #28a80b;
  font-size: 19px;
}

.device-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 27px;
}

.device-card {
  min-width: 0;
  height: 249px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 16px;
  border: 1px solid #dededb;
  border-radius: 15px;
  background: rgba(255,255,255,.72);
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.device-card:hover {
  transform: translateY(-2px);
  border-color: #aeb4bd;
  box-shadow: 0 10px 24px rgba(20,29,45,.07);
}

.device-card:focus-visible {
  outline: 3px solid rgba(13,92,255,.28);
  outline-offset: 3px;
}

.device-card.selected {
  border: 2px solid var(--ink);
  box-shadow: 0 0 0 1px rgba(14,23,40,.08), 0 10px 26px rgba(20,29,45,.08);
}

.device-card strong {
  margin: 1px 0 9px;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -.7px;
}

.device-status {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 4px 14px;
  border-radius: 10px;
  color: #228b0a;
  background: var(--green-soft);
  font-size: 15px;
}

.device-status.self {
  color: var(--ink);
  background: #f0f0ef;
}

.selected-check {
  position: absolute;
  top: 13px;
  right: 13px;
  z-index: 4;
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--ink);
}

.selected-check svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.device-art {
  width: 100%;
  height: 152px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.device-art > svg {
  width: 67%;
  max-width: 170px;
  height: 126px;
  overflow: visible;
  fill: none;
  stroke: #101721;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.phone-art > svg {
  width: 48%;
  max-width: 120px;
}

.tablet-art > svg {
  width: 58%;
  max-width: 145px;
}

.desktop-art > svg,
.tv-art > svg {
  width: 65%;
}

.device-shell {
  fill: white;
  stroke: #111821;
}

.screen-blue-light {
  fill: #248dff;
  stroke: none;
}

.screen-blue {
  fill: #0756e8;
  stroke: none;
}

.screen-green {
  fill: #f0fae7;
  stroke: none;
}

.screen-hill {
  fill: #8edb3d;
  stroke: none;
}

.signal {
  width: 28px;
  height: 56px;
  position: absolute;
  top: 51px;
}

.signal-left {
  left: 11%;
}

.signal-right {
  right: 11%;
  transform: scaleX(-1);
}

.signal i {
  position: absolute;
  border: solid var(--green);
  border-width: 0 0 0 2px;
  border-radius: 50%;
}

.signal i:first-child {
  width: 13px;
  height: 27px;
  left: 11px;
  top: 14px;
}

.signal i:last-child {
  width: 24px;
  height: 48px;
  left: 2px;
  top: 4px;
}

.signal-blue i {
  border-left-color: var(--blue);
}

.send-heading {
  margin: 23px 4px 15px;
  font-size: 20px;
  font-weight: 700;
}

.send-heading span {
  color: var(--blue);
  font-size: 21px;
}

.tabs {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid #d5d7dc;
  border-radius: 12px;
  background: #f0f1f3;
  margin-left: 1px;
}

.tabs button {
  height: 39px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 0 18px;
  border: none;
  border-radius: 9px;
  color: #344057;
  background: transparent;
  font-size: 17px;
  cursor: pointer;
}

.tabs button.active {
  color: white;
  background: var(--blue);
  box-shadow: 0 3px 8px rgba(13,92,255,.22);
}

.tabs svg,
.drop-zone > svg,
.mini-button svg,
.dismiss-incoming svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tabs svg {
  width: 24px;
  height: 24px;
}

.drop-zone {
  width: 78%;
  min-height: 137px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin: 17px 0 22px;
  border: 1.5px dashed var(--blue);
  border-radius: 11px;
  color: var(--blue);
  background: rgba(250,252,255,.72);
  cursor: pointer;
  transition: transform .18s, background .18s;
}

.drop-zone:hover {
  transform: translateY(-1px);
  background: #eff5ff;
}

.drop-zone > svg {
  width: 66px;
  height: 66px;
  stroke-width: 1.5;
}

.drop-zone > span {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.drop-zone strong {
  font-size: 24px;
  letter-spacing: -.6px;
}

.drop-zone small {
  color: #46536a;
  font-size: 17px;
}

.transfer-card {
  width: 78%;
  min-height: 130px;
  display: grid;
  grid-template-columns: minmax(235px, 1.1fr) minmax(250px, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 16px 21px;
  border: 1px solid #dededb;
  border-radius: 12px;
  background: rgba(255,255,255,.76);
}

.file-list {
  display: grid;
  gap: 11px;
}

.file-row {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.file-row > span:last-child {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.file-row strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 15px;
}

.file-row small {
  color: #46536a;
  font-size: 13px;
}

.file-glyph {
  width: 34px;
  height: 39px;
  position: relative;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--ink);
}

.file-glyph svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: white;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linejoin: round;
}

.file-glyph small {
  position: relative;
  z-index: 2;
  margin-top: 14px;
  color: currentColor;
  font-size: 7px;
  font-weight: 800;
}

.file-glyph.pdf {
  color: #ff2723;
}

.total-size {
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 15px;
}

.progress-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 12px;
}

.progress-meta strong {
  color: var(--blue);
  font-size: 17px;
}

.progress-track {
  height: 8px;
  overflow: hidden;
  border-radius: 99px;
  background: #e7e8ea;
}

.progress-track span {
  display: block;
  width: 68%;
  height: 100%;
  border-radius: inherit;
  background: var(--blue);
}

.transfer-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mini-button {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid #aeb5c1;
  border-radius: 9px;
  background: white;
  cursor: pointer;
}

.mini-button.danger {
  color: var(--danger);
  border-color: var(--danger);
}

.mini-button svg {
  width: 21px;
  height: 21px;
  stroke-width: 2.1;
}

.statusbar {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 0 32px;
  border-top: 1px solid rgba(14,23,40,.12);
  background: rgba(251,250,247,.82);
  font-size: 16px;
}

.statusbar > div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.statusbar a {
  color: var(--blue);
  text-decoration: none;
}

.status-divider {
  width: 1px;
  height: 28px;
  background: #d3d4d2;
}

.incoming-stack {
  width: min(345px, calc(100vw - 32px));
  position: fixed;
  right: 24px;
  bottom: 9px;
  z-index: 30;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.incoming-card {
  position: relative; /* containing block for .dismiss-incoming (position: absolute) — without this, .incoming-stack (position: fixed) is the nearest positioned ancestor instead, so every card's dismiss button in a stack collapses onto the same spot and can dismiss the wrong card */
  width: 100%;
  min-height: 184px;
  padding: 20px 21px 18px;
  border: 1px solid #c4c8ce;
  border-radius: 12px;
  background: rgba(255,255,255,.97);
  box-shadow: 0 15px 35px rgba(15,23,38,.22), 0 2px 5px rgba(15,23,38,.08);
}

.dismiss-incoming {
  width: 31px;
  height: 31px;
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
}

.dismiss-incoming svg {
  width: 17px;
  height: 17px;
}

.incoming-details {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 12px;
  align-items: center;
  padding-right: 17px;
}

.incoming-monitor {
  width: 54px;
  height: 57px;
  overflow: visible;
  fill: white;
  stroke: var(--ink);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.incoming-monitor .monitor-hill {
  fill: #9bdf4a;
  stroke: none;
}

.incoming-details > div {
  display: grid;
  gap: 5px;
}

.incoming-details strong {
  font-size: 14px;
}

.incoming-details span {
  font-size: 13px;
}

.incoming-details small {
  color: #26324a;
  font-size: 12px;
}

.incoming-actions {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 14px;
  margin-top: 18px;
}

.incoming-actions button {
  height: 46px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
}

.incoming-actions .decline {
  color: var(--danger);
  border: 1px solid var(--danger);
  background: white;
}

.incoming-actions .accept {
  color: white;
  border: 1px solid var(--blue);
  background: var(--blue);
  box-shadow: 0 6px 12px rgba(13,92,255,.18);
}

/* A short, dismissable toast — same card shell/shadow as the incoming
   notifications above (stacks safely alongside them, no layout of its
   own to get wrong), but compact and deliberately neutral: no red/danger
   styling, this is information, not an error. The doubled-up selector
   (rather than plain .decline-toast) outweighs the later, same-specificity
   .incoming-card overrides in the mobile media queries below, so this
   stays compact at every breakpoint instead of inheriting their taller
   min-height/padding meant for the file-request/message cards. */
.incoming-card.decline-toast {
  min-height: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 44px 16px 18px;
}

.decline-toast-icon {
  flex: none;
  width: 22px;
  height: 22px;
  color: var(--muted);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.decline-toast-message {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  color: var(--ink);
}

@media (max-width: 1250px) {
  .workspace {
    grid-template-columns: 300px minmax(0, 1fr);
    padding-left: 30px;
    padding-right: 30px;
  }

  .intro h1 {
    font-size: 44px;
  }

  .intro p {
    font-size: 18px;
  }

  .privacy-line {
    font-size: 15px;
  }

  .share-panel {
    padding: 26px;
  }

  .device-grid {
    gap: 15px;
  }

  .device-card {
    height: 225px;
  }

  .drop-zone,
  .transfer-card {
    width: 100%;
  }
}

@media (max-width: 980px) {
  .nerli-shell {
    grid-template-rows: 78px auto 66px;
  }

  .topbar {
    padding: 0 22px;
  }

  .brand-crop {
    height: 49px;
    width: 193px;
  }

  .brand-logo {
    width: 197px;
    transform: translate(-4.7px, -9.4px);
  }

  .network-pill {
    padding: 9px 14px;
    font-size: 15px;
  }

  .workspace {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 30px;
    padding: 34px 24px 120px;
  }

  .intro {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    align-items: end;
    gap: 24px;
    padding: 0;
  }

  .intro h1 {
    font-size: clamp(44px, 7vw, 62px);
  }

  .privacy-line {
    justify-self: end;
    margin-bottom: 5px;
  }

  .share-panel {
    max-width: none;
    justify-self: stretch;
  }
}

@media (max-width: 720px) {
  .nerli-shell {
    display: block;
    padding-bottom: 68px;
  }

  .topbar {
    height: 70px;
    grid-template-columns: 1fr auto;
    position: sticky;
    top: 0;
  }

  .brand-crop {
    height: 44px;
    width: 170px;
  }

  .brand-logo {
    width: 175px;
    transform: translate(-3.5px, -8px);
  }

  .network-pill {
    position: absolute;
    top: 59px;
    left: 50%;
    transform: translateX(-50%);
    padding: 7px 11px;
    gap: 7px;
    white-space: nowrap;
    font-size: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,.06);
  }

  .network-pill .live-dot {
    width: 9px;
    height: 9px;
  }

  .settings-button {
    grid-column: 2;
    width: 40px;
    height: 40px;
  }

  .settings-button svg {
    width: 25px;
    height: 25px;
  }

  .workspace {
    display: block;
    padding: 58px 16px 120px;
  }

  .intro {
    display: block;
  }

  .intro h1 {
    margin-bottom: 18px;
    font-size: clamp(42px, 13vw, 58px);
    line-height: 1.02;
  }

  .intro p {
    max-width: 520px;
    font-size: 17px;
    line-height: 1.5;
  }

  .privacy-line {
    margin: 27px 0 30px;
    gap: 8px;
    white-space: normal;
    font-size: 14px;
  }

  .shield {
    width: 29px;
    height: 34px;
  }

  .share-panel {
    padding: 21px 15px 19px;
    border-radius: 16px;
  }

  .panel-heading {
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 0 2px 19px;
  }

  .panel-heading h2 {
    font-size: 23px;
  }

  .online-count {
    gap: 7px;
    white-space: nowrap;
    font-size: 13px;
  }

  .online-count .live-dot {
    width: 9px;
    height: 9px;
  }

  .device-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 3px 3px 12px;
    margin: 0 -3px;
  }

  .device-grid::-webkit-scrollbar {
    display: none;
  }

  .device-card {
    flex: 0 0 76%;
    height: 216px;
    scroll-snap-align: center;
  }

  .device-card strong {
    font-size: 20px;
  }

  .device-art {
    height: 132px;
  }

  .device-art > svg {
    height: 111px;
  }

  .send-heading {
    margin-top: 14px;
  }

  .tabs {
    display: flex;
    width: 100%;
  }

  .tabs button {
    flex: 1;
    justify-content: center;
    padding: 0 12px;
    font-size: 15px;
  }

  .drop-zone {
    min-height: 132px;
    gap: 19px;
    margin-top: 14px;
    padding: 18px;
  }

  .drop-zone > svg {
    width: 48px;
    height: 48px;
  }

  .drop-zone strong {
    font-size: 20px;
  }

  .drop-zone small {
    font-size: 14px;
  }

  .transfer-card {
    grid-template-columns: 1fr auto;
    gap: 15px;
    padding: 16px;
  }

  .file-list {
    grid-column: 1 / -1;
  }

  .transfer-progress {
    grid-column: 1;
    min-width: 0;
  }

  .transfer-actions {
    grid-column: 2;
  }

  .statusbar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 18;
    height: 62px;
    justify-content: center;
    gap: 13px;
    padding: 0 16px;
    background: rgba(251,250,247,.94);
    backdrop-filter: blur(14px);
    font-size: 12px;
  }

  .status-divider {
    height: 23px;
  }

  .incoming-stack {
    width: auto;
    left: 10px;
    right: 10px;
    bottom: 72px;
  }

  .incoming-card {
    min-height: 177px;
    border-radius: 16px;
  }
}

@media (max-width: 430px) {
  .intro h1 {
    font-size: 45px;
  }

  .device-card {
    flex-basis: 84%;
  }

  .panel-heading {
    align-items: flex-start;
  }

  .online-count {
    margin-top: 4px;
  }

  .incoming-card {
    padding: 18px 16px 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

/* ============================================================
   Functional additions below this line.
   The delivered comp was a single static frame (one device
   selected, one file transfer mid-progress, Files tab active,
   one incoming request). Everything above is unchanged from
   that file. These rules cover interaction states the comp
   didn't depict — empty device list, the Text/Link tab body,
   a disconnected network pill, a disabled self-card, and a
   non-PDF file glyph color — built from the same tokens,
   radii and spacing already used elsewhere in the file.
   ============================================================ */

[hidden] {
  display: none !important;
}

.empty-devices-note {
  margin: 4px 5px 0;
  color: var(--muted);
  font-size: 16px;
}

.device-card.self-card {
  cursor: default;
}

.device-card.self-card:hover {
  transform: none;
  border-color: #dededb;
  box-shadow: none;
}

.device-name-btn {
  margin: 1px 0 9px;
  padding: 2px 6px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: none;
  color: var(--ink);
  font-family: inherit;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.7px;
  cursor: pointer;
}

.device-name-btn:hover,
.device-name-btn:focus-visible {
  border-color: var(--line);
  background: rgba(14, 23, 40, 0.04);
}

.device-name-input {
  width: 90%;
  margin: 1px 0 9px;
  padding: 2px 6px;
  border: 1px solid var(--blue);
  border-radius: 6px;
  color: var(--ink);
  font-family: inherit;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.7px;
  text-align: center;
}

.text-panel {
  width: 78%;
  display: grid;
  gap: 14px;
  margin: 17px 0 22px;
  padding: 20px;
  border: 1.5px dashed var(--blue);
  border-radius: 11px;
  background: rgba(250,252,255,.72);
}

.text-panel textarea {
  resize: vertical;
  min-height: 84px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: white;
  color: var(--ink);
  font: inherit;
  font-size: 16px;
}

.text-panel textarea:focus-visible {
  outline: 3px solid rgba(13,92,255,.28);
  outline-offset: 1px;
}

.text-send-button {
  justify-self: end;
  height: 46px;
  padding: 0 26px;
  border: 1px solid var(--blue);
  border-radius: 8px;
  color: white;
  background: var(--blue);
  box-shadow: 0 6px 12px rgba(13,92,255,.18);
  font-size: 16px;
  cursor: pointer;
}

.network-pill.offline .live-dot,
.statusbar .live-dot.offline {
  background: var(--danger);
}

.file-glyph.generic {
  color: var(--muted);
}

.incoming-message {
  margin: 10px 0 2px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #f5f6f7;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.5;
  max-height: 130px;
  overflow-y: auto;
  overflow-wrap: anywhere;
}

.incoming-message a {
  color: var(--blue);
}

.private-session {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 5px 22px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: rgba(255,255,255,.6);
}

.private-session-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
  max-width: 360px;
}

.private-session-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.private-session-btn {
  height: 36px;
  padding: 0 14px;
  border: 1px solid var(--blue);
  border-radius: 8px;
  color: white;
  background: var(--blue);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}

.private-session-btn.ghost {
  color: var(--ink);
  background: transparent;
  border-color: var(--line);
}
