:root {
  --room-blue: var(--hf-color-primary);
  --room-blue-dark: var(--hf-color-primary-hover);
  --room-soft: var(--hf-color-surface-soft);
  --room-line: var(--hf-color-line);
  --room-text: var(--hf-color-text-strong);
  --room-muted: var(--hf-color-muted);
  --room-danger: var(--hf-color-danger);
  --room-shadow: 0 12px 38px rgba(27, 54, 72, 0.12);
}
* {
  box-sizing: border-box;
}
.room-chat-page {
  margin: 0;
  color: var(--room-text);
  background: #fff;
  --hf-chat-line: var(--room-line);
  --hf-chat-surface: var(--hf-color-surface);
  --hf-chat-notice-color: var(--hf-color-muted);
  --hf-chat-notice-bg: var(--hf-color-primary-soft);
  --hf-chat-notice-line: var(--hf-color-primary-border);
  --hf-chat-input-bg: var(--hf-color-surface);
  --hf-chat-input-line: var(--hf-color-line-strong);
  --hf-chat-topic-line: var(--hf-color-line);
  --hf-chat-focus: var(--hf-focus-color);
  --hf-chat-focus-shadow: var(--hf-focus-ring);
  --hf-chat-action: var(--room-blue);
  --hf-chat-action-hover: var(--room-blue-dark);
  --hf-chat-window-radius: 18px;
  --hf-chat-window-shadow: var(--room-shadow);
  --hf-chat-notice-margin: 12px 12px 0;
  --hf-chat-notice-padding: 10px 12px;
  --hf-chat-scroll-padding: 16px 14px;
  --hf-chat-composer-padding: 10px;
  --hf-chat-composer-gap: 7px;
  --hf-chat-control-height: 42px;
}
body.room-chat-page.hf-chat-page {
  --hf-chat-mobile-appbar-bg: var(--hf-color-surface);
}
.room-chat-page.room-chat-detail-open {
  overflow: auto;
}
.room-chat-app {
  min-height: calc(100vh - 60px);
}
.room-chat-page.room-chat-detail-open .room-chat-app {
  min-height: 0;
}
.room-page-width {
  width: min(
    var(--hf-site-max-width),
    calc(100% - var(--hf-site-inline-space))
  );
  margin-left: auto;
  margin-right: auto;
}
.room-list-view {
  padding: 68px 0 80px;
}
.room-list-view[hidden] {
  display: none !important;
}
.room-page-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--room-line);
}
.room-page-header h1 {
  margin-top: 9px;
  margin-bottom: 0px;
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.045em;
}
.room-mobile-home-button,
.room-mobile-title-dot,
.room-live-count-badge {
  display: none;
}
.room-eyebrow {
  padding-left: 2px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #4e5c64;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.room-online-dot {
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  display: inline-block;
  background: var(--hf-color-success);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(72, 189, 127, 0.13);
}
.room-page-actions,
.room-detail-actions,
.room-profile-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.room-primary-button,
.room-secondary-button,
.room-action-sheet button {
  min-height: 40px;
  padding: 0 15px;
  border-radius: 11px;
  font-weight: 800;
}
.room-primary-button {
  color: var(--hf-button-primary-text);
  background: var(--hf-button-primary-bg);
  border: 1px solid var(--hf-button-primary-bg);
}
.room-primary-button:hover {
  background: var(--hf-button-primary-hover-bg);
}
.room-secondary-button {
  color: var(--hf-button-secondary-text);
  background: var(--hf-button-secondary-bg);
  border: 1px solid var(--hf-button-secondary-border);
}
.room-text-button {
  justify-self: start;
  padding: 7px 4px;
  color: #5f6973;
  background: transparent;
  border: 0;
  font-size: 13px;
}
.room-full-button {
  width: 100%;
}
.room-compact-button {
  min-height: 34px;
  padding: 0 11px;
  font-size: 11px;
}
.room-profile-desktop-label,
.room-profile-mobile-label {
  align-items: center;
  gap: 6px;
}
.room-profile-desktop-label {
  display: inline-flex;
}
.room-profile-mobile-label {
  display: none;
}
.room-refresh-button {
  min-width: 102px;
  color: var(--hf-color-text);
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 600;
}
.room-refresh-button:disabled {
  opacity: 1;
  cursor: default;
}
.room-refresh-button.is-refreshing {
  color: #7b8991;
}
.room-refresh-button.is-complete {
  color: #398f65;
}
.room-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.room-topic-rail {
  position: relative;
  min-width: 0;
  flex: 1 1 auto;
}
.room-filter-pills {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}
.room-filter-pills button {
  min-height: 34px;
  padding: 0 12px;
  color: var(--hf-color-muted);
  background: var(--hf-color-surface);
  border: 1px solid var(--hf-chat-topic-line);
  border-radius: 999px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  outline: 0;
}
.room-filter-pills button.is-active {
  color: var(--hf-color-primary-text);
  background: var(--hf-color-primary-soft);
  border-color: var(--hf-color-primary-border);
  font-weight: 800;
}
@media (hover: hover) and (pointer: fine) {
  .room-filter-pills button:hover {
    color: var(--hf-color-primary-text);
    background: var(--hf-color-primary-soft);
    border-color: var(--hf-color-primary-border);
  }
}
.room-list-tools {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.room-sort-menu {
  align-self: center;
  padding-left: 10px;
}

.room-sort-menu::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 14px;
  background: var(--room-line);
  transform: translateY(-50%);
  pointer-events: none;
}
.room-sort-trigger {
  --hf-action-menu-trigger-color: var(--hf-color-text);
  min-width: 62px;
  min-height: 30px;
  justify-content: flex-end;
  padding: 7px 2px 7px 4px;
  font-size: 12px;
  font-weight: 600;
}
.room-sort-trigger .fa {
  width: 10px;
  color: var(--hf-color-muted-light);
  font-size: 9px;
}
.room-sort-panel {
  min-width: 116px;
}
.room-sort-option .fa {
  opacity: 0;
}
.room-sort-option.is-selected .fa {
  opacity: 1;
  color: var(--hf-color-primary-text);
}
.room-discovery-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 20px;
  align-items: start;
}
.room-discovery-main,
.room-guide-column {
  min-width: 0;
}
.room-guide-column {
  align-self: stretch;
}
.room-guide-card {
  position: static;
  padding: 22px;
  background: #fff;
  border: 1px solid #e6ecef;
  border-radius: 18px;
  box-shadow: 0 8px 26px rgba(29, 53, 73, 0.04);
}
.room-guide-card h2 {
  margin: 0 0 18px;
  color: #283139;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: -0.035em;
}
.room-guide-card section {
  padding: 14px 0;
  border-top: 1px solid #edf1f3;
}
.room-guide-card section:first-of-type {
  padding-top: 0;
  border-top: 0 !important;
}
.room-guide-card section strong {
  display: block;
  margin-bottom: 6px;
  color: #44515a;
  font-size: 12px;
}
.room-guide-card section p {
  margin: 0;
  color: #7d8990;
  font-size: 10px;
  line-height: 1.72;
}
.room-list-backlink {
  margin-top: 24px;
}
.room-list-status {
  min-height: 24px;
  margin-top: 18px;
  color: var(--room-muted);
  font-size: 12px;
}
.room-list-status:empty {
  display: none;
}
.room-list-status.is-loading {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.room-list-loading {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.room-list-loading .fa {
  color: var(--room-blue);
  font-size: 15px;
}
.room-list-surface {
  margin-top: 18px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e6ecef;
  border-radius: 18px;
  box-shadow: 0 8px 26px rgba(29, 53, 73, 0.04);
}
.room-grid {
  display: block;
}
.room-card {
  margin: 0;
  padding: 0;
  background: #fff;
  border-bottom: 1px solid #edf1f3;
}
.room-card:last-child {
  border-bottom: 0;
}
.room-list-entry {
  width: 100%;
  min-height: 92px;
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr) 88px 20px;
  align-items: center;
  column-gap: 12px;
  padding: 15px 17px;
  color: inherit;
  text-align: left;
  background: #fff;
  border: 0;
  border-radius: 0;
  transition: background-color 0.15s ease;
}
.room-list-entry:not([disabled]):hover,
.room-list-entry:not([disabled]):focus-visible {
  background: #f8fbfc;
  outline: 0;
}
.room-list-entry[disabled] {
  cursor: default;
}
.room-row-topic {
  align-self: center;
}
.room-topic-chip {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 0 9px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  white-space: nowrap;
}
.room-topic-chip {
  color: #277d9e;
  background: #edf8fc;
}
.room-topic-chip[data-room-topic="수다"] {
  color: #137ca2;
  background: #eaf8fd;
}
.room-topic-chip[data-room-topic="고민"] {
  color: #3c8a69;
  background: #edf9f3;
}
.room-topic-chip[data-room-topic="연애·썸"] {
  color: #c6577a;
  background: #fff0f5;
}
.room-topic-chip[data-room-topic="취미"] {
  color: #7057be;
  background: #f3f0ff;
}
.room-topic-chip[data-room-topic="친구 찾기"] {
  color: #bd761f;
  background: #fff5e8;
}
.room-row-copy {
  min-width: 0;
  display: block;
}
.room-row-title-line {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}
.room-row-title {
  min-width: 0;
  flex: 0 1 auto;
  display: block;
  overflow: hidden;
  color: #20262b;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 600;
  letter-spacing: -0.025em;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.room-row-playing {
  width: 14px;
  height: auto;
  flex: 0 0 14px;
  align-self: stretch;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--hf-color-danger);
  line-height: 1;
}
.room-row-meta {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  overflow: hidden;
  color: #8b949b;
  font-size: 10px;
  line-height: 1;
  white-space: nowrap;
}
.room-row-meta b {
  max-width: 132px;
  overflow: hidden;
  color: #66717a;
  font-weight: 750;
  text-overflow: ellipsis;
}
.room-row-meta em {
  color: #a1a9af;
  font-style: normal;
}
.room-host-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  display: inline-block;
  background: var(--room-host-color, #55a9c7);
  border-radius: 50%;
}
.room-host-dot[hidden],
.room-host-emoji[hidden] {
  display: none !important;
}
.room-row-capacity {
  justify-self: end;
  min-width: 80px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}
.room-row-capacity strong {
  min-height: 27px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 9px;
  color: #137da4;
  background: #eef9fd;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
}
.room-row-chevron {
  justify-self: end;
  color: #aab2b7;
  font-size: 22px;
  line-height: 1;
}
.room-card.is-full .room-row-capacity strong {
  color: #858f95;
  background: #f1f3f4;
}
.room-card.is-full .room-row-chevron {
  font-size: 13px;
}
.room-profile-badge {
  --profile-color: var(--hf-color-primary);
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--profile-color);
  border: 0;
  border-radius: 13px;
  font-size: 12px;
  font-weight: 900;
}
.room-empty {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 42px 20px 46px;
  color: var(--room-muted);
  text-align: center;
}
.room-empty-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--hf-color-primary-text);
  background: var(--hf-color-primary-soft);
  border: 1px solid var(--hf-color-primary-border);
  border-radius: 50%;
  font-size: 17px;
}
.room-empty strong {
  color: var(--room-text);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.4;
}
.room-empty p {
  max-width: 300px;
  margin: 6px 0 0;
  color: var(--room-muted);
  font-size: 12px;
  line-height: 1.55;
}

