/* Lexical Rich Text Editor Styles - DirectDental Theme */

/* Brand colors - matching temp_ratings.scss */
:root {
  --dark-blue: #034ba6;
  --blue: #085ec8;
  --light-blue: #176fc9;
  --green: #71ad08;
  --orange: #fe6718;
  --purple: #574dc7;
  --light-purple: #7b73fd;
  --purple-dark: #9900cc;
  --grey: #e3e4e0;
  --light-grey: #f9f9f9;
}

/* Main editor container with modern card styling */
.editor-container {
  width: 100%;
  position: relative;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.editor-inner {
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.editor-inner:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.editor-inner:focus-within {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(8, 94, 200, 0.15), 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Error state styling */
.lexical-editor-container.is-invalid {
  border-color: #dc3545;
}

.lexical-editor-container.is-invalid:focus-within {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.15);
}

/* Modern toolbar styling with gradient */
.toolbar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background: linear-gradient(135deg, var(--blue) 0%, var(--light-blue) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px 14px 0 0;
  flex-wrap: wrap;
  min-height: 60px;
  position: relative;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(8, 94, 200, 0.15);
}

/* Toolbar button groups */
.toolbar .btn-group {
  display: flex;
  gap: 0.25rem;
  padding: 0.25rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

/* Modern toolbar buttons */
.toolbar .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  color: var(--dark-blue);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

/* Hover effect */
.toolbar .btn:hover:not(:disabled) {
  background: #ffffff;
  border-color: #ffffff;
  color: var(--blue);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Active/pressed effect */
.toolbar .btn:active:not(:disabled) {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Active state for toggled buttons */
.toolbar .btn.active {
  background: linear-gradient(135deg, var(--orange) 0%, #ff8040 100%);
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(254, 103, 24, 0.3);
  font-weight: 600;
}

.toolbar .btn.active:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 16px rgba(254, 103, 24, 0.4);
}

/* Disabled state */
.toolbar .btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  background: rgba(255, 255, 255, 0.5);
  color: #a0a0a0;
}

.toolbar .btn:disabled:hover {
  background: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.3);
  color: #a0a0a0;
  transform: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

/* Icon animations */
.toolbar .btn i {
  transition: transform 0.3s ease;
}

.toolbar .btn:hover i {
  animation: iconPulse 0.5s ease;
}

@keyframes iconPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

/* Toolbar dividers */
.lexical-toolbar-divider {
  width: 1px;
  height: 28px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.3), transparent);
  margin: 0 0.5rem;
}

/* Dropdown styling for toolbar */
.lexical-toolbar-dropdown {
  position: relative;
  display: inline-block;
}

.lexical-toolbar-dropdown select {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  padding: 0.5rem 2rem 0.5rem 0.75rem;
  font-size: 14px;
  color: #0f4b89;
  cursor: pointer;
  appearance: none;
  font-weight: 500;
  min-width: 120px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  background-image: url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 16 16%27%3e%3cpath fill=%27none%27 stroke=%27%230f4b89%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27 stroke-width=%272%27 d=%27M2 5l6 6 6-6%27/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 12px 8px;
  transition: all 0.15s ease-in-out;
}

.lexical-toolbar-dropdown select:hover {
  background: #ffffff;
  border-color: #ffffff;
}

.lexical-toolbar-dropdown select:focus {
  background: #ffffff;
  border-color: #ffffff;
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
  outline: 0;
}

/* Editor content area with modern styling */
.editor-input {
  min-height: 160px;
  font-size: 1rem;
  position: relative;
  tab-size: 2;
  outline: 0;
  padding: 1.25rem;
  caret-color: var(--blue);
  border: none;
  background: transparent;
  color: #212529;
  line-height: 1.7;
  font-family: "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  resize: none;
  overflow-y: auto;
  transition: all 0.2s ease;
}

.editor-input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.8);
}

/* Placeholder styling */
.editor-placeholder {
  color: #9ca3af;
  overflow: hidden;
  position: absolute;
  text-overflow: ellipsis;
  top: 1.25rem;
  left: 1.25rem;
  font-size: 0.95rem;
  user-select: none;
  pointer-events: none;
  font-style: italic;
  line-height: 1.7;
  z-index: 15;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.editor-input:focus ~ .editor-placeholder {
  opacity: 0.5;
}

/* Content styling */
.lexical-editor h1 {
  font-size: 1.75rem;
  font-weight: 600;
  margin: 0.75rem 0 0.5rem 0;
  color: #034ba6;
  line-height: 1.3;
}

.lexical-editor h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0.75rem 0 0.5rem 0;
  color: #085ec8;
  line-height: 1.4;
}

