.chat-hub-page {
  min-height: 100vh;
  background: var(--bg, #fff6ec);
  color: var(--text, #2e2117);
}

.chat-hub-empty {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
}
.chat-hub-empty img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  image-rendering: auto;
}
.chat-hub-empty strong { color: var(--text); font-size: 14px; }
.chat-hub-empty span { color: var(--text-muted); font-size: 12px; }
.chat-composer-row .chat-haon-button {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  margin: 0;
}
.chat-send-button:disabled {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
}

.chat-hub-shell {
  width: min(1120px, calc(100% - 28px));
  margin: 0 auto;
  padding: 112px 0 90px;
}

.chat-room-notice {
  margin: 0 0 12px;
  padding: 12px 14px;
  border: 1px solid color-mix(in srgb, var(--accent, #ff7043) 38%, var(--border, #ead5c2));
  border-radius: 10px;
  background: var(--accent-light, #fff0e8);
  color: var(--text, #2e2117);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.5;
}

.chat-hub-hero {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  padding: 24px;
  border: 2px solid var(--border, #ead5c2);
  border-radius: 16px;
  background: var(--bg-card, #fffdfa);
  box-shadow: 4px 4px 0 rgba(74, 42, 20, .12);
}

.chat-hub-kicker {
  margin-bottom: 8px;
  color: var(--accent, #ff7043);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
}

.chat-hub-hero h1,
.chat-room-head h1 {
  margin: 0;
  font-size: clamp(25px, 4vw, 38px);
  line-height: 1.25;
  letter-spacing: -.04em;
}

.chat-hub-hero p {
  max-width: 720px;
  margin: 10px 0 0;
  color: var(--text-2, #6b5648);
  line-height: 1.75;
}

.chat-policy-box {
  flex: 0 0 auto;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--accent-light, #fff0e8);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.65;
}

.chat-flow-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 14px;
}

.chat-flow-card {
  display: flex;
  min-width: 0;
  min-height: 150px;
  flex-direction: column;
  gap: 7px;
  padding: 16px;
  border: 2px solid var(--border, #ead5c2);
  border-radius: 14px;
  background: var(--bg-card, #fffdfa);
  box-shadow: 3px 3px 0 rgba(74, 42, 20, .1);
}

.chat-flow-card.primary {
  background: var(--accent-light, #fff0e8);
}

.chat-flow-card small {
  color: var(--accent, #ff7043);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .06em;
}

.chat-flow-card strong {
  color: var(--text, #2e2117);
  font-size: 17px;
  font-weight: 950;
  line-height: 1.45;
}

.chat-flow-card span {
  color: var(--text-2, #6b5648);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.55;
}

.chat-flow-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: auto;
}

.chat-flow-actions a,
.chat-room-bridge a,
.chat-prompt-rail button {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border, #ead5c2);
  border-radius: 999px;
  background: #fff;
  color: var(--text, #2e2117);
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}

.chat-flow-actions a {
  padding: 0 12px;
}

.chat-flow-actions a:first-child,
.chat-room-bridge a {
  border-color: var(--accent, #ff7043);
  background: var(--accent, #ff7043);
  color: #fff;
}

.chat-room-section {
  margin-top: 28px;
}

.chat-room-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.chat-room-section-head h2 {
  margin: 0;
  font-size: 19px;
}

.chat-room-section-head p {
  margin: 3px 0 0;
  color: var(--text-muted, #8d786a);
  font-size: 12px;
}

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

.chat-room-grid.kbo {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.chat-room-card {
  display: flex;
  min-width: 0;
  min-height: 150px;
  flex-direction: column;
  padding: 16px;
  border: 2px solid var(--border, #ead5c2);
  border-radius: 14px;
  background: var(--bg-card, #fffdfa);
  color: inherit;
  text-decoration: none;
  box-shadow: 3px 3px 0 rgba(74, 42, 20, .1);
  transition: transform .08s steps(2), box-shadow .08s steps(2);
}

.chat-room-card:hover {
  transform: translate(-1px, -1px);
  box-shadow: 5px 5px 0 rgba(74, 42, 20, .13);
}

.chat-room-card:active {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 rgba(74, 42, 20, .1);
}

.chat-room-card-top,
.chat-room-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.chat-room-badge {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--accent-light, #fff0e8);
  font-size: 20px;
}

.chat-room-badge.team-logo {
  padding: 4px;
  background: #fff;
}

.chat-room-badge.custom-icon {
  padding: 5px;
}

.chat-room-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.chat-room-state {
  padding: 4px 7px;
  border-radius: 999px;
  background: #dcfce7;
  color: #166534;
  font-size: 10px;
  font-weight: 900;
}

.chat-room-state.scheduled {
  background: #eff6ff;
  color: #1d4ed8;
}

.chat-room-state.paused {
  background: #fef3c7;
  color: #92400e;
}

.chat-room-state.archived {
  background: #f3f4f6;
  color: #6b7280;
}

.chat-room-card h3 {
  margin: 12px 0 6px;
  font-size: 15px;
  line-height: 1.45;
  word-break: keep-all;
}

.chat-room-card p {
  display: -webkit-box;
  margin: 0 0 12px;
  overflow: hidden;
  color: var(--text-2);
  font-size: 12px;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.chat-room-card-meta {
  margin-top: auto;
  color: var(--text-muted);
  font-size: 11px;
}

.chat-room-countdown {
  margin-top: 10px;
  color: var(--accent, #ff7043);
  font-size: 11px;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

.chat-room-pill.chat-room-countdown {
  margin-top: 0;
  color: var(--accent, #ff7043);
}

.chat-room-countdown.expired {
  color: var(--text-muted, #8d786a);
}

.chat-room-page-shell {
  width: min(980px, calc(100% - 24px));
}

.chat-room-head {
  padding: 18px 20px;
  border: 2px solid var(--border);
  border-radius: 14px 14px 0 0;
  background: var(--bg-card);
}

.chat-room-head-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.chat-room-back {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--text-2);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.chat-room-head p {
  margin: 8px 0 0;
  color: var(--text-2);
  line-height: 1.65;
}

.chat-room-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.chat-room-team-logo {
  width: 62px;
  height: 52px;
  flex: 0 0 auto;
  object-fit: contain;
}

.chat-room-team-logo.custom-icon {
  width: 48px;
  height: 48px;
  padding: 5px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--accent-light);
}

.chat-room-head-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 12px;
}

.chat-room-pill {
  padding: 6px 9px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--bg);
  color: var(--text-2);
  font-size: 11px;
  font-weight: 800;
}

.chat-mobile-label {
  display: none;
}

.chat-starter-box {
  padding: 14px 18px;
  border-right: 2px solid var(--border);
  border-bottom: 2px solid var(--border);
  border-left: 2px solid var(--border);
  background: var(--accent-light);
}

.chat-starter-box summary {
  display: none;
  cursor: pointer;
  font-size: 11px;
  font-weight: 900;
}

.chat-starter-box strong {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
}

.chat-starter-box ul {
  margin: 0;
  padding-left: 18px;
  color: var(--text-2);
  font-size: 12px;
  line-height: 1.7;
}

.chat-room-bridge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  border-right: 2px solid var(--border);
  border-bottom: 2px solid var(--border);
  border-left: 2px solid var(--border);
  background: #fffdfa;
}

.chat-room-bridge small {
  display: block;
  margin-bottom: 3px;
  color: var(--accent, #ff7043);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .06em;
}

.chat-room-bridge strong {
  display: block;
  color: var(--text, #2e2117);
  font-size: 13px;
  line-height: 1.45;
}

.chat-room-bridge a {
  flex: 0 0 auto;
  padding: 0 13px;
}

.chat-live-panel {
  position: relative;
  border: 2px solid var(--border);
  border-top: 0;
  border-radius: 0 0 14px 14px;
  background: var(--bg-card);
  overflow: hidden;
}

.chat-connection-loading {
  position: absolute;
  z-index: 12;
  top: 10px;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 5px 12px 5px 7px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: color-mix(in srgb, var(--bg-card) 94%, transparent);
  box-shadow: 0 6px 18px rgba(25, 20, 24, .12);
  transform: translateX(-50%);
  backdrop-filter: blur(8px);
}
.chat-connection-loading[hidden] { display: none !important; }

.chat-hub-messages {
  height: min(62vh, 650px);
  min-height: 420px;
  overflow-y: auto;
  padding: 18px;
  background:
    linear-gradient(rgba(255,255,255,.7), rgba(255,255,255,.7)),
    repeating-linear-gradient(0deg, transparent, transparent 27px, rgba(74,42,20,.035) 28px);
}

.chat-hub-empty {
  display: grid;
  height: 100%;
  place-items: center;
  color: var(--text-muted);
  text-align: center;
}

.chat-hub-message {
  display: flex;
  gap: 9px;
  margin-bottom: 14px;
}

.chat-hub-message.mine {
  flex-direction: row-reverse;
}

.chat-hub-avatar {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 9px;
  background: var(--accent-light);
  font-size: 12px;
  font-weight: 900;
}

.chat-hub-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chat-hub-message-main {
  min-width: 0;
  max-width: min(72%, 620px);
}

.chat-hub-sender {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 0 3px 4px;
  color: var(--text-2);
  font-size: 11px;
  font-weight: 800;
}

.mine .chat-hub-sender {
  justify-content: flex-end;
}

.chat-verified {
  padding: 1px 4px;
  border-radius: 4px;
  background: #e8f1ff;
  color: #1d4ed8;
  font-size: 9px;
}

.chat-hub-bubble {
  padding: 9px 11px;
  border: 1px solid var(--border);
  border-radius: 12px 12px 12px 4px;
  background: #fffdfa;
  line-height: 1.55;
  overflow-wrap: anywhere;
  white-space: pre-wrap;
}

.mine .chat-hub-bubble {
  border-radius: 12px 12px 4px 12px;
  background: var(--accent-light);
}

/* 욕설 채팅(2026-07-10): 차단 대신 접힘 + [원본 보기] */
.chat-hub-bubble-hidden {
  padding: 0;
  border: none;
  background: transparent;
}
.chat-hub-reveal {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 7px 11px;
  border: 1px dashed var(--border);
  border-radius: 12px 12px 12px 4px;
  background: rgba(120, 120, 120, 0.08);
  color: var(--text-muted, #8a7d70);
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  line-height: 1.4;
  text-align: left;
}
.chat-hub-reveal:hover {
  background: rgba(255, 112, 67, 0.1);
  color: var(--accent, #ff7043);
}
.chat-hub-reveal b { font-weight: 800; }
.mine .chat-hub-reveal { border-radius: 12px 12px 4px 12px; }
.chat-hub-hidden-original {
  padding: 9px 11px;
  border: 1px solid var(--border);
  border-radius: 12px 12px 12px 4px;
  background: #fffdfa;
  line-height: 1.55;
  overflow-wrap: anywhere;
  white-space: pre-wrap;
}
.mine .chat-hub-hidden-original { border-radius: 12px 12px 4px 12px; background: var(--accent-light); }

.chat-hub-reply-ref {
  margin-bottom: 6px;
  padding: 6px 8px;
  border-left: 3px solid var(--accent);
  background: rgba(0,0,0,.035);
  color: var(--text-2);
  font-size: 10px;
}

.chat-hub-image {
  display: block;
  width: min(360px, 100%);
  max-height: 360px;
  margin-top: 7px;
  border: 1px solid var(--border);
  border-radius: 9px;
  object-fit: contain;
  background: #eee;
}

.chat-hub-message-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 4px 4px 0;
  color: var(--text-muted);
  font-size: 10px;
}

.mine .chat-hub-message-actions {
  justify-content: flex-end;
}

.chat-hub-message-actions button {
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
  font: inherit;
}

.chat-reply-bar,
.chat-room-closed {
  padding: 10px 14px;
  border-top: 1px solid var(--border);
  background: var(--accent-light);
  color: var(--text-2);
  font-size: 12px;
}

.chat-reply-bar {
  display: none;
  align-items: center;
  justify-content: space-between;
}

.chat-composer {
  padding: 12px;
  border-top: 2px solid var(--border);
  background: var(--bg-card);
}

.chat-composer-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  color: var(--text-2);
  font-size: 11px;
}

.chat-composer-options label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.chat-prompt-rail {
  display: flex;
  gap: 7px;
  margin: 0 0 8px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: none;
}

.chat-prompt-rail::-webkit-scrollbar {
  display: none;
}

.chat-prompt-rail button {
  flex: 0 0 auto;
  max-width: min(320px, 78vw);
  padding: 0 11px;
  cursor: pointer;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.chat-prompt-rail button:hover {
  border-color: var(--accent, #ff7043);
  color: var(--accent, #ff7043);
}

.chat-composer-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: end;
  gap: 8px;
}

.chat-image-button,
.chat-send-button {
  display: inline-flex;
  min-width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--border);
  border-radius: 9px;
  cursor: pointer;
  font-weight: 900;
}

.chat-image-button {
  background: var(--bg);
}

.chat-send-button {
  padding: 0 16px;
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.chat-send-button:disabled {
  cursor: wait;
  opacity: .55;
}

.chat-composer textarea {
  width: 100%;
  min-height: 44px;
  max-height: 140px;
  padding: 10px 11px;
  resize: none;
  border: 2px solid var(--border);
  border-radius: 9px;
  background: #fff;
  color: var(--text);
  font: inherit;
  line-height: 1.45;
}

.chat-image-preview {
  display: none;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
  font-size: 11px;
}

.chat-image-preview img {
  width: 46px;
  height: 46px;
  border-radius: 7px;
  object-fit: cover;
}

.chat-toast {
  position: fixed;
  right: 18px;
  bottom: 90px;
  z-index: 9999;
  max-width: min(360px, calc(100vw - 30px));
  padding: 11px 14px;
  border: 2px solid var(--border);
  border-radius: 9px;
  background: #fff;
  box-shadow: 4px 4px 0 rgba(74,42,20,.15);
  font-size: 12px;
  font-weight: 800;
}

@media (max-width: 900px) {
  .chat-room-grid,
  .chat-room-grid.kbo {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .chat-hub-shell {
    width: 100%;
    padding: 12px 12px calc(var(--m-tabbar-h, 72px) + 28px);
  }

  .chat-hub-hero {
    display: block;
    padding: 18px 15px;
    border-radius: 12px;
    box-shadow: 3px 3px 0 rgba(74,42,20,.1);
  }

  .chat-policy-box {
    margin-top: 14px;
  }

  .chat-flow-strip {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 10px;
  }

  .chat-flow-card {
    min-height: 0;
    padding: 14px;
    box-shadow: 2px 2px 0 rgba(74,42,20,.08);
  }

  .chat-room-grid,
  .chat-room-grid.kbo {
    grid-template-columns: 1fr;
  }

  .chat-room-card {
    min-height: 128px;
  }

  .chat-room-page-shell {
    display: flex;
    height: calc(
      var(--hs-vvh, 100dvh)
      - var(--m-topbar-h, 62px)
      - var(--m-tabbar-h, 72px)
      - var(--m-safe-bottom, env(safe-area-inset-bottom, 0px))
    );
    box-sizing: border-box;
    flex-direction: column;
    overflow: hidden;
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
    padding-left: 0;
  }

  body.chat-room-body {
    height: var(--hs-vvh, 100dvh);
    min-height: 0 !important;
    padding-bottom: 0 !important;
    overflow: hidden !important;
  }

  .chat-room-head,
  .chat-starter-box,
  .chat-room-bridge,
  .chat-live-panel {
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .chat-room-head {
    flex: 0 0 auto;
    padding: 9px 12px 8px;
  }

  .chat-room-back {
    display: none;
  }

  .chat-room-head-row {
    position: relative;
    display: block;
  }

  .chat-room-head-row > div {
    min-width: 0;
  }

  .chat-room-head .chat-hub-kicker {
    margin: 0 64px 3px 0;
    font-size: 9px;
    line-height: 1.2;
  }

  .chat-room-head .chat-room-state {
    position: absolute;
    top: 0;
    right: 0;
    padding: 3px 6px;
    font-size: 9px;
  }

  .chat-room-head h1 {
    font-size: 18px;
    line-height: 1.3;
    letter-spacing: -.035em;
  }

  .chat-room-title {
    gap: 7px;
  }

  .chat-room-team-logo {
    width: 40px;
    height: 34px;
  }

  .chat-room-team-logo.custom-icon {
    width: 38px;
    height: 38px;
    padding: 4px;
    border-radius: 8px;
  }

  .chat-room-head p {
    margin: 4px 0 0;
    overflow: hidden;
    font-size: 11px;
    line-height: 1.45;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .chat-room-head-meta {
    flex-wrap: nowrap;
    gap: 4px;
    margin-top: 6px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .chat-room-head-meta::-webkit-scrollbar {
    display: none;
  }

  .chat-room-pill {
    flex: 0 0 auto;
    padding: 4px 6px;
    font-size: 9px;
  }

  .chat-desktop-label {
    display: none;
  }

  .chat-mobile-label {
    display: inline;
  }

  .chat-starter-box {
    flex: 0 0 auto;
    padding: 7px 12px;
  }

  .chat-room-bridge {
    flex: 0 0 auto;
    padding: 8px 12px;
  }

  .chat-room-bridge strong {
    font-size: 11px;
  }

  .chat-room-bridge a {
    min-height: 30px;
    padding: 0 10px;
    font-size: 10px;
  }

  .chat-starter-box summary {
    display: block;
    list-style: none;
  }

  .chat-starter-box summary::-webkit-details-marker {
    display: none;
  }

  .chat-starter-box summary::after {
    content: '+';
    float: right;
    color: var(--accent);
  }

  .chat-starter-box[open] summary::after {
    content: '−';
  }

  .chat-starter-box ul {
    margin-top: 6px;
    font-size: 10px;
    line-height: 1.55;
  }

  .chat-hub-messages {
    height: auto;
    min-height: 0;
    flex: 1 1 auto;
    overscroll-behavior: contain;
    padding: 12px 10px;
    -webkit-overflow-scrolling: touch;
  }

  .chat-live-panel {
    display: flex;
    min-height: 0;
    flex: 1 1 auto;
    flex-direction: column;
  }

  .chat-hub-message-main {
    max-width: 84%;
  }

  .chat-hub-bubble {
    padding: 8px 10px;
    font-size: 13px;
  }

  .chat-hub-empty {
    font-size: 12px;
    line-height: 1.7;
  }

  .chat-composer {
    position: static;
    flex: 0 0 auto;
    padding: 7px 10px calc(7px + env(safe-area-inset-bottom, 0px));
    z-index: 20;
  }

  .chat-composer-options {
    display: block;
    margin-bottom: 5px;
    overflow: hidden;
    font-size: 9px;
    line-height: 1.3;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .chat-composer-options > span {
    display: none;
  }

  .chat-prompt-rail {
    margin-bottom: 6px;
  }

  .chat-prompt-rail button {
    min-height: 32px;
    font-size: 10px;
  }

  .chat-composer-row {
    gap: 6px;
  }

  .chat-image-button,
  .chat-send-button {
    min-width: 46px;
    height: 46px;
  }

  .chat-send-button {
    padding: 0 14px;
  }

  .chat-composer textarea {
    min-height: 46px;
    padding: 10px;
    font-size: 16px;
  }

  body.chat-room-body.chat-input-focused {
    padding-top: 0 !important;
  }

  body.chat-room-body.chat-input-focused .m-topbar,
  body.chat-room-body.chat-input-focused .m-tabbar {
    display: none !important;
  }

  body.chat-room-body.chat-input-focused .chat-room-page-shell {
    height: var(--hs-vvh, 100dvh);
  }

  body.chat-room-body.chat-input-focused .chat-room-head,
  body.chat-room-body.chat-input-focused .chat-starter-box,
  body.chat-room-body.chat-input-focused .chat-room-bridge {
    display: none;
  }

  body.chat-room-body.chat-input-focused .chat-composer {
    padding-bottom: max(7px, env(safe-area-inset-bottom, 0px));
  }
}