.room-detail-view {
  position: relative;
  z-index: 1;
  min-height: var(--hf-chat-stage-min-height);
  overflow: visible;
}
.room-detail-shell {
  position: relative;
  z-index: 1;
  min-height: 0;
  box-sizing: border-box;
}
.room-detail-topline {
  flex: 0 0 auto;
}
.room-detail-actions {
  min-width: 0;
  justify-self: stretch;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
}
.room-detail-actions .room-compact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.room-detail-actions .room-compact-button[hidden],
.room-poll-card[hidden] {
  display: none !important;
}
.room-detail-title {
  min-width: 0;
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}
.room-detail-title > div {
  min-width: 0;
}
.room-detail-title strong,
.room-detail-title small {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
}
.room-detail-title strong {
  font-size: 14px;
}
.room-detail-title small {
  margin-top: 2px;
  color: var(--room-muted);
  font-size: 10px;
}
.room-detail-layout {
  flex: 0 0 auto;
  min-height: 0;
}
.room-participant-panel {
  min-height: 0;
}
.room-message-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 4px 0;
}
.room-message-row.is-mine {
  justify-content: flex-end;
}
.room-message-row .room-profile-badge {
  width: 28px;
  height: 28px;
  flex-basis: 28px;
  border-radius: 11px;
  font-size: 10px;
}
.room-message-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  max-width: min(72%, 560px);
}
.room-message-row.is-mine .room-message-content {
  align-items: flex-end;
}
.room-message-nickname {
  display: block;
  margin: 0 0 4px 2px;
  color: #7b878e;
  font-size: 9px;
  font-weight: 750;
  line-height: 1.25;
}
.room-bubble {
  max-width: 100%;
  padding: 9px 11px;
  color: var(--hf-chat-bubble-peer-text);
  background: var(--hf-chat-bubble-peer-bg);
  border-radius: 14px 14px 14px 4px;
}
.room-message-row.is-mine .room-bubble {
  color: var(--hf-chat-bubble-mine-text);
  background: var(--hf-chat-bubble-mine-bg);
  border-radius: 14px 14px 4px 14px;
}
.room-bubble p {
  margin: 0;
  white-space: pre-wrap;
  word-break: break-word;
  font-size: 13px;
  line-height: 1.45;
}
.room-system-message {
  width: fit-content;
  max-width: calc(100% - 24px);
  margin: 9px auto;
  padding: 6px 9px;
  color: #7a858c;
  background: #f4f6f7;
  border-radius: 999px;
  font-size: 10px;
  text-align: center;
}
.room-participant-panel {
  padding: var(--hf-chat-side-padding);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.room-participant-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-top: 4px;
}
.room-participant-head h2 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}
.room-panel-caption {
  margin: 10px 0 13px;
  color: var(--room-muted);
  font-size: 10px;
}
.room-participant-list-shell {
  position: relative;
  min-height: 0;
  flex: 1 1 auto;
}
.room-participant-list {
  width: 100%;
  height: 100%;
  min-height: 0;
  display: grid;
  align-content: start;
  gap: 5px;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
.room-participant-scroll-hint {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 34px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 2px;
  color: var(--room-muted);
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0),
    var(--hf-chat-side-bg) 78%
  );
  font-size: 15px;
  line-height: 1;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.15s ease;
}
@media (min-width: 901px) {
  .room-participant-list-shell.is-scrollable:not(.is-scroll-end)
    .room-participant-scroll-hint {
    opacity: 1;
    visibility: visible;
  }
}
.room-participant-item {
  width: 100%;
  min-height: 55px;
  padding: 7px;
  display: flex;
  align-items: center;
  gap: 9px;
  text-align: left;
  background: transparent;
  border: 0;
  border-radius: 12px;
}
.room-participant-item:hover {
  background: #f5f8fa;
}
.room-participant-item.is-me {
  background: #edf8fd;
}
.room-participant-item > span:nth-child(2) {
  min-width: 0;
  flex: 1;
}
.room-participant-item strong,
.room-participant-item small {
  display: block;
}
.room-participant-item strong {
  font-size: 12px;
}
.room-participant-item small {
  margin-top: 2px;
  color: var(--room-muted);
  font-size: 9px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.room-role-chip {
  padding: 3px 6px;
  color: #3682a5;
  background: #e7f6fd;
  border-radius: 999px;
  font-size: 8px;
  font-weight: 800;
}
.room-poll-card {
  position: absolute;
  z-index: 10;

  top: 10px;
  left: 12px;
  right: 12px;

  margin: 0;
  padding: 13px;

  background: #fffaf0;
  border: 1px solid #f1dfb4;
  border-radius: 13px;

  box-shadow:
    0 4px 12px rgba(20, 39, 51, 0.05),
    0 1px 4px rgba(20, 39, 51, 0.1);
}
.room-message-stage {
  position: relative;
  min-height: 0;
  flex: 1 1 0%;
  overflow: hidden;
}

.room-message-stage > #room_messages {
  width: 100%;
  height: 100%;
  min-height: 0;
}
.room-poll-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.room-poll-head .room-eyebrow,
.room-poll-head .room-text-button {
  font-size: 11px;
}
.room-poll-fold-toggle {
  width: auto;
  min-width: 0;
  flex: 1 1 auto;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  color: inherit;
  background: transparent;
  border: 0;
  font: inherit;
  text-align: left;
}
.room-poll-fold-toggle .room-eyebrow {
  flex: 0 0 auto;
}
.room-poll-fold-meta {
  min-width: 0;
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  color: #8c7c59;
  font-size: 10px;
  font-weight: 700;
  white-space: nowrap;
}
.room-poll-fold-meta .fa {
  transform: translateY(-1px);
}
.room-poll-fold-toggle.is-expanded .room-poll-fold-meta {
  margin-left: 2px;
}
.room-poll-card.is-result .room-poll-fold-meta {
  color: var(--hf-color-muted);
}
.room-poll-card.is-watch-compact {
  min-height: 40px;
  margin-top: 0;
  padding: 0;
  overflow: hidden;
}
.room-poll-card.is-watch-compact .room-poll-fold-toggle {
  width: 100%;
  min-height: 40px;
  padding: 0 12px;
  cursor: pointer;
}
.room-poll-card.is-watch-compact .room-poll-fold-toggle:hover,
.room-poll-card.is-watch-compact .room-poll-fold-toggle:focus,
.room-poll-fold-toggle.is-expanded:hover,
.room-poll-fold-toggle.is-expanded:focus {
  outline: none;
}
.room-poll-card strong {
  display: block;
  margin: 7px 0 9px;
  font-size: 13px;
}
.room-poll-options {
  display: grid;
  gap: 6px;
}
.room-poll-option {
  width: 100%;
  min-height: 37px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--hf-color-text);
  background: var(--hf-color-surface);
  border: 1px solid var(--hf-color-line-strong);
  border-radius: 9px;
  font-size: 11px;
}
.room-poll-option.is-selected {
  color: var(--hf-control-selected-text);
  border-color: var(--hf-control-selected-border);
  background: var(--hf-control-selected-bg);
}
.room-poll-option:disabled {
  cursor: default;
  opacity: 0.72;
}

