/* MEETUS 0.6.25.2 COMMUNITY2-TG11-WORKSPACE18 */
:root {
  --workspace18-accent: #8774e1;
  --workspace18-accent-strong: #9b87ef;
  --workspace18-panel: #202124;
  --workspace18-card: #25262a;
  --workspace18-line: rgba(255,255,255,.085);
  --workspace18-muted: #9da2ad;
  --workspace18-ease: cubic-bezier(.2,.78,.25,1);
}

.workspace18-selection-bar {
  position: fixed;
  z-index: 24500;
  left: 50%;
  bottom: max(18px, env(safe-area-inset-bottom));
  transform: translateX(-50%);
  min-width: 350px;
  min-height: 60px;
  display: grid;
  grid-template-columns: 44px minmax(0,1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 8px 9px;
  border: 1px solid var(--workspace18-line);
  border-radius: 21px;
  background: rgba(29,30,34,.97);
  color: #fff;
  box-shadow: 0 18px 55px rgba(0,0,0,.48);
  backdrop-filter: blur(16px);
  animation: workspace18-bar-in .18s var(--workspace18-ease);
}
.workspace18-selection-bar.hidden { display: none !important; }
.workspace18-round-button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  color: #e8e8ec;
  font-size: 27px;
  line-height: 1;
  cursor: pointer;
  transition: background .15s ease, transform .15s var(--workspace18-ease);
}
.workspace18-round-button:hover { background: rgba(255,255,255,.12); transform: scale(1.035); }
.workspace18-selection-count { min-width: 0; display: flex; align-items: baseline; gap: 7px; }
.workspace18-selection-count strong { font-size: 20px; color: #fff; }
.workspace18-selection-count span { overflow: hidden; color: var(--workspace18-muted); font-size: 12px; text-overflow: ellipsis; white-space: nowrap; }
.workspace18-next-button,
.workspace18-send-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 14px;
  padding: 0 17px;
  background: linear-gradient(135deg, var(--workspace18-accent), var(--workspace18-accent-strong));
  color: #fff;
  font: inherit;
  font-weight: 750;
  cursor: pointer;
  box-shadow: 0 9px 24px rgba(96,76,195,.27);
  transition: filter .15s ease, transform .15s var(--workspace18-ease), opacity .15s ease;
}
.workspace18-next-button:hover,
.workspace18-send-button:hover { filter: brightness(1.07); transform: translateY(-1px); }
.workspace18-next-button:disabled,
.workspace18-send-button:disabled { opacity: .45; cursor: default; filter: none; transform: none; }
.workspace18-next-button svg,
.workspace18-send-button svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