.lexical-editor h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0.75rem 0 0.5rem 0;
  color: #176fc9;
  line-height: 1.4;
}

.lexical-editor p {
  margin: 0.5rem 0;
  line-height: 1.6;
}

.lexical-editor ul,
.lexical-editor ol {
  margin: 0.75rem 0;
  padding-left: 1.75rem;
}

.lexical-editor li {
  margin: 0.375rem 0;
  line-height: 1.5;
}

.lexical-editor strong {
  font-weight: 600;
  color: #034ba6;
}

.lexical-editor em {
  font-style: italic;
  color: #495057;
}

/* Selection styling */
.lexical-editor .selected {
  background: rgba(15, 75, 137, 0.1);
  border-radius: 2px;
}

/* Focus styles */
.lexical-editor:focus {
  outline: none;
}

/* Professional scrollbar styling */
.lexical-editor::-webkit-scrollbar {
  width: 6px;
}

.lexical-editor::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.lexical-editor::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 3px;
}

.lexical-editor::-webkit-scrollbar-thumb:hover {
  background: #0f4b89;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .lexical-toolbar {
    padding: 0.625rem;
    gap: 0.25rem;
  }

  .lexical-toolbar-button {
    width: 34px;
    height: 34px;
    font-size: 13px;
  }

  .lexical-editor {
    min-height: 120px;
    padding: 0.875rem;
    font-size: 0.95rem;
  }

  .lexical-editor:empty::before {
    top: 0.875rem;
    left: 0.875rem;
    line-height: 1.6;
    z-index: 15;
  }
}

@media (max-width: 576px) {
  .lexical-toolbar {
    padding: 0.5rem;
    gap: 0.125rem;
  }

  .lexical-toolbar-button {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }

  .lexical-toolbar-dropdown select {
    min-width: 100px;
    padding: 0.375rem 1.5rem 0.375rem 0.5rem;
    font-size: 13px;
  }

  .lexical-editor {
    min-height: 100px;
    padding: 0.75rem;
    font-size: 0.9rem;
  }

  .lexical-editor:empty::before {
    top: 0.75rem;
    left: 0.75rem;
    font-size: 0.9rem;
    line-height: 1.6;
    z-index: 15;
  }
}


/* Text formatting styles */
.editor-text-bold {
  font-weight: 600;
  color: #034ba6;
}

.editor-text-italic {
  font-style: italic;
  color: #495057;
}

.editor-text-underline {
  text-decoration: underline;
}

/* Paragraph styles */
.editor-paragraph {
  margin: 0.5rem 0;
  position: relative;
  line-height: 1.6;
}

.editor-paragraph:last-child {
  margin-bottom: 0;
}

/* Heading styles */
.editor-heading-h1 {
  font-size: 1.75rem;
  font-weight: 600;
  margin: 0.75rem 0 0.5rem 0;
  line-height: 1.3;
  color: #034ba6;
}

.editor-heading-h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0.75rem 0 0.5rem 0;
  line-height: 1.4;
  color: #085ec8;
}

.editor-heading-h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0.75rem 0 0.5rem 0;
  line-height: 1.4;
  color: #176fc9;
}

/* List styles */
.editor-list-ol,
.editor-list-ul {
  margin: 0.75rem 0;
  padding-left: 1.75rem;
}

.editor-listitem {
  margin: 0.375rem 0;
  line-height: 1.5;
}

.editor-nested-listitem {
  list-style-type: none;
}

/* Quote styles */
.editor-quote {
  margin: 0.75rem 0;
  padding: 0.75rem 1rem;
  background: #f9f9f9;
  border-left: 4px solid #0f4b89;
  color: #495057;
  font-style: italic;
  border-radius: 0 6px 6px 0;
}

/* Code styles */
.editor-code {
  background-color: #f9f9f9;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  padding: 0.25rem 0.5rem;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 0.875rem;
  color: #034ba6;
}