@media (hover: hover) and (pointer: fine) {
  .room-poll-option:not(:disabled):hover {
    color: var(--hf-control-selected-text);
    background: var(--hf-control-selected-hover-bg);
    border-color: var(--hf-control-selected-border);
  }

  .room-color-button:hover {
    box-shadow: 0 0 0 2px var(--hf-color-primary-border);
  }

  .room-color-button.is-selected:hover {
    box-shadow: 0 0 0 3px var(--hf-control-selected-border);
  }
}
.room-poll-card.is-result {
  background: #f4fafe;
  border-color: #cce7f4;
}
.room-poll-options.is-results {
  gap: 7px;
}
.room-poll-result-option {
  min-height: 38px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--hf-color-text);
  background: var(--hf-color-surface);
  border: 1px solid var(--hf-color-line);
  border-radius: 9px;
  font-size: 11px;
}
.room-poll-result-option span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.room-poll-result-option b {
  flex: 0 0 auto;
  color: #377e9e;
  font-size: 10px;
}
.room-poll-result-option.is-selected {
  color: var(--hf-control-selected-text);
  background: var(--hf-control-selected-bg);
  border-color: var(--hf-control-selected-border);
}
.room-poll-card small {
  display: block;
  margin-top: 8px;
  color: #8c7c59;
  font-size: 9px;
}
.room-modal-dialog h2,
.room-action-sheet h2 {
  color: #2f3b42;
}
.room-modal-dialog h2 {
  margin: 8px 32px 18px 0;
  font-size: 21px;
}
.room-modal-description {
  margin: -8px 0 16px;
  color: var(--room-muted);
  font-size: 11px;
  line-height: 1.6;
}
.room-input-label {
  display: block;
  margin: 13px 0 6px;
  font-size: 11px;
  font-weight: 800;
}

