:root {
  color-scheme: dark;
  --bg: #111111;
  --rail: #151515;
  --panel: #1b1b1b;
  --panel-2: #232323;
  --panel-3: #2b2b2b;
  --line: #333333;
  --line-strong: #444444;
  --text: #f7f7f7;
  --muted: #a8a8a8;
  --muted-2: #777777;
  --accent: #7437d8;
  --accent-2: #8c42ff;
  --blue: #3478ff;
  --danger: #ff4b61;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-width: 320px;
}

html,
body,
#app {
  min-height: 100%;
}

body {
  margin: 0;
  min-height: 100dvh;
  background: var(--bg);
  color: var(--text);
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

a {
  color: var(--blue);
}

.boot-screen,
.setup-screen,
.auth-screen {
  min-height: 100dvh;
}

.boot-screen,
.setup-screen {
  display: grid;
  place-items: center;
  padding: 24px;
}

.loader {
  width: 32px;
  height: 32px;
  border: 3px solid var(--line);
  border-top-color: var(--accent-2);
  border-radius: 999px;
  animation: spin 0.8s linear infinite;
}

.setup-panel {
  width: min(560px, 100%);
  padding: 32px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.setup-panel code,
.auth-panel code {
  padding: 2px 6px;
  background: var(--panel-3);
  border-radius: 6px;
}

.auth-screen {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 420px);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  padding: clamp(20px, 4vw, 48px);
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.94), rgba(17, 17, 17, 0.76)),
    url("https://images.unsplash.com/photo-1556761175-4b46a572b786?auto=format&fit=crop&w=1800&q=80")
      center / cover;
}

.auth-copy {
  max-width: 680px;
}

.auth-copy h1 {
  max-width: 720px;
  margin: 12px 0 20px;
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1;
  letter-spacing: 0;
}