/* Placeholder styles - Updated to match lexical editor */
.editor-placeholder {
  color: #9f9f9f;
  overflow: hidden;
  position: absolute;
  text-overflow: ellipsis;
  top: 1rem;
  left: 1rem;
  font-size: 0.95rem;
  user-select: none;
  pointer-events: none;
  font-style: italic;
  line-height: 1.6;
  z-index: 15;
}
.dd-chat__titlebar{display:flex;justify-content:space-between;align-items:center;padding:12px 16px;background:#fff;border-bottom:1px solid #e3e9f1;cursor:move;border-radius:12px 12px 0 0}.dd-chat__titlebar--mobile{cursor:default;border-radius:0}.dd-chat__title{margin:0;font-size:16px;font-weight:800;color:var(--primary-color, #0f4b89)}.dd-chat__titlebar--mobile h3{margin:0;font-size:16px;font-weight:800;color:var(--primary-color, #0f4b89)}.dd-chat__titlebar--mobile button{color:var(--primary-color, #0f4b89) !important}.dd-chat__close{background:none;border:none;font-size:20px;line-height:1;cursor:pointer;color:#5b6b82;padding:2px 6px;border-radius:6px}.dd-chat__close:hover,.dd-chat__close:focus-visible{background:#f0f4f9;color:var(--primary-color, #0f4b89);outline:none}.dd-chat__context{border-bottom:1px solid #e3e9f1;background:#f7f9fc;font-size:12.5px}.dd-chat__context>*{border:0 !important;background:rgba(0,0,0,0) !important}.dd-chat__chips{display:flex;gap:6px;flex-wrap:nowrap;overflow-x:auto;padding:8px 12px 2px;scrollbar-width:none}.dd-chat__chips::-webkit-scrollbar{display:none}.dd-chat__chip{white-space:nowrap;flex-shrink:0}.dd-chat__chip{font-size:12px;font-weight:600;color:var(--primary-color, #0f4b89);background:none;border:1px solid rgba(15,75,137,.3);border-radius:999px;padding:4px 12px;cursor:pointer;transition:background-color .12s ease}.dd-chat__chip:hover,.dd-chat__chip:focus-visible{background:rgba(15,75,137,.08);outline:none}.sendbird-theme--light [class*=sendbird-],.sendbird-theme--light .sendbird-label,.sendbird-theme--light .sendbird-message-input--textarea{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif !important}.sendbird-theme--light .sendbird-text-message-item-body{border-radius:14px;font-size:14px;line-height:1.45}.sendbird-theme--light .sendbird-text-message-item-body.outgoing{border-bottom-right-radius:5px}.sendbird-theme--light .sendbird-text-message-item-body.incoming{border-bottom-left-radius:5px;background:#fff;border:1px solid #e3e9f1}.sendbird-theme--light .sendbird-separator__text{font-size:11px;font-weight:600;color:#5b6b82;background:#f7f9fc;border:1px solid #e3e9f1;border-radius:999px;padding:2px 10px}.sendbird-theme--light .sendbird-channel-preview{padding:10px 12px;border-bottom:1px solid #eef2f7}.sendbird-theme--light .sendbird-channel-preview:hover{background:#f7f9fc}.sendbird-theme--light .sendbird-channel-preview--active{background:rgba(15,75,137,.06);box-shadow:inset 3px 0 0 var(--primary-color, #0f4b89);border-left:none}.sendbird-theme--light .sendbird-badge{background:var(--primary-color, #0f4b89)}.sendbird-theme--light .sendbird-avatar .sendbird-avatar-status{background:var(--green, #71ad08)}.dd-chat__list{flex:1;overflow-y:auto;background:#fff}.dd-chat__row{display:flex;align-items:center;gap:11px;width:100%;text-align:left;background:#fff;border:0;border-bottom:1px solid #eef2f7;padding:12px 14px;cursor:pointer;font-family:inherit}.dd-chat__row:hover,.dd-chat__row:focus-visible{background:#f7f9fc;outline:none}.dd-chat__row--active{background:rgba(15,75,137,.06);box-shadow:inset 3px 0 0 var(--primary-color, #0f4b89)}.dd-chat__row-main{flex:1;min-width:0;display:block}.dd-chat__row-top{display:flex;justify-content:space-between;align-items:baseline;gap:8px}.dd-chat__row-name{font-weight:700;font-size:14px;color:#16233b}.dd-chat__row-time{font-size:11px;color:#5b6b82;flex-shrink:0}.dd-chat__row-preview{display:block;font-size:12.5px;color:#5b6b82;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;margin-top:2px}.dd-chat__row-preview--unread{color:#16233b;font-weight:600}.dd-chat__unread{min-width:19px;height:19px;border-radius:999px;background:var(--primary-color, #0f4b89);color:#fff;font-size:11px;font-weight:700;display:inline-flex;align-items:center;justify-content:center;padding:0 5px;flex-shrink:0}.dd-chat__pinned{flex-shrink:0;border-bottom:1px solid #dce8f6;background:linear-gradient(180deg, #f1f7fe 0%, #e7f0fb 100%);box-shadow:inset 3px 0 0 var(--primary-color, #0f4b89)}.dd-chat__pinned .dd-chat__row{border-bottom:0;background:rgba(0,0,0,0)}.dd-chat__pinned .dd-chat__row:hover,.dd-chat__pinned .dd-chat__row:focus-visible{background:rgba(15,75,137,.08)}.dd-chat__row--assistant .dd-chat__row-name{color:var(--primary-color, #0f4b89)}.dd-chat__row--assistant .dd-chat__row-preview{color:#4a6180}.dd-chat__row-tag{flex-shrink:0;font-size:10px;font-weight:700;letter-spacing:.04em;text-transform:uppercase;color:#fff;background:var(--primary-color, #0f4b89);border-radius:999px;padding:2px 8px}.dd-chat__avatar--assistant{background:linear-gradient(135deg, #2c5282, #3182ce);font-size:15px}.dd-chat__avatar{position:relative;border-radius:50%;flex-shrink:0;background:linear-gradient(135deg, var(--primary-color, #0f4b89), #0a3a6e);color:#fff;display:flex;align-items:center;justify-content:center;font-weight:700;font-size:13px;overflow:visible}.dd-chat__avatar img{width:100%;height:100%;border-radius:50%;object-fit:cover}.dd-chat__presence{position:absolute;right:-1px;bottom:-1px;width:11px;height:11px;border-radius:50%;background:var(--green, #71ad08);border:2px solid #fff}.dd-chat__thread-head{display:flex;align-items:center;gap:10px;padding:10px 14px;border-bottom:1px solid #e3e9f1;background:#fff}.dd-chat__back{border:0;background:none;color:#5b6b82;font-size:22px;line-height:1;cursor:pointer;padding:2px 8px;border-radius:8px}.dd-chat__back:hover,.dd-chat__back:focus-visible{background:#f0f4f9;color:var(--primary-color, #0f4b89);outline:none}.dd-chat__who{flex:1;min-width:0}.dd-chat__who-name{font-weight:700;font-size:15px;line-height:1.2;color:#16233b}.dd-chat__who-sub{font-size:12px;color:#5b6b82}.dd-chat__head-actions{display:flex;align-items:center;gap:6px}.dd-chat__icon-btn{width:30px;height:30px;border-radius:8px;display:inline-flex;align-items:center;justify-content:center;color:#5b6b82;font-size:14px;text-decoration:none}.dd-chat__icon-btn:hover,.dd-chat__icon-btn:focus-visible{background:#f0f4f9;color:var(--primary-color, #0f4b89);outline:none}.dd-chat__share-btn{display:inline-flex;align-items:center;gap:6px;font-size:12.5px;font-weight:600;color:var(--primary-color, #0f4b89);background:none;border:1px solid rgba(15,75,137,.3);border-radius:8px;padding:5px 11px;cursor:pointer}.dd-chat__share-btn:hover,.dd-chat__share-btn:focus-visible{background:rgba(15,75,137,.08);outline:none}.dd-chat__sheet-scrim{position:absolute;inset:0;background:rgba(15,35,70,.35);display:flex;align-items:flex-end;z-index:30;border-radius:inherit}.dd-chat__sheet{background:#fff;width:100%;max-height:78%;border-radius:16px 16px 0 0;box-shadow:0 -8px 30px rgba(15,35,70,.2);display:flex;flex-direction:column;animation:dd-sheet-up .18s ease-out}@keyframes dd-sheet-up{from{transform:translateY(24px);opacity:.6}to{transform:none;opacity:1}}@media(prefers-reduced-motion: reduce){.dd-chat__sheet{animation:none}}.dd-chat__sheet-head{display:flex;justify-content:space-between;align-items:center;padding:14px 16px 8px}.dd-chat__sheet-title{font-weight:800;font-size:15px;color:#16233b;display:flex;align-items:center;gap:8px}.dd-chat__sheet-title i{color:var(--primary-color, #0f4b89)}.dd-chat__sheet-search{padding:0 16px 10px}.dd-chat__sheet-input{width:100%;border:1px solid #e3e9f1;border-radius:10px;padding:8px 12px;font-size:13.5px;background:#f7f9fc;box-sizing:border-box}.dd-chat__sheet-input:focus{outline:none;border-color:var(--primary-color, #0f4b89);box-shadow:0 0 0 3px rgba(15,75,137,.1);background:#fff}.dd-chat__sheet-list{flex:1;overflow-y:auto;padding:0 8px 8px}.dd-chat__sheet-row{display:flex;align-items:center;gap:10px;padding:10px 8px;border-bottom:1px solid #eef2f7}.dd-chat__sheet-row-main{flex:1;min-width:0}.dd-chat__sheet-row-title{font-weight:700;font-size:13.5px;color:#16233b}.dd-chat__sheet-row-meta{display:flex;flex-wrap:wrap;gap:4px 10px;font-size:12px;color:#5b6b82;margin-top:2px}.dd-chat__sheet-pay{color:var(--primary-color, #0f4b89);font-weight:700}.dd-chat__sheet-share{flex-shrink:0;font-size:12.5px;font-weight:600;color:#fff;background:var(--primary-color, #0f4b89);border:0;border-radius:8px;padding:6px 14px;cursor:pointer}.dd-chat__sheet-share:hover:not(:disabled){background:#0a3a6e}.dd-chat__sheet-share:disabled{opacity:.7;cursor:default}.dd-chat__sheet-share--done{background:var(--green, #71ad08)}.dd-chat__sheet-empty{padding:24px 16px;text-align:center;color:#5b6b82;font-size:13px}.dd-chat__sheet-error{padding:8px 16px 14px;color:#c0392b;font-size:12.5px}.sendbird-conversation{border:none !important}.sendbird-conversation__messages-padding{padding:12px 14px !important}.sendbird-theme--light .sendbird-text-message-item-body{padding:9px 13px !important;font-size:14px !important;line-height:1.45 !important}.sendbird-theme--light .sendbird-text-message-item-body .sendbird-label{font-size:14px !important;line-height:1.45 !important}.sendbird-message-content.incoming .sendbird-message-content__left{display:none !important}.sendbird-message-content.incoming .sendbird-message-content__middle{margin-left:0 !important}.sendbird-message-content__middle__sender-name{display:none !important}.sendbird-message-content__middle__body-container__created-at .sendbird-label,.sendbird-message-content .sendbird-label--caption-3{font-size:11px !important;color:#5b6b82 !important}.sendbird-msg-hoc{margin-bottom:2px}.dd-chat__composer{display:flex;align-items:center;gap:8px;padding:8px 12px 12px}.dd-chat__composer .sendbird-message-input-wrapper{flex:1;min-width:0;padding:0 !important}.dd-chat__composer .sendbird-message-input-wrapper__message-input{padding:0 !important;min-height:0 !important}.dd-chat__composer .sendbird-message-input{min-height:0 !important;display:block !important;width:100% !important;position:relative !important}.sendbird-conversation__footer{padding-bottom:0 !important;margin-bottom:0 !important}.dd-chat__send{width:36px;height:36px;flex-shrink:0;border:0;border-radius:10px;background:var(--primary-color, #0f4b89);color:#fff;font-size:14px;cursor:pointer;display:flex;align-items:center;justify-content:center;transition:background-color .12s ease}.dd-chat__send:hover,.dd-chat__send:focus-visible{background:var(--primary-dark, #0a3a6e);outline:none}.dd-chat__composer .sendbird-message-input--send{display:none !important}.sendbird-message-input .sendbird-message-input--textarea{height:auto !important;min-height:38px !important;max-height:96px !important;font-size:14px !important;line-height:20px !important;padding:9px 40px 9px 12px !important;border:1px solid #d9e2ee !important;border-radius:12px !important;background:#f4f7fb !important;overflow-y:auto}.dd-chat__composer .sendbird-message-input--placeholder{top:50% !important;bottom:auto !important;transform:translateY(-50%) !important;left:13px !important;right:auto !important}.dd-chat__composer .sendbird-message-input--attach{top:50% !important;bottom:auto !important;transform:translateY(calc(-50% - 2px));right:8px !important}.sendbird-message-input .sendbird-message-input--textarea:focus{border:1px solid var(--primary-color, #0f4b89) !important;background:#fff !important}.sendbird-message-input .sendbird-message-input--placeholder{font-size:14px !important;color:#5b6b82 !important}.dd-chat__context-line{display:flex;align-items:center;gap:8px;padding:8px 14px;min-width:0}.dd-chat__context-line+.dd-chat__context-line{padding-top:0}.dd-chat__context-tag{font-size:11px;font-weight:700;color:var(--primary-color, #0f4b89);background:rgba(15,75,137,.08);border:1px solid rgba(15,75,137,.2);padding:1px 8px;border-radius:999px;flex-shrink:0}.dd-chat__context-title{color:#16233b;font-size:12.5px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;min-width:0}.dd-chat__context-link{color:var(--primary-color, #0f4b89);font-weight:600;font-size:12.5px;text-decoration:none;flex-shrink:0}.dd-chat__context-link:hover{text-decoration:underline}.dd-chat__context-more{border:0;background:none;color:#5b6b82;font-size:12px;cursor:pointer;padding:0;flex-shrink:0}.dd-chat__context-more:hover{color:var(--primary-color, #0f4b89)}.dd-chat__list-wrap{flex:1;display:flex;flex-direction:column;overflow:hidden}.dd-chat__list-search{padding:10px 12px 8px;border-bottom:1px solid #eef2f7}.dd-chat__resize-handle{position:absolute;right:0;bottom:0;width:18px;height:18px;cursor:nwse-resize;z-index:5;background:linear-gradient(135deg, transparent 0 55%, #b6c4d6 55% 60%, transparent 60% 70%, #b6c4d6 70% 75%, transparent 75%);border-bottom-right-radius:14px}.sendbird-channel-list{width:100% !important;background:#fff !important}.sendbird-channel-list__header{display:none !important}.sendbird-channel-header{display:none !important}.sendbird-message-content__middle__body-container:has(.sendbird-text-message-item-body){position:relative}.sendbird-message-content__middle__body-container:has(.sendbird-text-message-item-body) .sendbird-message-content__middle__body-container__created-at{position:absolute !important;left:auto !important;top:auto !important;right:11px !important;bottom:4px !important;display:flex;align-items:center;pointer-events:none;z-index:2}.sendbird-theme--light .sendbird-text-message-item-body{padding-bottom:22px !important}.sendbird-theme--light .sendbird-text-message-item-body.outgoing{min-width:112px}.sendbird-theme--light .sendbird-text-message-item-body.incoming{min-width:78px}.sendbird-message-content__middle__body-container:has(.sendbird-text-message-item-body) .sendbird-message-content__middle__body-container__created-at .sendbird-label{font-size:10.5px !important;line-height:1 !important}.sendbird-message-content__middle__body-container:has(.sendbird-text-message-item-body) .sendbird-message-status .sendbird-icon,.sendbird-message-content__middle__body-container:has(.sendbird-text-message-item-body) .sendbird-message-status .sendbird-icon svg{width:12px !important;height:12px !important}.sendbird-message-content.outgoing .sendbird-message-content__middle__body-container:has(.sendbird-text-message-item-body) .sendbird-message-content__middle__body-container__created-at .sendbird-label,.sendbird-message-content.outgoing .sendbird-message-content__middle__body-container:has(.sendbird-text-message-item-body) .sendbird-message-status .sendbird-label{color:hsla(0,0%,100%,.85) !important}.sendbird-message-content.outgoing .sendbird-message-content__middle__body-container:has(.sendbird-text-message-item-body) .sendbird-message-content__middle__body-container__created-at .sendbird-icon svg path,.sendbird-message-content.outgoing .sendbird-message-content__middle__body-container:has(.sendbird-text-message-item-body) .sendbird-message-status .sendbird-icon svg path{fill:hsla(0,0%,100%,.85) !important}.sendbird-message-content:not(.outgoing) .sendbird-message-content__middle__body-container:has(.sendbird-text-message-item-body) .sendbird-message-content__middle__body-container__created-at .sendbird-label,.sendbird-message-content:not(.outgoing) .sendbird-message-content__middle__body-container:has(.sendbird-text-message-item-body) .sendbird-message-status .sendbird-label{color:#8195ab !important}.sendbird-theme--light .sendbird-text-message-item-body.incoming,.sendbird-theme--light .sendbird-text-message-item-body.incoming .sendbird-label{color:#16233b !important}.sendbird-theme--light .sendbird-text-message-item-body.outgoing,.sendbird-theme--light .sendbird-text-message-item-body.outgoing .sendbird-label{color:#fff !important}

/*# sourceMappingURL=common-5cfc61ec-962eac02.css.map*/