.room-modal-dialog .hf-modal-body > .room-input-label:first-child {
  margin-top: 0;
}
.room-full-input,
.room-modal textarea,
.room-poll-option-inputs input {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid #ccd8de;
  border-radius: 10px;
  outline: 0;
  font-size: 14px;
}
.room-form-section {
  margin-top: 16px;
}
.room-form-section > strong {
  display: block;
  margin-bottom: 8px;
  font-size: 11px;
}
.room-create-options {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 10px;
  margin-top: 14px;
}
.room-create-select-field {
  min-width: 0;
  display: block;
  margin: 0;
}
.room-create-select-field > span:first-child {
  display: block;
  margin-bottom: 6px;
  color: var(--hf-color-text, #3b484f);
  font-size: 11px;
  font-weight: 800;
}
.room-select-control {
  position: relative;
  display: block;
}
.room-select-control select {
  width: 100%;
  height: 42px;
  padding: 0 38px 0 12px;
  color: var(--hf-color-text, #3b484f);
  background: var(--hf-color-surface, #fff);
  border: 1px solid var(--hf-color-line-strong, #ced9df);
  border-radius: 10px;
  outline: 0;
  font-size: 13px;
  font-weight: 700;
  line-height: 42px;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}
.room-select-control select:focus {
  border-color: var(--hf-color-primary-border, #bddfea);
  box-shadow: 0 0 0 3px var(--hf-focus-ring, rgba(0, 174, 239, 0.16));
}
.room-select-control .fa {
  position: absolute;
  top: 50%;
  right: 13px;
  z-index: 1;
  color: var(--hf-color-muted, #74818a);
  font-size: 10px;
  line-height: 1;
  pointer-events: none;
  transform: translateY(-50%);
}
.room-field-message {
  min-height: 20px;
  margin: 10px 0;
  color: #7a878f;
  font-size: 10px;
}
.room-field-message.is-error {
  color: #cb4c4c;
}
.room-field-message.is-success {
  color: #27815a;
}
.room-color-grid {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding-left: 2px;
}
.room-color-button {
  width: 30px;
  height: 30px;
  padding: 0;
  background: var(--profile-color);
  border: 3px solid var(--hf-color-surface);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--hf-color-line-strong);
}
.room-color-button.is-selected {
  box-shadow: 0 0 0 2px var(--hf-control-selected-border);
}
.room-profile-modal.is-required .room-modal-close {
  display: none;
}
.room-profile-modal .room-profile-actions {
  display: block;
}
.room-profile-modal .room-profile-actions .room-primary-button {
  width: 100%;
}
.room-profile-modal .room-primary-button:disabled {
  color: #93a0a7;
  background: var(--hf-color-surface-pressed);
  border-color: #edf1f3;
  cursor: default;
}
.room-recaptcha-wrap {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--room-line);
}
.room-recaptcha-wrap small {
  display: block;
  margin-top: 6px;
  color: var(--room-muted);
  font-size: 9px;
}
.room-action-person {
  padding: 7px 7px 13px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.room-action-person strong,
.room-action-person small {
  display: block;
}
.room-action-person small {
  margin-top: 3px;
  color: var(--room-muted);
  font-size: 9px;
}
.room-action-sheet button {
  width: 100%;
  margin-top: 5px;
  background: #fff;
  border: 1px solid var(--room-line);
}
.room-action-sheet .room-action-primary {
  color: #fff;
  background: var(--room-blue);
  border-color: var(--room-blue);
}
.room-action-sheet .room-action-danger {
  color: #c74c4c;
}
.room-poll-option-inputs {
  display: grid;
  gap: 7px;
}
.room-poll-option-row {
  display: flex;
  gap: 6px;
}
.room-poll-option-row button {
  width: 38px;
  flex: 0 0 38px;
  color: #9a5555;
  background: #fff;
  border: 1px solid #e2caca;
  border-radius: 9px;
}
.chat-home-link {
  color: var(--room-blue-dark);
  text-decoration: none !important;
  font-size: 13px;
  font-weight: 700;
}

#room_poll_open_button > span {
  margin-left: 3px;
}
#room_watch_open_button_text {
  margin-left: 6px;
}

@media (min-width: 901px) {
  #room_participants_button {
    display: none;
  }
  body.room-chat-page .room-detail-view.is-watch-visible .room-poll-card {
    top: 0px;
  }
}
@media (max-width: 900px) {
  .room-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .room-detail-layout {
    display: block;
    position: relative;
  }
  .room-participant-panel {
    display: none;
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    z-index: 4;
  }
  body.room-chat-page
    .room-detail-layout.hf-chat-layout
    > .room-participant-panel.hf-chat-side-panel {
    height: auto;
    max-height: 50%;
    overflow: hidden;
  }
  .room-participant-panel.is-mobile-open {
    display: grid;
    grid-template-rows: auto auto minmax(0, 1fr);
  }
  .room-participant-panel.is-mobile-open .room-participant-list-shell {
    min-height: 0;
    overflow: hidden;
  }
  .room-participant-panel.is-mobile-open .room-participant-list {
    height: 100%;
    min-height: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
  }
}

@media (max-width: 768px) {
  body.room-chat-page #header_nav,
  body.room-chat-page #header_div {
    display: none !important;
  }
  .room-chat-page.room-chat-detail-open .room-chat-app {
    flex: 1 1 0%;
    min-height: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }
  body.room-chat-page.room-chat-detail-open
    .room-detail-view.hf-chat-stage[data-hf-chat-stage] {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    height: auto;
    min-height: 0;
    flex: 1 1 0%;
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
    background-color: var(--hf-chat-surface);
    background-image: none !important;
  }
  body.room-chat-page.room-chat-detail-open .room-detail-shell.hf-chat-shell {
    width: 100%;
    height: auto;
    min-height: 0;
    flex: 1 1 0%;
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
  }
  .room-chat-page > header {
    position: relative;
    z-index: 30;
  }
  .room-list-view {
    min-height: calc(100dvh - var(--hf-mobile-bottom-nav-offset));
    display: flex;
    flex-direction: column;
    padding: 0;
    background: var(--hf-color-surface);
  }
  .room-page-width {
    width: 100%;
  }
  .room-online-dot {
    width: 6px;
    height: 6px;
  }
  .room-eyebrow {
    display: none;
  }
  .room-poll-card .room-eyebrow {
    display: inline-flex;
  }
  .room-page-header {
    position: sticky;
    top: 0;
    z-index: 1900;
    margin-bottom: 0;
  }
  .room-page-header h1 {
    min-width: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
    white-space: nowrap;
  }
  .room-live-count-badge {
    display: inline;
    margin-left: -3px;
    color: #565758;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
  }
  html[data-hf-theme="dark"] .room-live-count-badge {
    color: #aaaaaa;
  }
  .room-live-count-badge[hidden] {
    display: none !important;
  }
  .room-mobile-title-dot {
    width: 7px;
    height: 7px;
    flex: 0 0 7px;
    display: inline-block;
    background: var(--hf-color-success);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(72, 189, 127, 0.13);
  }
  .room-profile-button {
    position: relative;
  }
  .room-profile-desktop-label {
    display: none;
  }
  .room-profile-mobile-label {
    position: relative;
    width: 100%;
    height: 100%;
    min-width: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .room-profile-action-badge {
    border-radius: 10px;
    font-size: 12px;
    line-height: 1;
  }
  .room-profile-mobile-label
    .room-profile-action-badge[data-profile-emoji-active="true"] {
    font-size: 14px;
  }
  #room_create_button {
    position: fixed;
    right: 16px;
    bottom: calc(16px + env(safe-area-inset-bottom));
    z-index: 1800;
    width: 50px;
    height: 50px;
    min-height: 50px;
    flex: 0 0 auto;
    padding: 0 14px;
    border-radius: 999px;
    box-shadow: 0 9px 25px rgba(var(--hf-color-primary-rgb), 0.28);
    font-size: 20px;
  }
  #root_create_button_text {
    display: none;
  }
  .room-discovery-layout {
    width: 100%;
    min-height: 0;
    flex: 1 0 auto;
    display: flex;
  }
  .room-discovery-main {
    width: 100%;
    min-height: 0;
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
  }
  .room-guide-column {
    display: none;
  }
  .room-toolbar {
    width: 100%;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 13px 0 11px;
    background: var(--hf-color-page);
    border-bottom: 1px solid var(--room-line);
  }
  .room-topic-rail {
    width: 100%;
    overflow: hidden;
  }
  .room-topic-rail::before,
  .room-topic-rail::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 2;
    width: 26px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.12s ease;
  }
  .room-topic-rail::before {
    left: 0;
    background: linear-gradient(
      to right,
      var(--hf-color-page) 20%,
      transparent
    );
  }
  .room-topic-rail::after {
    right: 0;
    background: linear-gradient(to left, var(--hf-color-page) 20%, transparent);
  }
  .room-topic-rail.has-overflow:not(.is-at-start)::before,
  .room-topic-rail.has-overflow:not(.is-at-end)::after {
    opacity: 1;
  }
  .room-filter-pills {
    width: 100%;
    min-width: 0;
    flex-wrap: nowrap;
    gap: 7px;
    overflow-x: auto;
    padding: 0 16px 2px;
    scroll-padding-left: 16px;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
  }
  .room-filter-pills::-webkit-scrollbar {
    display: none;
  }
  .room-filter-pills button {
    min-height: 36px;
    flex: 0 0 auto;
    padding: 0 13px;
    font-size: 12px;
    font-weight: 600;
  }
  .room-filter-pills button.is-active {
    font-weight: 800;
  }
  .room-list-tools {
    width: calc(100% - 32px);
    min-height: 32px;
    margin: 16px auto 0;
  }
  .room-list-tools > .cleanbot-list-entry {
    margin-right: auto;
  }
  .room-refresh-button {
    min-width: 0;
    min-height: 30px;
    flex: 0 0 auto;
    justify-content: flex-start;
    gap: 6px;
    padding: 4px 0;
    font-size: 12px;
    font-weight: 700;
  }
  .room-sort-trigger {
    min-width: 0;
    min-height: 30px;
    padding: 4px 0 4px 6px;
    font-size: 12px;
    font-weight: 700;
  }
  .room-sort-trigger:hover,
  .room-sort-trigger:focus,
  .room-sort-trigger[aria-expanded="true"] {
    background: transparent;
  }
  .room-sort-panel {
    top: calc(100% + 2px);
    min-width: 112px;
  }
  .room-list-status {
    width: calc(100% - 32px);
    margin: 8px auto 0;
  }
  .room-list-backlink {
    display: none;
  }
  .room-list-surface {
    width: 100%;
    min-height: 0;
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
    margin-top: 0;
    overflow: hidden;
    background: var(--hf-color-surface);
    border-width: 0;
    border-radius: 0;
    box-shadow: none;
  }
  .room-empty {
    flex: 1 0 auto;
    padding: 24px;
  }
  .room-empty-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
    font-size: 16px;
  }
  .room-empty strong {
    font-size: 14px;
  }
  .room-empty p {
    margin-top: 5px;
    font-size: 12px;
  }
  .room-grid {
    min-height: 0;
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    padding-bottom: calc(82px + env(safe-area-inset-bottom));
  }
  .room-card:last-child {
    border-bottom: 1px solid var(--room-line);
  }
  .room-list-entry {
    min-height: 96px;
    grid-template-columns: minmax(0, 1fr) auto 18px;
    grid-template-areas:
      "topic capacity chevron"
      "copy capacity chevron";
    column-gap: 9px;
    padding: 8px 14px 16px;
  }
  .room-row-topic {
    grid-area: topic;
  }
  .room-row-copy {
    grid-area: copy;
  }
  .room-row-capacity {
    grid-area: capacity;
    align-self: center;
    min-width: 57px;
  }
  .room-row-chevron {
    grid-area: chevron;
    align-self: center;
    font-size: 20px;
  }
  .room-topic-chip {
    min-height: 16px;
    padding: 0 5px;
    margin-left: -1px;
    font-size: 9px;
    font-weight: 700;
  }
  .room-row-title-line {
    align-items: flex-start;
  }
  .room-row-title {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 14px;
    white-space: normal;
  }
  .room-row-meta {
    margin-top: 6px;
    font-size: 9px;
    line-height: 1.4;
  }
  .room-row-meta b {
    max-width: 104px;
  }
  .room-row-capacity strong {
    min-height: 25px;
    padding: 0 8px;
    font-size: 10px;
  }
  .room-detail-topline {
    min-height: 54px;
    flex: 0 0 auto;
    padding: 0 8px;
    border-width: 0 0 1px;
    border-radius: 0;

    grid-template-columns:
      36px
      minmax(0, 1fr)
      auto;
    column-gap: 4px;
  }
  .room-detail-topline .room-text-button {
    padding: 0 5px;
    font-size: 12px;
  }
  .room-detail-actions {
    width: auto;
    min-width: 0;
    max-width: none;

    justify-self: end;
    align-self: center;

    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    flex-wrap: nowrap;
  }
  .room-detail-actions .room-compact-button {
    width: 36px;
    min-width: 36px;
    height: 36px;
    min-height: 36px;
    flex: 0 0 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 0;
    line-height: 1;
  }
  .room-detail-actions .room-compact-button span {
    display: none;
  }
  .room-detail-actions .room-compact-button i {
    margin: 0;
    font-size: 13px;
    line-height: 1;
    text-align: center;
  }
  body.room-chat-page.room-chat-detail-open .room-detail-layout.hf-chat-layout {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 0;
    flex: 1 1 0%;
    display: flex;
    margin: 0;
    overflow: hidden;
  }
  body.room-chat-page.room-chat-detail-open
    .room-detail-layout.hf-chat-layout
    > .room-chat-window.hf-chat-window[data-hf-chat-window] {
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: none;
    flex: 1 1 0%;
  }
  .room-poll-card {
    max-height: 50%;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }
  .room-poll-card.is-result .room-poll-head #room_poll_result_close {
    margin-left: auto;
  }
  .room-bubble {
    max-width: 100%;
  }
  .room-participant-panel {
    border-radius: 14px;
  }
  .room-create-options {
    gap: 8px;
  }
  .room-select-control select {
    padding-left: 10px;
    padding-right: 34px;
  }
  .room-select-control .fa {
    right: 12px;
  }
  .room-profile-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .room-profile-actions #room_profile_save {
    grid-column: 1/-1;
  }
  .room-chat-page.room-chat-detail-open > footer {
    display: none;
  }
  #room_list_status {
    display: none;
  }
  .room-message-row .room-profile-badge {
    width: 28px;
    height: 28px;
    flex-basis: 28px;
    border-radius: 11px;
    font-size: 10px;
  }
}

