/* line 18, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-body {
  overflow: hidden;
}

/* line 22, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-layout-wrapper {
  position: fixed;
  top: 50px;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
}

/* line 34, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-layout {
  display: flex;
  flex: 1;
  height: auto;
  min-height: 0;
  font-family: "Catamaran", sans-serif;
  color: #2C2D50;
  background: #fff;
  overflow: hidden;
}

/* line 45, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-sidebar {
  width: 390px;
  min-width: 390px;
  min-height: 0;
  display: flex;
  flex-direction: column;
  border-right: 1px solid #DEDFE0;
  background: #fff;
}

/* line 55, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-sidebar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 22px 0;
}
/* line 61, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-sidebar__header h1 {
  margin: 0;
  color: #3BAB38;
  font-family: "Bitter", serif;
  font-size: 2.4rem;
  font-weight: 300;
  line-height: 1.1;
}

/* line 71, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-sidebar__compose-btn {
  width: 61px;
  height: 61px;
  border: none;
  border-radius: 6px;
  background: #3BAB38;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s ease;
}
/* line 86, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-sidebar__compose-btn:hover {
  background: #308c2e;
}

/* line 91, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-preferences {
  padding: 20px 22px 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* line 98, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-preferences__section-title {
  margin: 0 0 12px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #687393;
}

/* line 107, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-preferences__description {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #525f50;
}

/* line 114, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-preferences__link {
  display: inline-flex;
  align-items: center;
  margin-top: 16px;
  color: #3BAB38;
  font-weight: 600;
  text-decoration: none;
}
/* line 122, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-preferences__link:hover {
  text-decoration: underline;
}

/* line 129, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-panel__header--compose {
  gap: 12px;
  align-items: center;
}

/* line 134, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
input.chat-compose__search-input {
  flex: 1;
  min-width: 0;
  height: 40px;
  border: none;
  border-radius: 4px;
  background: #F4F4FE;
  padding: 0 14px;
  color: #2C2D50;
  font-size: 1.25rem;
  font-weight: 300;
  font-family: "Catamaran", sans-serif;
  padding: 0 8px;
  outline: none;
  max-width: none;
  margin-bottom: 0;
  line-height: normal;
}
/* line 152, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
input.chat-compose__search-input::placeholder {
  color: #687393;
}

/* line 157, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-compose__results {
  flex: 0 0 auto;
  overflow-y: auto;
}
/* line 161, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-compose__results:empty {
  display: none;
}

/* line 166, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-compose__candidate {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 12px 34px;
  border: none;
  background: none;
  cursor: pointer;
  font-family: "Catamaran", sans-serif;
  transition: background 0.12s ease;
}
/* line 178, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-compose__candidate:hover {
  background: #f7f8f7;
}

/* line 183, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-compose__candidate--active {
  background: #eef8ea;
  box-shadow: inset 4px 0 0 #3BAB38;
}

/* line 188, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-compose__candidate--active .chat-compose__candidate-avatar {
  background: #3BAB38;
  color: #fff;
}

/* line 193, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-compose__candidate--active .chat-compose__candidate-name {
  font-weight: 600;
}

/* line 197, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-compose__candidate-avatar {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: #e6e8e6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.86rem;
  font-weight: 600;
  color: #525f50;
}

/* line 211, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-compose__candidate-name {
  font-size: 1.1rem;
  font-weight: 500;
  color: #2C2D50;
}

/* line 217, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-compose__candidate-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  min-width: 0;
}

/* line 225, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-compose__candidate-meta {
  font-size: 0.85rem;
  color: #687393;
}

/* line 230, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-compose__candidate-avatar--scope {
  background: #3BAB38;
  color: #fff;
}

/* line 235, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-compose__group-heading {
  padding: 14px 34px 4px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #687393;
}

/* line 244, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-compose__body {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

/* line 252, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-compose__body > [hidden] {
  display: none !important;
}

/* line 256, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-browse {
  padding: 8px 0;
}

/* line 260, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-browse__loading,
.chat-browse__empty {
  padding: 14px 34px;
  color: #687393;
  font-size: 0.95rem;
}

/* line 267, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-browse__summary {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 16px 4px 0;
}
/* line 273, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-browse__summary:hover {
  background: #f7f8f7;
}

/* line 278, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-browse__toggle {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px 8px 34px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 1rem;
  font-family: inherit;
}

/* line 293, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-browse__node[data-browse-expanded="true"] > .chat-browse__summary .chat-browse__chevron {
  transform: rotate(90deg);
}

/* line 297, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-browse__chevron {
  color: #687393;
  transition: transform 0.12s ease;
  width: 14px;
  text-align: center;
}

/* line 304, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-browse__icon {
  color: #3BAB38;
  width: 18px;
  text-align: center;
}

/* line 310, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-browse__label {
  flex: 1;
  color: #2C2D50;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* line 319, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-browse__action {
  border: 1px solid #3BAB38;
  background: #fff;
  color: #3BAB38;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  cursor: pointer;
}
/* line 329, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-browse__action:hover {
  background: #3BAB38;
  color: #fff;
}

/* line 335, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-browse__children {
  padding-left: 22px;
  border-left: 1px solid #DEDFE0;
  margin-left: 44px;
}

/* line 341, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-browse__person {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 6px 12px;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 0.95rem;
  text-align: left;
}
/* line 353, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-browse__person:hover {
  background: #f7f8f7;
}

/* line 358, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-browse__person-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #e6e8e6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: #525f50;
}

/* line 371, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-browse__person-name {
  color: #2C2D50;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* line 380, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-browse__person-role {
  margin-left: auto;
  padding: 2px 8px;
  border-radius: 999px;
  background: #eceeed;
  color: #687393;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  flex: 0 0 auto;
}

/* line 393, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-compose__no-results {
  padding: 16px 34px;
  color: #687393;
  font-size: 0.95rem;
}

/* line 399, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-compose__placeholder {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #687393;
  font-size: 1rem;
}

/* line 408, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-form--disabled {
  opacity: 0.5;
  pointer-events: none;
}

/* line 413, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-sidebar__search {
  --chat-search-padding-y: 30px;
  position: relative;
  padding: var(--chat-search-padding-y) 22px;
  border-bottom: 1px solid #DEDFE0;
}
/* line 419, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-sidebar__search input {
  width: 100%;
  max-width: none;
  height: 50px;
  border: none;
  border-radius: 2px;
  background: #F4F4FE;
  color: #2C2D50;
  font-size: 1.25rem;
  font-weight: 300;
  font-family: "Catamaran", sans-serif;
  padding: 0 50px 0 16px;
  margin-bottom: 0;
}
/* line 433, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-sidebar__search input:focus {
  outline: 1px solid rgba(59, 171, 56, 0.25);
}
/* line 437, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-sidebar__search input::placeholder {
  color: #687393;
}
/* line 442, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-sidebar__search i {
  position: absolute;
  right: 36px;
  top: var(--chat-search-padding-y);
  bottom: var(--chat-search-padding-y);
  display: flex;
  align-items: center;
  font-size: 24px;
  line-height: 1;
  color: #687393;
  pointer-events: none;
}

/* line 456, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-sidebar__list {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

/* line 464, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
#conversation-list {
  min-height: 100%;
}

/* line 468, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-sidebar__empty {
  padding: 40px 20px;
  text-align: center;
  color: #687393;
}

/* line 474, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-sidebar__empty--hidden {
  display: none;
}

/* line 478, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-sidebar__loader {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 20px 22px;
  color: #687393;
  font-size: 0.9rem;
}

/* line 488, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-sidebar__loader--hidden {
  display: none;
}

/* line 492, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-conversation-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: background 0.12s ease;
}
/* line 502, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-conversation-item:hover {
  background: #f7f8f7;
  text-decoration: none;
  color: inherit;
}
/* line 508, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-conversation-item--active {
  background: #f4f5f4;
}

/* line 513, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-conversation-item,
.chat-conversation-item:hover,
.chat-conversation-item:focus,
.chat-conversation-item:active {
  text-decoration: none;
}

/* line 520, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-conversation-item * {
  text-decoration: none;
}

/* line 524, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-conversation-item__avatar {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: #e6e8e6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: #525f50;
}

/* line 538, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-conversation-item__content {
  flex: 1;
  min-width: 0;
}

/* line 543, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-conversation-item__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 2px;
}

/* line 551, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-conversation-item__name {
  font-weight: 600;
  font-size: 1rem;
  color: #2C2D50;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* line 559, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-conversation-item__name--unread {
  font-weight: 700;
}
/* line 563, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-conversation-item--active .chat-conversation-item__name {
  color: #3BAB38;
}

/* line 568, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-conversation-item__time {
  font-size: 0.78rem;
  font-weight: 400;
  color: #687393;
  white-space: nowrap;
  text-align: right;
  min-width: 48px;
}

/* line 577, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-conversation-item__preview-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* line 583, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-conversation-item__preview {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.25;
  font-weight: 400;
  color: #687393;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
  min-width: 0;
}
/* line 595, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-conversation-item__preview--empty {
  color: #c0c6c0;
  font-style: italic;
}

/* line 601, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-conversation-item__unread-badge {
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  background: #3BAB38;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1;
}

/* line 616, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  min-width: 0;
  overflow: hidden;
  background: #f4f4f4;
}
/* line 625, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-main turbo-frame {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}

/* line 633, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-main__empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #687393;
  text-align: center;
  padding: 40px;
}
/* line 643, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-main__empty h2 {
  font-family: "Bitter", serif;
  font-weight: 300;
  color: #525f50;
  margin: 16px 0 8px;
}
/* line 650, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-main__empty p {
  margin: 0;
}

/* line 655, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-main__empty-icon {
  font-size: 3rem;
  color: #c0c6c0;
}

/* line 660, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-panel {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}

@keyframes chat-loading-shimmer {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: -100% 0;
  }
}
/* line 678, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-panel--loading .chat-panel__header-info h2 {
  color: #2C2D50;
}

/* line 683, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-panel__messages--loading {
  gap: 16px;
}

/* line 687, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-loading-message {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 72%;
}
/* line 693, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-loading-message--sent {
  align-self: flex-end;
  flex-direction: row-reverse;
}
/* line 698, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-loading-message--received {
  align-self: flex-start;
}

/* line 703, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-loading-message__avatar {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: linear-gradient(90deg, rgba(222, 223, 224, 0.75), rgba(255, 255, 255, 0.92), rgba(222, 223, 224, 0.75));
  background-size: 220% 100%;
  animation: chat-loading-shimmer 1.2s linear infinite;
}

/* line 713, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-loading-message__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 4px;
}

/* line 722, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-loading-line {
  height: 14px;
  width: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(222, 223, 224, 0.75), rgba(255, 255, 255, 0.96), rgba(222, 223, 224, 0.75));
  background-size: 220% 100%;
  animation: chat-loading-shimmer 1.2s linear infinite;
}

/* line 731, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-loading-line--secondary {
  width: 74%;
}

/* line 735, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-loading-line--short {
  width: 68%;
}

/* line 739, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-loading-line--wide {
  width: 88%;
}

/* line 743, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-loading-line--composer {
  width: 82%;
  height: 16px;
  margin-bottom: 10px;
}

/* line 749, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-loading-line--composer-secondary {
  width: 46%;
  height: 16px;
}

/* line 754, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-form--loading .chat-form__composer {
  min-height: 120px;
}

/* line 758, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-panel__header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 22px 14px 28px;
  background: #fff;
  border-bottom: 1px solid #DEDFE0;
}

/* line 767, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-panel__back-btn {
  display: none;
  border: none;
  background: transparent;
  color: #2C2D50;
  padding: 0;
  align-items: center;
  gap: 8px;
  font-family: "Catamaran", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}

/* line 781, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-panel__header-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e6e8e6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.86rem;
  font-weight: 600;
  color: #525f50;
}

/* line 794, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-panel__header-info {
  flex: 1;
  min-width: 0;
}
/* line 798, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-panel__header-info h2 {
  font-family: "Bitter", serif;
  font-size: 1.8rem;
  line-height: 1.1;
  margin: 0;
  color: #3BAB38;
  font-weight: 300;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* line 811, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-panel__rename-form {
  display: block;
  margin: 0;
  width: auto;
  max-width: 100%;
}

/* line 818, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
input[type="text"].chat-panel__rename-input {
  width: min(26ch, 100%);
  max-width: 100%;
  height: auto;
  border: none;
  border-bottom: 2px solid rgba(59, 171, 56, 0.25);
  border-radius: 0;
  background: transparent;
  color: #3BAB38;
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.1;
  font-family: "Bitter", serif;
  padding: 0;
  margin: 0;
  box-shadow: none;
}
/* line 835, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
input[type="text"].chat-panel__rename-input:focus {
  outline: none;
  border-bottom-color: #3BAB38;
  box-shadow: none;
}

/* line 842, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-panel__rename-error {
  display: block;
  margin-top: 4px;
  font-size: 0.78rem;
  color: #db4d65;
}

/* line 849, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-panel__header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

/* line 856, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-panel__participants {
  position: relative;
}

/* line 860, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-panel__participant-count {
  min-width: 52px;
  height: 40px;
  padding: 0 14px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #3BAB38;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.12s ease, color 0.12s ease;
}
/* line 879, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-panel__participant-count:hover, .chat-panel__participant-count:focus {
  background: #fff;
  color: #308c2e;
  outline: none;
}

/* line 887, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-panel__participants-popover {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 220px;
  max-width: min(280px, calc(100vw - 32px));
  padding: 12px 14px;
  border: 1px solid rgba(222, 223, 224, 0.9);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  z-index: 20;
  pointer-events: none;
}

/* line 903, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-panel__participants--open .chat-panel__participants-popover {
  display: block;
}

/* line 909, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-panel__overflow {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* line 915, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-panel__header-action.chat-panel__overflow-toggle {
  display: none !important;
  border: none;
  cursor: pointer;
}

/* line 921, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-panel__overflow-menu {
  display: none;
}

/* line 927, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-settings {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 24px 20px;
  max-width: 560px;
  width: 100%;
  margin: 0 auto;
}

/* line 939, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-settings__section {
  background: #fff;
  border: 1px solid #DEDFE0;
  border-radius: 10px;
  overflow: hidden;
  padding: 4px 0;
}
/* line 946, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-settings__section > * + * {
  border-top: 1px solid #eceeed;
}
/* line 950, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-settings__section + .chat-settings__section {
  margin-top: 18px;
}

/* line 955, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-settings__item {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 12px 20px;
  border: none;
  background: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.1s ease;
  font-family: "Catamaran", sans-serif;
}
/* line 968, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-settings__item:hover {
  background: #f4f6f4;
}

/* line 973, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-settings__item--form {
  margin: 0;
}

/* line 977, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-settings__item-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  background: #eceeed;
  color: #525f50;
}

/* line 990, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-settings__item--danger .chat-settings__item-icon {
  background: #fdecea;
  color: #d32f2f;
}

/* line 995, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-settings__item-content {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

/* line 1001, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-settings__item-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #2C2D50;
  line-height: 1.3;
}

/* line 1008, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-settings__item--danger .chat-settings__item-label {
  color: #d32f2f;
}

/* line 1012, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-settings__item-desc {
  font-size: 0.82rem;
  color: #687393;
  line-height: 1.3;
}

/* line 1018, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-settings__item-control {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* line 1027, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-settings__switch {
  appearance: none;
  width: 44px;
  height: 24px;
  margin: 0;
  border-radius: 12px;
  background: #DEDFE0;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.15s ease;
}
/* line 1039, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-settings__switch::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  transition: transform 0.15s ease;
}
/* line 1052, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-settings__switch:checked {
  background: #3BAB38;
}
/* line 1056, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-settings__switch:checked::after {
  transform: translateX(20px);
}

/* line 1061, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-settings__section-title {
  padding: 10px 20px 8px;
  color: #3BAB38;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* line 1070, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-settings__member {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
}

/* line 1077, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-settings__member-name {
  min-width: 0;
  flex: 1;
  color: #2C2D50;
  font-weight: 600;
}

/* line 1084, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-settings__member-note {
  color: #687393;
  font-size: 0.82rem;
}

/* line 1089, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-settings__member-remove {
  border: none;
  background: none;
  color: #d32f2f;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  padding: 6px 0;
}

@media (hover: hover) and (pointer: fine) {
  /* line 1101, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
  .chat-panel__participants:not(.chat-panel__participants--suppress-hover):hover .chat-panel__participants-popover {
    display: block;
  }
}
/* line 1106, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-panel__participants-popover-title {
  color: #3BAB38;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* line 1114, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-panel__participants-popover-list {
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

/* line 1120, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-panel__participants-popover-list li {
  color: #2C2D50;
  font-size: 0.95rem;
  line-height: 1.35;
}
/* line 1125, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-panel__participants-popover-list li + li {
  margin-top: 6px;
}

/* line 1130, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-panel__header-action {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  color: #3BAB38;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.12s ease;
}
/* line 1143, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-panel__header-action:hover, .chat-panel__header-action:focus {
  background: #f2f8f0;
  text-decoration: none;
  color: #308c2e;
}

/* line 1151, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-panel__header-action--confirm {
  border: none;
  cursor: pointer;
}

/* line 1157, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-panel__messages {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  padding: 18px 34px 22px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
/* line 1172, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-panel__messages[data-has-more-history="false"] > .chat-history-loader + * {
  margin-top: auto;
}

/* line 1177, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-history-loader {
  align-self: center;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: auto auto 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: #687393;
  font-size: 0.85rem;
  font-weight: 500;
  transition: opacity 0.12s ease;
}

/* line 1192, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-history-loader--hidden {
  visibility: hidden;
  opacity: 0;
}

/* line 1197, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-panel__messages[data-has-more-history="false"] .chat-history-loader {
  display: none;
}

/* line 1202, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-timestamp {
  text-align: center;
  padding: 8px 0;
  font-size: 0.8rem;
  font-weight: 500;
  color: #687393;
  letter-spacing: 0.01em;
}

/* line 1211, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-day-divider,
.chat-unread-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0 10px;
  padding: 0 12px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
/* line 1223, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-day-divider::before, .chat-day-divider::after,
.chat-unread-divider::before,
.chat-unread-divider::after {
  content: "";
  flex: 1;
  height: 1px;
}

/* line 1231, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-day-divider {
  color: #687393;
}
/* line 1234, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-day-divider::before, .chat-day-divider::after {
  background: #DEDFE0;
}

/* line 1240, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-unread-divider {
  color: #3BAB38;
}
/* line 1243, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-unread-divider::before, .chat-unread-divider::after {
  background: rgba(59, 171, 56, 0.35);
}

/* line 1249, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-system-message {
  align-self: center;
  max-width: 80%;
  padding: 6px 0;
  text-align: center;
}

/* line 1256, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-system-message__text {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(222, 223, 224, 0.8);
  color: #525f50;
  font-size: 0.92rem;
  font-weight: 500;
}

/* line 1266, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-message {
  --chat-received-actions-space: 58px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
/* line 1272, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-message--received {
  align-self: flex-start;
  max-width: min(calc(64% + var(--chat-received-actions-space)), calc(620px + var(--chat-received-actions-space)), 100%);
}
/* line 1277, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-message--sent {
  align-self: flex-end;
  flex-direction: row-reverse;
  max-width: min(64%, 620px);
}

/* line 1284, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-message__avatar {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: #e6e8e6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.86rem;
  font-weight: 600;
  color: #525f50;
}

/* line 1298, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-message__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  align-items: flex-start;
}

/* line 1306, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-message__sender {
  font-size: 0.78rem;
  font-weight: 600;
  color: #687393;
  padding-left: 16px;
}

/* line 1314, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-message--grouped .chat-message__avatar {
  visibility: hidden;
}

/* line 1318, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-message--grouped .chat-message__sender {
  display: none;
}

/* line 1322, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-message--sent .chat-message__body {
  align-items: flex-end;
}

/* line 1326, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-message__bubble-row {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

/* line 1333, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-message--sent .chat-message__bubble-row {
  justify-content: flex-end;
}

/* line 1337, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-message__bubble {
  background: #fff;
  border-radius: 6px;
  padding: 16px;
  position: relative;
  min-width: 120px;
}
/* line 1344, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-message__bubble p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.35;
  font-weight: 400;
  color: #2C2D50;
  white-space: pre-wrap;
  overflow-wrap: break-word;
  word-break: normal;
}
/* line 1355, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-message__bubble a {
  color: #3BAB38;
  text-decoration: underline;
  overflow-wrap: anywhere;
}
/* line 1360, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-message__bubble a:hover {
  text-decoration: none;
}

/* line 1366, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-message__reply {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  padding: 9px 11px;
  border-left: 3px solid rgba(59, 171, 56, 0.72);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.58);
  min-width: 0;
}

/* line 1378, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-message__reply-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1;
}

/* line 1386, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-message__reply-thumb {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  object-fit: cover;
  background: rgba(44, 45, 80, 0.06);
}

/* line 1395, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-message--received .chat-message__reply {
  background: rgba(44, 45, 80, 0.04);
}

/* line 1399, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-message__reply-sender {
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.2;
  color: #2C2D50;
}

/* line 1406, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-message__reply-text {
  font-size: 0.82rem;
  line-height: 1.3;
  color: #525f50;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* line 1415, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-message--received .chat-message__bubble {
  background: #fff;
}

/* line 1419, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-message--sent .chat-message__bubble {
  background: #DCEED4;
}

/* line 1423, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-message--received .chat-message__bubble--bare,
.chat-message--sent .chat-message__bubble--bare {
  background: transparent;
  padding: 0;
  min-width: 0;
}

/* line 1430, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-message__bubble--bare > .chat-message__images:first-child,
.chat-message__bubble--bare > .chat-message__audios:first-child,
.chat-message__bubble--bare > .chat-message__documents:first-child {
  margin-top: 0;
}

/* line 1436, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-message--pending {
  opacity: 0.72;
}
/* line 1439, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-message--pending .chat-message__bubble {
  background: #eceeed;
  box-shadow: none;
}
/* line 1444, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-message--pending .chat-message__text p,
.chat-message--pending .chat-message__pending-attachments {
  color: #525f50;
}

/* line 1451, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-message--failed .chat-message__bubble {
  background: #fdecec;
  border: 1px solid rgba(217, 83, 79, 0.4);
}
/* line 1456, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-message--failed .chat-message__pending-status {
  color: #b23b37;
  font-weight: 600;
}

/* line 1462, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-message__pending-status {
  display: block;
  font-size: 0.68rem;
  color: #687393;
  margin-top: 6px;
  text-align: right;
  font-style: italic;
}

/* line 1471, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-message__pending-attachments {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
  font-size: 0.82rem;
  color: #525f50;
}

/* line 1480, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-message__pending-dismiss {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 22px;
  height: 22px;
  border: 0;
  border-radius: 50%;
  background: rgba(178, 59, 55, 0.1);
  color: #b23b37;
  font-size: 0.7rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
/* line 1497, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-message__pending-dismiss:hover {
  background: rgba(178, 59, 55, 0.2);
}
/* line 1501, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-message__pending-dismiss[hidden] {
  display: none;
}

/* line 1506, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-message__images {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

/* line 1513, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-message__image-link {
  display: block;
  line-height: 0;
  cursor: zoom-in;
  padding: 0;
  border: 0;
  background: transparent;
  font: inherit;
  color: inherit;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

/* line 1528, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-message__media-frame {
  --chat-preview-aspect-ratio: 1 / 1;
  position: relative;
  display: block;
  width: min(240px, 70vw);
  max-width: 100%;
  min-height: 120px;
  aspect-ratio: var(--chat-preview-aspect-ratio);
  border-radius: 6px;
  overflow: hidden;
  background: #f4f6f4;
}

/* line 1541, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-message__media-frame--preview {
  width: min(320px, 100%);
  min-height: 180px;
}

/* line 1546, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-message__media-frame--loading::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(222, 223, 224, 0.55), rgba(255, 255, 255, 0.65), rgba(222, 223, 224, 0.55));
  background-size: 220% 100%;
  animation: chat-preview-shimmer 1.1s linear infinite;
}

/* line 1555, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-message__media-frame--loaded::before,
.chat-message__media-frame--error::before {
  display: none;
}

/* line 1560, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-message__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.16s ease;
  position: relative;
  pointer-events: none;
  -webkit-user-drag: none;
  z-index: 1;
}

/* line 1572, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-message__preview {
  margin-top: 8px;
  border: 1px solid #DEDFE0;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
}

/* line 1580, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-message__preview-link {
  display: block;
  line-height: 0;
}

/* line 1585, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-message__preview-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.16s ease;
  position: relative;
  z-index: 1;
}

/* line 1595, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-message__media-frame--loaded .chat-message__image,
.chat-message__media-frame--loaded .chat-message__preview-image {
  opacity: 1;
}

/* line 1600, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-message__preview .chat-message__document {
  padding: 8px 10px;
  border-top: 1px solid #DEDFE0;
}

@keyframes chat-preview-shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -20% 0;
  }
}
/* line 1615, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-message__audios {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 320px;
  max-width: 100%;
}

/* line 1624, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-message__audio-player {
  display: block;
  width: 100%;
}

/* line 1629, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-message__documents {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* line 1636, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-message__document {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}

/* line 1643, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-message__document-icon {
  color: #687393;
  font-size: 0.9rem;
}

/* line 1648, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-message__document-link {
  color: #2C2D50;
  font-size: 0.9rem;
  text-decoration: none;
  overflow-wrap: anywhere;
}
/* line 1654, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-message__document-link:hover {
  text-decoration: underline;
}

/* line 1659, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-message__document-size {
  font-size: 0.75rem;
  color: #687393;
}

/* line 1665, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
body.chat-lightgallery-open .lg-prev,
body.chat-lightgallery-open .lg-next {
  top: 50%;
  width: 56px;
  height: 56px;
  margin-top: -28px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.28);
}
/* line 1675, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
body.chat-lightgallery-open .lg-prev {
  left: 12px;
}
/* line 1678, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
body.chat-lightgallery-open .lg-prev:after {
  margin-left: 0;
}
/* line 1683, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
body.chat-lightgallery-open .lg-next {
  right: 12px;
}
/* line 1686, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
body.chat-lightgallery-open .lg-next:before {
  margin-right: 0;
}

/* line 1693, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-message__translation-toggle:disabled {
  cursor: default;
  opacity: 0.7;
}

/* line 1699, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-read-indicator {
  display: flex;
  align-items: center;
  gap: 4px;
  padding-right: 4px;
  margin-top: -4px;
  flex-wrap: wrap;
}

/* line 1708, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-read-indicator--collapsible {
  overflow: visible;
}

/* line 1712, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-message--sent + .chat-read-indicator {
  justify-content: flex-end;
}

/* line 1716, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-message--received + .chat-read-indicator {
  justify-content: flex-start;
  padding-left: 54px;
  padding-right: 0;
}

/* line 1722, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-read-indicator__avatar {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #3BAB38;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.5rem;
  font-weight: 600;
  line-height: 1;
}

/* line 1736, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-read-indicator__details {
  position: relative;
}

/* line 1740, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-read-indicator__more {
  border: 1px solid rgba(59, 171, 56, 0.18);
  border-radius: 999px;
  background: #fff;
  color: #525f50;
  cursor: pointer;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1;
  min-width: 28px;
  height: 20px;
  padding: 0 7px;
}
/* line 1753, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-read-indicator__more:hover {
  background: #f4f6f4;
}

/* line 1758, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-read-indicator__popover {
  position: absolute;
  right: 0;
  bottom: calc(100% + 8px);
  min-width: 150px;
  max-width: min(220px, calc(100vw - 32px));
  padding: 10px 12px;
  border: 1px solid #DEDFE0;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
  z-index: 20;
}

/* line 1772, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-read-indicator__popover-title {
  font-size: 0.72rem;
  font-weight: 700;
  color: #525f50;
  margin-bottom: 6px;
}

/* line 1779, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-read-indicator__popover-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
/* line 1784, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-read-indicator__popover-list li + li {
  margin-top: 4px;
}

/* line 1790, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-message-reactions {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}

/* line 1797, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-message-reactions--static {
  width: auto;
}

/* line 1801, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-message-reactions__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

/* line 1808, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-message--sent .chat-message-reactions__list {
  justify-content: flex-end;
}

/* line 1812, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-message-reactions__anchor {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

/* line 1820, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-message--sent .chat-message-reactions__anchor {
  align-items: flex-end;
}

@media (hover: hover) and (pointer: fine) and (min-width: 801px) {
  /* line 1827, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
  .chat-message-reactions--interactive .chat-message-reactions__anchor {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.12s ease;
  }

  /* line 1833, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
  .chat-message-reactions--interactive:hover .chat-message-reactions__anchor,
  .chat-message-reactions--interactive:focus-within .chat-message-reactions__anchor,
  .chat-message-reactions--interactive.is-open .chat-message-reactions__anchor {
    opacity: 1;
    pointer-events: auto;
  }
}
/* line 1841, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-message-reactions__toggle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #DEDFE0;
  background: rgba(255, 255, 255, 0.9);
  color: #687393;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.05rem;
  flex-shrink: 0;
  transition: background 0.12s ease, color 0.12s ease;
}
/* line 1856, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-message-reactions__toggle:hover {
  background: #f4f6f4;
  color: #525f50;
}

/* line 1862, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-message-reactions__toggle--reply {
  font-size: 0.95rem;
}

/* line 1866, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-message-reactions__picker {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: #fff;
  border: 1px solid #DEDFE0;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  padding: 8px;
  width: max-content;
  max-width: min(300px, calc(100vw - 48px));
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 4px;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  overscroll-behavior-x: contain;
  z-index: 200;
}
/* line 1887, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-message--sent .chat-message-reactions__picker {
  left: auto;
  right: 0;
}
/* line 1892, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-message--received .chat-message-reactions__picker {
  left: auto;
  right: 0;
}
/* line 1897, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.is-open .chat-message-reactions__picker {
  display: flex;
}

/* line 1902, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-message-reactions__option {
  background: transparent;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.2rem;
  padding: 4px;
  line-height: 1;
  transition: background 0.1s ease;
}
/* line 1912, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-message-reactions__option:hover {
  background: #f4f6f4;
}

/* line 1917, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-reaction-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid #DEDFE0;
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  font-size: 0.82rem;
  line-height: 1;
  transition: background 0.12s ease, border-color 0.12s ease;
}
/* line 1930, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-reaction-chip:hover {
  background: #f4f6f4;
}
/* line 1934, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-reaction-chip.selected {
  background: rgba(59, 171, 56, 0.12);
  border-color: rgba(59, 171, 56, 0.4);
}

/* line 1940, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-reaction-chip--static {
  cursor: default;
}
/* line 1943, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-reaction-chip--static:hover {
  background: rgba(255, 255, 255, 0.9);
}

/* line 1948, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-reaction-chip__emoji {
  font-size: 1rem;
  line-height: 1;
}

/* line 1953, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-reaction-chip__count {
  font-weight: 600;
  color: #525f50;
}

/* line 1958, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-panel__typing {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0 34px;
  background: #f4f4f4;
  min-height: 0;
}

/* line 1967, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-typing {
  display: none;
  align-items: center;
  gap: 8px;
  color: #687393;
  font-size: 0.85rem;
  line-height: 1.2;
}
/* line 1975, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-typing--active {
  display: inline-flex;
  padding: 6px 0 4px;
}

/* line 1981, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-typing__label {
  font-style: italic;
}

/* line 1985, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-typing__dots {
  display: inline-flex;
  align-items: flex-end;
  gap: 3px;
  height: 10px;
}
/* line 1991, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-typing__dots span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #687393;
  animation: chat-typing-bounce 1.2s infinite ease-in-out;
}
/* line 1999, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-typing__dots span:nth-child(2) {
  animation-delay: 0.15s;
}
/* line 2000, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-typing__dots span:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes chat-typing-bounce {
  0%, 80%, 100% {
    transform: translateY(0);
    opacity: 0.4;
  }
  40% {
    transform: translateY(-3px);
    opacity: 1;
  }
}
/* line 2008, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-form {
  padding: 12px 34px calc(max(env(safe-area-inset-bottom, 0px), 0px) + 12px);
  background: #f4f4f4;
  border-top: 1px solid #DEDFE0;
}

/* line 2014, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-form__composer {
  border: 1px solid #DEDFE0;
  background: #fff;
  border-radius: 22px;
  padding: 6px 12px;
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 6px;
  overflow: hidden;
  transition: border-radius 0.12s ease, padding 0.12s ease;
}
/* line 2026, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-form__composer .chat-form__toolbar {
  margin-top: 0;
  padding-top: 0;
  order: -1;
  justify-content: flex-start;
  flex: 0 0 auto;
}
/* line 2034, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-form__composer .chat-form__icon-btn,
.chat-form__composer .chat-form__record-btn {
  width: 32px;
  height: 32px;
  font-size: 16px;
}
/* line 2041, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-form__composer .chat-form__record-btn::before {
  width: 16px;
  height: 16px;
}
/* line 2046, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-form__composer .chat-form__send-btn {
  display: none;
}

/* line 2049, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-form__composer:is(:focus-within,
:has(.chat-form__textarea:not(:placeholder-shown)),
:has(.chat-form__selected-files:not(:empty)),
:has(.chat-form__reply:not([hidden]))),
.chat-form--recording .chat-form__composer {
  flex-direction: column;
  align-items: stretch;
  padding: 12px 16px;
  border-radius: 10px;
}
/* line 2061, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-form__composer:is(:focus-within,
:has(.chat-form__textarea:not(:placeholder-shown)),
:has(.chat-form__selected-files:not(:empty)),
:has(.chat-form__reply:not([hidden]))) .chat-form__toolbar,
.chat-form--recording .chat-form__composer .chat-form__toolbar {
  margin-top: auto;
  padding-top: 10px;
  order: unset;
  justify-content: space-between;
}
/* line 2068, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-form__composer:is(:focus-within,
:has(.chat-form__textarea:not(:placeholder-shown)),
:has(.chat-form__selected-files:not(:empty)),
:has(.chat-form__reply:not([hidden]))) .chat-form__icon-btn,
.chat-form__composer:is(:focus-within,
:has(.chat-form__textarea:not(:placeholder-shown)),
:has(.chat-form__selected-files:not(:empty)),
:has(.chat-form__reply:not([hidden]))) .chat-form__record-btn,
.chat-form--recording .chat-form__composer .chat-form__icon-btn,
.chat-form--recording .chat-form__composer .chat-form__record-btn {
  width: 40px;
  height: 40px;
  font-size: 20px;
}
/* line 2075, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-form__composer:is(:focus-within,
:has(.chat-form__textarea:not(:placeholder-shown)),
:has(.chat-form__selected-files:not(:empty)),
:has(.chat-form__reply:not([hidden]))) .chat-form__record-btn::before,
.chat-form--recording .chat-form__composer .chat-form__record-btn::before {
  width: 20px;
  height: 20px;
}
/* line 2080, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-form__composer:is(:focus-within,
:has(.chat-form__textarea:not(:placeholder-shown)),
:has(.chat-form__selected-files:not(:empty)),
:has(.chat-form__reply:not([hidden]))) .chat-form__send-btn,
.chat-form--recording .chat-form__composer .chat-form__send-btn {
  display: inline-flex;
}

/* line 2083, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-form__textarea {
  display: block;
  flex: 1 1 auto;
  width: 100%;
  max-width: none;
  min-width: 0;
  min-height: 32px;
  border: none;
  outline: none;
  background: transparent;
  font-size: 1.25rem;
  font-weight: 300;
  font-family: "Catamaran", sans-serif;
  color: #2C2D50;
  resize: none;
  line-height: 1.5;
  padding: 6px 8px;
  height: auto;
  margin-bottom: 0;
  box-sizing: border-box;
  white-space: pre-wrap;
  overflow-x: hidden;
  overflow-y: hidden;
  word-break: normal;
  overflow-wrap: break-word;
}
/* line 2109, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-form__textarea::placeholder {
  color: #687393;
}

/* line 2114, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-form__textarea--overflowing {
  overflow-y: auto;
}

/* line 2118, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-form__error {
  margin-bottom: 10px;
  padding: 8px 12px;
  border-left: 3px solid #db4d65;
  border-radius: 6px;
  background: #fbedef;
  color: #db4d65;
  font-size: 0.82rem;
  line-height: 1.3;
}

/* line 2129, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-form__error:empty {
  display: none;
}

/* line 2133, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-form__reply {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  padding: 10px 12px;
  border-left: 3px solid #3BAB38;
  border-radius: 8px;
  background: #f4f8ee;
}

/* line 2144, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-form__reply[hidden] {
  display: none;
}

/* line 2148, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-form__reply-thumb {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 4px;
  object-fit: cover;
  background: rgba(44, 45, 80, 0.06);
}

/* line 2157, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-form__reply-thumb[hidden] {
  display: none;
}

/* line 2161, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-form__reply-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1;
}

/* line 2169, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-form__reply-sender {
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.2;
  color: #2C2D50;
}

/* line 2176, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-form__reply-text {
  font-size: 0.82rem;
  line-height: 1.3;
  color: #525f50;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* line 2185, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-form__reply-clear {
  border: none;
  background: transparent;
  color: #687393;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1;
  padding: 2px;
}
/* line 2194, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-form__reply-clear:hover {
  color: #2C2D50;
}

/* line 2199, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-form__file-input,
.chat-form__file-input[hidden] {
  display: none;
}

/* line 2204, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-form__selected-files {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

/* line 2211, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-form__selected-file {
  background: #f2f3f9;
  border: 1px solid #d5d9e7;
  border-radius: 12px;
  color: #2C2D50;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  line-height: 1.2;
  max-width: 100%;
  padding: 6px 10px;
}

/* line 2225, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-form__selected-file-name,
.chat-form__selected-audio-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* line 2232, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-form__selected-file-remove {
  border: none;
  background: transparent;
  color: #687393;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0;
}
/* line 2241, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-form__selected-file-remove:hover {
  color: #2C2D50;
}

/* line 2246, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-form__selected-audio {
  width: 100%;
  max-width: 460px;
  border: 1px solid #d5d9e7;
  border-radius: 10px;
  background: #f8f9fc;
  padding: 10px 12px;
}

/* line 2255, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-form__selected-audio-player {
  width: 100%;
  display: block;
}

/* line 2260, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-form__selected-audio-meta {
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
}

/* line 2269, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-form__toolbar {
  margin-top: auto;
  padding-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* line 2277, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-form__tools {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* line 2283, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-form__icon-btn {
  border: 1px solid #d5d9e7;
  background: #f2f3f9;
  color: #8a90a7;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  font-size: 20px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: color 0.15s ease, border-color 0.15s ease;
}
/* line 2299, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-form__icon-btn:hover {
  color: #2C2D50;
  border-color: #c5c9d8;
}

/* line 2305, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-form__record-btn {
  border: 1px solid #d5d9e7;
  background: #f2f3f9;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  cursor: pointer;
  padding: 0;
  color: #8a90a7;
  position: relative;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}
/* line 2317, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-form__record-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  transform: translate(-50%, -50%);
  background-color: currentColor;
  -webkit-mask: url(/assets/icon-audio-record-start-ffdf82a54617dab2563540210ce05a0ad5655662e0c664bc68a2e36aea96064c.svg) center/contain no-repeat;
  mask: url(/assets/icon-audio-record-start-ffdf82a54617dab2563540210ce05a0ad5655662e0c664bc68a2e36aea96064c.svg) center/contain no-repeat;
}
/* line 2330, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-form__record-btn:hover:not(:disabled) {
  border-color: #c5c9d8;
  background-color: #f2f3f9;
  color: #2C2D50;
}
/* line 2336, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-form__record-btn:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

/* line 2342, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-form__record-btn--recording {
  background-color: #ffd9d6;
  border-color: #f0aaa2;
  color: #c64d43;
}
/* line 2347, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-form__record-btn--recording::before {
  -webkit-mask-image: url(/assets/icon-audio-record-stop-fa30825b9c68b613a035e1eea2e7e582281cf2212a2938a305e2c68e204a8a23.svg);
  mask-image: url(/assets/icon-audio-record-stop-fa30825b9c68b613a035e1eea2e7e582281cf2212a2938a305e2c68e204a8a23.svg);
}
/* line 2352, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-form__record-btn--recording:hover:not(:disabled) {
  background-color: #ffd9d6;
  border-color: #f0aaa2;
  color: #c64d43;
}

/* line 2359, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-form__send-btn {
  border: none;
  background: #3BAB38;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  padding: 0;
  transition: background 0.15s ease;
}
/* line 2375, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
.chat-form__send-btn:hover {
  background: #308c2e;
}

@media (max-width: 1024px) {
  /* line 2381, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
  .chat-sidebar {
    width: 350px;
    min-width: 350px;
  }

  /* line 2386, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
  .chat-sidebar__header {
    padding-top: 30px;
  }
  /* line 2389, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
  .chat-sidebar__header h1 {
    font-size: 2rem;
  }

  /* line 2394, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
  .chat-sidebar__search {
    --chat-search-padding-y: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@media (max-width: 800px) {
  /* line 2402, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
  .chat-sidebar {
    width: 100%;
    min-width: 0;
    border-right: none;
  }

  /* line 2408, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
  .chat-sidebar__header h1 {
    font-size: 2.4rem;
    font-weight: 500;
  }

  /* line 2413, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
  .chat-sidebar__compose-btn {
    width: 44px;
    height: 44px;
    font-size: 18px;
    border-radius: 10px;
  }

  /* line 2420, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
  .chat-main {
    display: none;
  }

  /* line 2425, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
  .chat-layout--panel-active .chat-sidebar {
    display: none;
  }
  /* line 2429, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
  .chat-layout--panel-active .chat-main {
    display: flex;
  }

  /* line 2434, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
  .chat-panel__back-btn {
    display: inline-flex;
  }

  /* line 2438, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
  .chat-panel__header {
    gap: 14px;
    padding: 18px 16px;
  }

  /* line 2443, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
  .chat-panel__header-actions {
    gap: 8px;
  }

  /* line 2447, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
  .chat-panel__participants-popover {
    right: 0;
    min-width: 200px;
    max-width: min(240px, calc(100vw - 24px));
  }

  /* line 2453, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
  .chat-panel__header--compose {
    display: grid;
    grid-template-columns: auto auto minmax(0, 1fr);
    column-gap: 12px;
  }

  /* line 2459, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
  .chat-panel__header--compose .chat-panel__back-btn {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    height: 44px;
    white-space: nowrap;
    line-height: 1;
  }

  /* line 2468, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
  .chat-panel__header--compose .chat-panel__back-btn i {
    line-height: 1;
  }

  /* line 2472, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
  .chat-panel__header--compose .chat-compose__search-input {
    height: 44px;
    padding: 0 12px;
    font-size: 16px;
    background: #fff;
  }

  /* line 2479, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
  .chat-panel__messages {
    padding: 16px;
  }

  /* line 2483, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
  .chat-settings__item {
    padding: 12px 16px;
  }

  /* line 2487, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
  .chat-panel__overflow {
    position: relative;
  }

  /* line 2491, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
  .chat-panel__overflow--collapsible .chat-panel__overflow-action--mobile-hidden {
    display: none !important;
  }

  /* line 2495, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
  .chat-panel__overflow--collapsible .chat-panel__header-action.chat-panel__overflow-toggle {
    display: flex !important;
  }

  /* line 2499, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
  .chat-panel__overflow--collapsible .chat-panel__overflow-menu {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 180px;
    padding: 6px 0;
    border: 1px solid rgba(222, 223, 224, 0.9);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    z-index: 20;
  }

  /* line 2513, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
  .chat-panel__overflow--open .chat-panel__overflow-menu {
    display: block;
  }

  /* line 2517, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
  .chat-panel__overflow-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    color: #2C2D50;
    font-family: "Catamaran", sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
  }
  /* line 2529, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
  .chat-panel__overflow-menu-item i {
    width: 18px;
    text-align: center;
    color: #687393;
    font-size: 0.9rem;
  }
  /* line 2536, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
  .chat-panel__overflow-menu-item:hover, .chat-panel__overflow-menu-item:focus {
    background: #f4f6f4;
    text-decoration: none;
    color: #2C2D50;
  }

  /* line 2544, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
  .chat-message {
    --chat-received-actions-space: 0px;
  }

  /* line 2548, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
  .chat-message--received,
  .chat-message--sent {
    max-width: 85%;
  }

  /* line 2553, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
  .chat-form {
    padding: 10px 16px calc(env(safe-area-inset-bottom, 0px) + 6px);
  }

  /* line 2557, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
  .chat-form__composer {
    min-height: 0;
    padding: 10px 12px;
  }

  /* line 2562, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
  .chat-form__textarea {
    min-height: 32px;
    font-size: 16px;
  }

  /* line 2567, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
  .chat-sidebar__search input,
  .chat-compose__search-input {
    font-size: 16px;
  }

  /* line 2572, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
  .chat-conversation-item__name {
    font-size: 1.05rem;
  }

  /* line 2576, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
  .chat-conversation-item__time {
    font-size: 0.82rem;
  }

  /* line 2580, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
  .chat-conversation-item__preview {
    font-size: 0.9rem;
  }

  /* line 2584, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
  .chat-conversation-item__unread-badge {
    font-size: 0.8rem;
    min-width: 20px;
    height: 20px;
  }

  /* line 2590, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
  .chat-panel__header-info h2 {
    font-size: 1.6rem;
  }

  /* line 2594, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
  .chat-timestamp {
    font-size: 1rem;
  }

  /* line 2598, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
  .chat-system-message__text {
    font-size: 1.1rem;
  }

  /* line 2602, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
  .chat-message__bubble p {
    font-size: 1.2rem;
    line-height: 1.4;
  }

  /* line 2607, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
  .chat-message__document-link,
  .chat-message__document-icon {
    font-size: 1.1rem;
  }

  /* line 2612, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
  .chat-message__document-size {
    font-size: 0.95rem;
  }

  /* line 2616, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
  .chat-message__translation-toggle {
    font-size: 0.92rem;
  }

  /* line 2620, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
  .chat-message__reply-sender {
    font-size: 0.82rem;
  }

  /* line 2624, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
  .chat-message__reply-text {
    font-size: 0.95rem;
  }

  /* line 2629, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
  .chat-message-reactions {
    gap: 8px;
  }

  /* line 2633, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
  .chat-message__bubble-row {
    gap: 10px;
  }

  /* line 2637, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
  .chat-message-reactions--interactive .chat-message-reactions__anchor {
    position: relative;
    display: none;
    gap: 8px;
    width: 100%;
    margin-top: 8px;
    justify-content: flex-start;
  }

  /* line 2646, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
  .chat-message-reactions--interactive .chat-message__bubble-row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
  }

  /* line 2652, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
  .chat-message-reactions--interactive .chat-message__bubble {
    width: 100%;
  }

  /* line 2656, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
  .chat-message-reactions--interactive.is-mobile-active .chat-message-reactions__anchor,
  .chat-message-reactions--interactive.is-open .chat-message-reactions__anchor {
    display: flex;
  }

  /* line 2661, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
  .chat-message-reactions--interactive.is-mobile-active .chat-message-reactions__list,
  .chat-message-reactions--interactive.is-open .chat-message-reactions__list {
    display: none;
  }

  /* line 2666, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
  .chat-message-reactions__toggle {
    width: 34px;
    height: 34px;
    font-size: 1.1rem;
  }

  /* line 2672, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
  .chat-message-reactions__option {
    font-size: 1.6rem;
    padding: 6px;
  }

  /* line 2677, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
  .chat-message-reactions__picker {
    padding: 10px;
    gap: 6px;
  }

  /* line 2682, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
  .chat-reaction-chip {
    font-size: 1rem;
    padding: 5px 10px;
    gap: 5px;
  }

  /* line 2688, /Users/jesperlugner/Documents/code/pml/pml_ruby/app/assets/stylesheets/chat.css.scss */
  .chat-reaction-chip__emoji {
    font-size: 1.2rem;
  }
}