body.workspace18-selecting #messageArea .message-row {
  box-sizing: border-box;
  padding-left: 43px !important;
}
body.workspace18-selecting #messageArea .message-row.workspace18-selectable {
  position: relative;
  cursor: pointer !important;
  border-radius: 10px;
  transition: background .14s ease;
}
body.workspace18-selecting #messageArea .message-row.workspace18-selectable:hover { background: rgba(135,116,225,.075); }
body.workspace18-selecting #messageArea .message-row.workspace18-selected { background: rgba(135,116,225,.16) !important; }
body.workspace18-selecting #messageArea .message-row.workspace18-selected > .message-bubble { box-shadow: 0 0 0 2px rgba(155,135,239,.82), 0 8px 24px rgba(0,0,0,.18) !important; }
body.workspace18-selecting #messageArea .message-menu-trigger { opacity: .2 !important; pointer-events: none !important; }
.workspace18-message-check {
  position: absolute;
  z-index: 15;
  left: 7px;
  top: 50%;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  border: 2px solid #707683;
  border-radius: 50%;
  background: #191a1e;
  color: transparent;
  box-shadow: 0 5px 16px rgba(0,0,0,.3);
  pointer-events: none;
  transition: background .14s ease, border-color .14s ease, color .14s ease, transform .14s var(--workspace18-ease);
}
.workspace18-message-check.active { border-color: var(--workspace18-accent); background: var(--workspace18-accent); color: #fff; transform: translateY(-50%) scale(1.04); }
.workspace18-message-check svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

.workspace18-forward-backdrop {
  position: fixed;
  z-index: 26000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(4,5,8,.73);
  backdrop-filter: blur(10px);
  animation: workspace18-fade .16s ease;
}
.workspace18-forward-backdrop.hidden { display: none !important; }
.workspace18-forward-card {
  width: min(570px, 100%);
  max-height: min(790px, calc(100dvh - 36px));
  display: grid;
  grid-template-rows: auto auto auto minmax(170px,1fr) auto;
  overflow: hidden;
  border: 1px solid var(--workspace18-line);
  border-radius: 24px;
  background: var(--workspace18-panel);
  color: #fff;
  box-shadow: 0 32px 95px rgba(0,0,0,.6);
  animation: workspace18-card-in .21s var(--workspace18-ease);
}
.workspace18-forward-header {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px 12px 20px;
  border-bottom: 1px solid var(--workspace18-line);
}
.workspace18-forward-header h3 { margin: 0; font-size: 20px; line-height: 1.2; }
.workspace18-forward-header small { display: block; margin-top: 4px; color: var(--workspace18-muted); font-size: 11px; }
.workspace18-search {
  min-height: 48px;
  display: grid;
  grid-template-columns: 22px minmax(0,1fr);
  align-items: center;
  gap: 9px;
  margin: 14px 16px 8px;
  padding: 0 14px;
  border: 1px solid var(--workspace18-line);
  border-radius: 15px;
  background: #2a2b30;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.workspace18-search:focus-within { border-color: rgba(155,135,239,.75); box-shadow: 0 0 0 3px rgba(135,116,225,.12); }
.workspace18-search svg { width: 21px; height: 21px; fill: none; stroke: #aab0ba; stroke-width: 1.8; stroke-linecap: round; }
.workspace18-search input { width: 100%; height: 46px; border: 0; outline: 0; background: transparent; color: #fff; font: inherit; }
.workspace18-search input::placeholder { color: #858b95; }
.workspace18-recipient-chips {
  display: flex;
  gap: 7px;
  overflow-x: auto;
  padding: 5px 16px 8px;
  scrollbar-width: thin;
  scrollbar-color: #555866 transparent;
}
.workspace18-recipient-chips.hidden { display: none !important; }
.workspace18-recipient-chip {
  max-width: 210px;
  min-height: 34px;
  display: inline-grid;
  grid-template-columns: 25px minmax(0,1fr) 16px;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
  border: 0;
  border-radius: 17px;
  padding: 4px 8px 4px 4px;
  background: rgba(135,116,225,.18);
  color: #fff;
  cursor: pointer;
}
.workspace18-recipient-chip strong { overflow: hidden; font-size: 11px; text-overflow: ellipsis; white-space: nowrap; }
.workspace18-recipient-chip i { color: #bcb5e8; font-size: 17px; font-style: normal; }
.workspace18-chip-avatar {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  border-radius: 50%;
  background: linear-gradient(145deg,#6557d6,#2b9db8);
  font-size: 8px;
  font-weight: 800;
}
.workspace18-chip-avatar img,
.workspace18-contact-avatar img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.workspace18-contact-list {
  min-height: 170px;
  overflow-y: auto;
  padding: 5px 10px 12px;
  scrollbar-width: thin;
  scrollbar-color: #555866 transparent;
}
.workspace18-contact {
  min-height: 66px;
  display: grid;
  grid-template-columns: 47px minmax(0,1fr) 28px;
  align-items: center;
  gap: 11px;
  padding: 8px 10px;
  border-radius: 15px;
  cursor: pointer;
  transition: background .14s ease, transform .14s var(--workspace18-ease);
}
.workspace18-contact:hover { background: rgba(255,255,255,.055); }
.workspace18-contact.selected { background: rgba(135,116,225,.14); }
.workspace18-contact input { position: absolute; opacity: 0; pointer-events: none; }
.workspace18-contact-avatar {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  border-radius: 50%;
  background: linear-gradient(145deg,#6557d6,#2b9db8);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}
.workspace18-contact-text { min-width: 0; display: grid; gap: 4px; }
.workspace18-contact-text strong,
.workspace18-contact-text small { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.workspace18-contact-text strong { color: #f3f3f5; font-size: 14px; }
.workspace18-contact-text small { color: #9399a4; font-size: 10px; }
.workspace18-contact-check {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border: 2px solid #696e7a;
  border-radius: 50%;
  color: transparent;
  transition: background .14s ease, border-color .14s ease, color .14s ease;
}
.workspace18-contact-check svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.workspace18-contact.selected .workspace18-contact-check { border-color: var(--workspace18-accent); background: var(--workspace18-accent); color: #fff; }
.workspace18-loading,
.workspace18-empty { padding: 38px 18px; color: #969ca7; font-size: 13px; text-align: center; }
.workspace18-forward-footer {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  border-top: 1px solid var(--workspace18-line);
  background: #1c1d20;
}
.workspace18-forward-footer > span { min-width: 0; color: #979da7; font-size: 11px; }
.workspace18-send-button { min-width: 136px; }
body.workspace18-forward-open { overflow: hidden; }

@keyframes workspace18-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes workspace18-card-in { from { opacity: 0; transform: translateY(12px) scale(.98); } to { opacity: 1; transform: none; } }
@keyframes workspace18-bar-in { from { opacity: 0; transform: translate(-50%, 12px); } to { opacity: 1; transform: translate(-50%, 0); } }

@media (max-width: 700px) {
  .workspace18-selection-bar {
    left: 10px;
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    min-width: 0;
    transform: none;
    grid-template-columns: 42px minmax(0,1fr) auto;
    border-radius: 18px;
    animation-name: workspace18-bar-mobile-in;
  }
  body.workspace18-selecting #messageArea .message-row { padding-left: 38px !important; }
  .workspace18-message-check { left: 4px; width: 26px; height: 26px; }
  .workspace18-forward-backdrop { align-items: end; padding: 0; }
  .workspace18-forward-card {
    width: 100%;
    max-height: min(89dvh, 790px);
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 24px 24px 0 0;
    padding-bottom: env(safe-area-inset-bottom);
  }
  .workspace18-forward-header { min-height: 68px; }
  .workspace18-forward-footer { position: sticky; bottom: 0; }
}

@media (max-width: 390px) {
  .workspace18-next-button span { display: none; }
  .workspace18-next-button { width: 44px; padding: 0; }
  .workspace18-forward-footer { display: grid; grid-template-columns: minmax(0,1fr) auto; }
  .workspace18-send-button { min-width: 126px; padding: 0 13px; }
}

@keyframes workspace18-bar-mobile-in { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  .workspace18-selection-bar,
  .workspace18-forward-backdrop,
  .workspace18-forward-card { animation: none !important; }
  .workspace18-contact,
  .workspace18-next-button,
  .workspace18-send-button { transition: none !important; }
}