@media (min-width: 769px) {
  /* 방이 있을 때 헤더 */
  .room-list-columns:not([hidden]) {
    border: 1px solid var(--hf-card-border);
    border-bottom: 1px solid var(--hf-card-border);
    border-radius: 12px 12px 0 0;
  }

  /* 방이 있을 때 목록 */
  .room-list-columns:not([hidden]) + .room-grid {
    border: 1px solid var(--hf-card-border);
    border-top: 0;
    border-radius: 0 0 12px 12px;
    overflow: hidden;
  }

  /* 마지막 방의 bottom border 중복 제거 */
  .room-list-columns:not([hidden]) + .room-grid .room-card:last-child {
    border-bottom: 0;
  }

  /* 방이 없으면 table 외곽 border 없음 */
  .room-list-columns[hidden] + .room-grid {
    border: 0;
  }
}

/* Room rules gate and message participant actions */
.room-rules-header strong {
  display: block;
  margin-top: 7px;
  margin-bottom: 12px;
  color: var(--room-text);
  font-size: 20px;
  line-height: 1.35;
}
.room-rules-lead {
  margin: 0 0 10px;
  color: var(--room-muted);
  font-size: 11px;
  line-height: 1.6;
}
.room-rules-list {
  overflow: hidden;
  margin-top: 12px;
  background: var(--hf-color-surface);
  border: 1px solid var(--hf-card-border);
  border-radius: 14px;
}