.auth-copy p {
  max-width: 560px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.eyebrow {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.auth-panel {
  display: grid;
  gap: 24px;
  padding: 32px;
  background: rgba(27, 27, 27, 0.96);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.auth-panel h2 {
  margin: 0 0 8px;
  font-size: 28px;
  letter-spacing: 0;
}

.auth-panel p {
  margin: 0;
  color: var(--muted);
}

.stack {
  display: grid;
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

input,
select {
  min-width: 0;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
  background: #171717;
  color: var(--text);
  outline: none;
}

input:focus,
select:focus {
  border-color: var(--accent-2);
  box-shadow: 0 0 0 3px rgba(140, 66, 255, 0.18);
}

button:disabled,
input:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.primary-button,
.secondary-button,
.composer button,
.new-chat button {
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 800;
}

.primary-button:hover,
.secondary-button:hover,
.composer button:hover,
.new-chat button:hover {
  background: var(--accent-2);
}

.secondary-button {
  border: 1px solid var(--line-strong);
  background: transparent;
}

.workspace {
  display: grid;
  grid-template-columns: minmax(320px, 390px) minmax(0, 1fr);
  gap: clamp(10px, 1.3vw, 14px);
  height: 100dvh;
  min-height: 0;
  padding: clamp(10px, 1.6vw, 18px);
  background: var(--bg);
  overflow: hidden;
}

.workspace.with-top-menu {
  grid-template-rows: auto minmax(0, 1fr);
}

.top-menu {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  min-width: 0;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
}

.top-menu div {
  display: grid;
  gap: 2px;
  margin-right: auto;
  min-width: 170px;
}

.top-menu strong {
  font-size: 15px;
}

.top-menu span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.top-menu-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.menu-toggle {
  display: grid;
  place-items: center;
  gap: 4px;
  width: 42px;
  height: 38px;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
}

.history-toggle {
  display: grid;
  place-items: center;
  width: 42px;
  height: 38px;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
}

.history-toggle:hover {
  border-color: var(--accent-2);
  background: var(--accent);
  color: #ffffff;
}

.message-icon {
  position: relative;
  display: block;
  width: 20px;
  height: 15px;
  border: 2px solid currentColor;
  border-radius: 6px;
}

.message-icon::before,
.message-icon::after {
  content: "";
  position: absolute;
  background: currentColor;
}

.message-icon::before {
  left: 4px;
  right: 4px;
  top: 4px;
  height: 2px;
  border-radius: 999px;
}

.message-icon::after {
  left: 4px;
  bottom: -5px;
  width: 7px;
  height: 7px;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.menu-toggle:hover {
  border-color: var(--accent-2);
  background: var(--accent);
  color: #ffffff;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 20;
  border: 0;
  background: rgba(0, 0, 0, 0.52);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.menu-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.side-menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 21;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 18px;
  width: min(360px, calc(100vw - 28px));
  height: 100dvh;
  padding: 18px;
  border-left: 1px solid var(--line);
  background: var(--panel);
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.42);
  transform: translateX(100%);
  transition: transform 0.22s ease;
}

.side-menu.open {
  transform: translateX(0);
}

.side-menu header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.side-menu header div {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.side-menu header strong {
  font-size: 18px;
}

.side-menu header span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.menu-close {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: transparent;
  color: var(--text);
  font-size: 22px;
  font-weight: 800;
}

.side-menu nav {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 0;
}

.side-menu nav button,
.side-sign-out {
  width: 100%;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: transparent;
  color: var(--text);
  font-weight: 800;
  text-align: left;
}

.side-menu nav button.active,
.side-menu nav button:hover,
.side-sign-out:hover,
.menu-close:hover {
  border-color: var(--accent-2);
  background: var(--accent);
  color: #ffffff;
}

.side-sign-out {
  color: var(--muted);
}

.admin-mode {
  grid-template-columns: 1fr;
}

.workspace.sidebar-collapsed {
  grid-template-columns: minmax(0, 1fr);
}

.workspace.sidebar-collapsed .sidebar {
  display: none;
}

.history-overlay {
  display: none;
}

.history-rail {
  position: fixed;
  left: 10px;
  top: 50%;
  z-index: 12;
  display: grid;
  place-items: center;
  width: 54px;
  min-height: 96px;
  border: 1px solid var(--line);
  border-radius: 0 12px 12px 0;
  background: var(--panel);
  box-shadow: 10px 0 30px rgba(0, 0, 0, 0.24);
  transform: translateY(-50%);
}

.history-rail .history-toggle {
  border-color: transparent;
  margin-left: 0;
}

.small-icon-button {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  font-weight: 900;
}

.sidebar {
  display: grid;
  grid-template-rows: auto auto auto auto minmax(0, 1fr) auto;
  min-width: 0;
  min-height: 0;
  padding: 14px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}

.sidebar-close {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}

.sidebar-close:hover {
  border-color: var(--accent-2);
  background: var(--accent);
  color: #ffffff;
}

.sidebar-header,
.chat-header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.sidebar-header {
  min-height: 46px;
  justify-content: space-between;
  margin-bottom: 10px;
}

.sidebar-header h1,
.chat-header h2 {
  margin: 2px 0 0;
  font-size: 18px;
  letter-spacing: 0;
}

.store-selector,
.store-strip {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}

.store-strip {
  color: var(--muted);
  font-size: 13px;
}

.new-chat {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(76px, 86px);
  gap: 10px;
  margin-bottom: 14px;
}

.new-chat button {
  border-radius: 8px;
}

.status-filters {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 0 0 14px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.status-filters legend {
  padding: 0 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.status-filters label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-size: 13px;
}

.status-filters input {
  width: 16px;
  height: 16px;
  accent-color: var(--accent-2);
}

.conversation-list {
  display: grid;
  align-content: start;
  gap: 14px;
  overflow: auto;
  padding-right: 4px;
}

.conversation-item {
  display: grid;
  width: 100%;
  min-height: 94px;
  padding: 14px;
  border: 1px solid transparent;
  border-radius: 14px;
  background: var(--panel-2);
  color: var(--text);
  text-align: left;
}

.conversation-item:hover,
.conversation-item.active {
  border-color: var(--accent-2);
  background: #262626;
}

.conversation-copy {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.conversation-topline {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  min-width: 0;
}

.conversation-topline strong,
.conversation-preview {
  overflow: hidden;
  text-overflow: ellipsis;
}

.conversation-topline strong {
  display: block;
  min-width: 0;
  white-space: nowrap;
}

.conversation-phone {
  color: var(--muted);
  font-weight: 800;
}

.conversation-preview-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.conversation-preview {
  display: -webkit-box;
  color: #ffffff;
  font-weight: 700;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.unread-badge {
  display: grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  padding: 0 7px;
  border-radius: 999px;
  background: var(--danger);
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
}

.conversation-topline small {
  flex: 0 0 auto;
  color: var(--muted-2);
  font-size: 11px;
}

.chat-panel {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  min-width: 0;
  min-height: 0;
  padding: 14px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}

.chat-header {
  min-height: 72px;
  padding: 0 0 12px;
  border-bottom: 1px solid var(--line);
}

.chat-header > div {
  min-width: 0;
}

.chat-header h2,
.chat-header p {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.chat-header p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.finish-chat-button {
  margin-left: auto;
  height: 40px;
  padding: 0 16px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: transparent;
  color: #ffffff;
  font-weight: 800;
}

.finish-chat-button:hover:not(:disabled) {
  border-color: var(--accent-2);
  background: var(--accent);
}

.finish-chat-button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.message-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: auto;
  padding: 14px 0;
}

.message {
  max-width: min(840px, 92%);
  padding: 14px 16px;
  border-radius: 14px;
}

.message p {
  margin: 0;
  line-height: 1.45;
  font-weight: 650;
}

.message time {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  text-align: right;
}

.message.mine {
  align-self: flex-end;
  background: var(--panel-3);
}

.message.theirs {
  align-self: flex-start;
  background: linear-gradient(90deg, var(--accent-2), #5e35cf);
}

.empty-chat {
  width: fit-content;
  max-width: 80%;
  padding: 14px 16px;
  border-radius: 14px;
  background: var(--panel-3);
  color: var(--muted);
}

.composer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(112px, 160px);
  gap: 12px;
  padding-top: 12px;
}

.composer input {
  height: 48px;
  background: #181818;
}

.composer button {
  height: 48px;
}

.chat-placeholder {
  display: grid;
  place-items: center;
  min-height: 100%;
  padding: 24px;
  text-align: center;
}

.chat-placeholder div {
  max-width: 430px;
}

.chat-placeholder h2 {
  margin: 8px 0;
  font-size: 34px;
  letter-spacing: 0;
}

.chat-placeholder p {
  color: var(--muted);
  line-height: 1.6;
}

.empty-list {
  display: grid;
  gap: 6px;
  padding: 22px 18px;
  color: var(--muted);
  background: var(--panel-2);
  border-radius: 14px;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  max-width: min(420px, calc(100vw - 36px));
  padding: 12px 14px;
  border-radius: 8px;
  background: #ffffff;
  color: #111111;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.35);
  z-index: 10;
}

.sign-out-button {
  height: 44px;
  margin-top: 14px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  font-weight: 800;
}

.sign-out-button:hover {
  background: var(--panel-2);
  color: #ffffff;
}

.admin-panel {
  grid-column: 1 / -1;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  min-width: 0;
  min-height: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
  overflow: hidden;
}

.password-panel {
  grid-column: 1 / -1;
  display: grid;
  place-items: start center;
  min-height: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
  overflow: auto;
}

.password-card {
  display: grid;
  gap: 16px;
  width: min(480px, 100%);
}

.password-card h1 {
  margin: 3px 0 0;
  font-size: 24px;
  letter-spacing: 0;
}

.password-card p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.admin-header {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.admin-header h1,
.admin-card h2 {
  margin: 3px 0 0;
  letter-spacing: 0;
}

.admin-header h1 {
  font-size: 22px;
}

.admin-header p,
.admin-note {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.admin-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 16px;
  min-height: 0;
  padding-top: 16px;
}

.admin-card {
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel-2);
}

.admin-form {
  display: grid;
  align-content: start;
  gap: 16px;
  overflow: auto;
  padding-bottom: 0;
}

.admin-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.store-checks {
  min-width: 0;
  margin: 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.store-checks legend {
  padding: 0 6px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
}

.store-checks-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  margin-bottom: 12px;
}

.store-checks-toolbar input[type="search"] {
  width: 100%;
  height: 40px;
}

.select-all-stores {
  display: flex;
  align-items: center;
  min-height: 40px;
  gap: 8px;
  color: #ffffff;
  white-space: nowrap;
  justify-self: start;
}

.select-all-stores input {
  width: 16px;
  height: 16px;
  accent-color: var(--accent-2);
}

.store-checks > div {
  display: grid;
  gap: 8px;
  max-height: 340px;
  overflow: auto;
  padding-right: 4px;
}

.store-checks label {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
  color: var(--text);
  font-weight: 650;
  line-height: 1.35;
}

.store-checks input {
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
  accent-color: var(--accent-2);
}

.store-checks span {
  min-width: 0;
}

.admin-form-actions {
  display: flex;
  justify-content: flex-end;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.admin-form-actions .primary-button {
  min-width: 180px;
  padding: 0 22px;
}

.admin-users {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 14px;
  min-height: 0;
}

.admin-user-list {
  display: grid;
  align-content: start;
  gap: 10px;
  overflow: auto;
}

.admin-user-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  width: 100%;
  min-width: 0;
  padding: 12px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: var(--panel-3);
  color: var(--text);
  text-align: left;
}

.admin-user-item.active,
.admin-user-item:hover {
  border-color: var(--accent-2);
}

.admin-user-item span:first-child {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.admin-user-item strong,
.admin-user-item small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-user-item small,
.admin-user-item span:last-child {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.admin-loading {
  display: grid;
  place-items: center;
  min-height: 260px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1180px) {
  .workspace {
    grid-template-columns: minmax(300px, 340px) minmax(0, 1fr);
  }
}

@media (max-width: 980px) {
  .admin-grid {
    grid-template-columns: 1fr;
    overflow: auto;
  }

  .admin-users {
    min-height: 320px;
  }
}

@media (max-width: 820px) {
  .workspace {
    grid-template-columns: 1fr;
    height: 100dvh;
    min-height: 0;
    padding: 12px;
    overflow: hidden;
  }

  .sidebar,
  .chat-panel {
    margin-top: 0;
  }

  .sidebar {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 19;
    width: min(390px, calc(100vw - 28px));
    height: 100dvh;
    max-height: none;
    border-radius: 0 14px 14px 0;
    background: var(--bg);
    transform: translateX(-100%);
    transition: transform 0.22s ease;
  }

  .workspace.sidebar-open .sidebar {
    transform: translateX(0);
  }

  .workspace.sidebar-collapsed .sidebar {
    display: grid;
  }

  .history-overlay {
    position: fixed;
    inset: 0;
    z-index: 18;
    display: block;
    border: 0;
    background: rgba(0, 0, 0, 0.52);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
  }

  .history-overlay.open {
    opacity: 1;
    pointer-events: auto;
  }

  .history-rail {
    left: 0;
    top: 96px;
    min-height: 76px;
    border-left: 0;
    transform: none;
  }

  .chat-panel {
    min-height: 0;
  }

  .auth-screen {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .auth-copy h1 {
    font-size: 42px;
  }

  .admin-grid,
  .admin-form-grid {
    grid-template-columns: 1fr;
  }

  .admin-form-actions,
  .admin-form-actions .primary-button {
    width: 100%;
  }

  .store-checks-toolbar {
    grid-template-columns: 1fr;
  }

  .admin-header {
    align-items: stretch;
    flex-direction: column;
  }

  .top-menu div {
    min-width: 0;
  }

  .history-toggle {
    margin-left: auto;
  }

  .top-menu-actions {
    flex: 0 0 auto;
  }

  .admin-header .secondary-button {
    width: 100%;
  }
}

@media (max-width: 620px) {
  .auth-screen {
    align-items: start;
    padding: 18px;
  }

  .auth-copy h1 {
    font-size: 34px;
  }

  .auth-copy p {
    font-size: 15px;
  }

  .auth-panel,
  .setup-panel,
  .admin-panel,
  .password-panel {
    padding: 16px;
  }

  .workspace {
    gap: 10px;
    padding: 10px;
  }

  .sidebar,
  .chat-panel {
    border-radius: 10px;
    padding: 12px;
  }

  .status-filters {
    grid-template-columns: 1fr;
  }

  .chat-header {
    align-items: stretch;
    flex-direction: column;
    min-height: 0;
  }

  .finish-chat-button {
    width: 100%;
    margin-left: 0;
  }

  .message {
    max-width: 96%;
  }

  .admin-form-actions {
    justify-content: stretch;
  }
}

@media (max-width: 540px) {
  .composer,
  .new-chat {
    grid-template-columns: 1fr;
  }

  .composer button,
  .new-chat button {
    width: 100%;
  }

  .conversation-item {
    min-height: 86px;
    padding: 12px;
  }

  .conversation-topline {
    align-items: start;
  }

  .conversation-topline small {
    padding-top: 2px;
  }
}