.room-rules-item {
  padding: 14px 15px;
  border-bottom: 1px solid var(--room-line);
}

.room-rules-item:last-child {
  border-bottom: 0;
}
.room-rules-item strong {
  display: block;
  margin-bottom: 5px;
  color: var(--room-text);
  font-size: 12px;
  line-height: 1.45;
}
.room-rules-item p {
  margin: 0;
  color: var(--room-muted);
  font-size: 11px;
  line-height: 1.65;
}
.room-rules-agreement {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 12px 0 0;
  padding: 12px 13px;
  color: var(--room-text);
  background: var(--hf-color-primary-soft);
  border: 1px solid var(--hf-color-primary-border);
  border-radius: 12px;
  cursor: pointer;
  user-select: none;
}
.room-rules-agreement input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.room-rules-check {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  background: var(--hf-color-surface);
  border: 1px solid var(--room-line);
  border-radius: 6px;
  transition: 0.16s ease;
}
.room-rules-check .fa {
  font-size: 10px;
}
.room-rules-agreement strong {
  font-size: 11px;
  line-height: 1.45;
}
.room-rules-agreement input:focus + .room-rules-check {
  box-shadow: var(--hf-focus-ring);
}
.room-rules-agreement input:checked + .room-rules-check {
  color: var(--hf-button-primary-text);
  background: var(--hf-button-primary-bg);
  border-color: var(--hf-button-primary-bg);
}
.room-rules-accept {
  width: 100%;
  margin-top: 12px;
}
.room-rules-accept:disabled {
  color: var(--hf-color-muted);
  background: var(--hf-color-surface-pressed);
  border-color: var(--room-line);
  cursor: default;
}
.room-system-success-icon {
  color: var(--hf-color-success);
  font-size: 12px;
  margin-right: 2px;
  transform: translateY(1px);
}
.room-message-profile-action {
  padding: 0;
  cursor: pointer;
  outline: 0;
}
.room-message-profile-action:focus-visible {
  box-shadow: var(--hf-focus-ring);
}

/* Stage 12 room profile badge + compact room-list emoji */
.room-host-emoji {
  flex: 0 0 auto;
  font-size: 8px;
  line-height: 1;
}
.room-profile-badge[data-profile-emoji-active="true"],
.room-profile-badge.has-emoji {
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
}
.room-message-row .room-profile-badge[data-profile-emoji-active="true"] {
  font-size: 12px;
}
.room-profile-badge-section {
  margin-top: 18px;
  padding: 14px;
  background: var(--room-soft);
  border: 1px solid var(--room-line);
  border-radius: 14px;
}
.room-profile-badge-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.room-profile-badge-heading > strong {
  color: var(--room-text);
  font-size: 13px;
}
.room-profile-badge-heading > span {
  color: var(--room-muted);
  font-size: 10px;
}
.room-profile-preview {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  margin-left: -1px;
  padding: 12px;
  background: var(--hf-color-surface);
  border: 1px solid var(--room-line);
  border-radius: 12px;
}
.room-profile-preview-badge {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 18px;
  font-size: 14px;
}
.room-profile-preview-badge[data-profile-emoji-active="true"] {
  font-size: 16px;
}
.room-profile-preview > div {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.room-profile-preview strong {
  overflow: hidden;
  color: var(--room-text);
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.room-profile-preview small,
.room-profile-badge-label-row small {
  color: var(--room-muted);
  font-size: 10px;
}
.room-profile-badge-control {
  margin-top: 14px;
}
.room-profile-badge-label,
.room-profile-badge-label-row {
  display: block;
  margin-bottom: 8px;
  color: var(--room-text);
  font-size: 11px;
  font-weight: 700;
}
.room-profile-badge-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.room-profile-badge-label-row .room-profile-badge-label {
  margin-bottom: 0;
}
.room-profile-emoji-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(38px, 1fr));
  gap: 7px;
}
.room-profile-emoji-button {
  min-width: 0;
  height: 42px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--room-text);
  background: var(--hf-color-surface);
  border: 1px solid var(--room-line);
  border-radius: 11px;
  font-size: 21px;
  line-height: 1;
}
.room-profile-emoji-button.is-selected {
  border-color: var(--hf-control-selected-border);
  box-shadow: 0 0 0 1px var(--hf-control-selected-border);
}
.room-profile-emoji-button.is-default {
  flex-direction: column;
  gap: 1px;
  font-size: 11px;
  font-weight: 800;
}
.room-profile-emoji-default-preview {
  font-size: 12px;
  line-height: 1.1;
}
.room-profile-emoji-button small {
  font-size: 8px;
  font-weight: 700;
}
#room_profile_status a {
  margin-left: 3px;
  color: var(--room-blue);
  font-weight: 700;
  text-decoration: none;
}

#room_profile_status a:hover,
#room_profile_status a:focus {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .room-profile-badge-section {
    padding: 12px;
  }
  .room-profile-badge-heading {
    display: block;
  }
  .room-profile-badge-heading > span {
    display: block;
    margin-top: 3px;
  }
  .room-profile-emoji-grid {
    grid-template-columns: repeat(6, minmax(38px, 1fr));
  }
  .room-profile-badge-label-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }
}
