.ResponsibleDropdown {
  width: 200px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12), 0 3px 6px -4px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}
.ResponsibleDropdown__search {
  padding: 6px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.ResponsibleDropdown__search .ant-input-affix-wrapper-sm {
  font-size: 12px;
  border-radius: 6px;
}
.ResponsibleDropdown__search .ant-input-sm {
  font-size: 12px;
}
.ResponsibleDropdown__search-icon {
  font-size: 11px;
  color: rgba(0, 0, 0, 0.35);
}
.ResponsibleDropdown__list {
  max-height: 240px;
  overflow-y: auto;
  overflow-x: hidden;
}
.ResponsibleDropdown__list::-webkit-scrollbar {
  width: 4px;
}
.ResponsibleDropdown__list::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.15);
}
.ResponsibleDropdown__list::-webkit-scrollbar-track {
  background: transparent;
}
.ResponsibleDropdown__item {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  padding: 7px 10px;
  box-sizing: border-box;
  cursor: pointer;
  transition: background-color 0.1s;
  user-select: none;
}
.ResponsibleDropdown__item:hover {
  background: rgba(0, 0, 0, 0.04);
}
.ResponsibleDropdown__item--selected {
  background: #e6f4ff;
}
.ResponsibleDropdown__item--selected:hover {
  background: #d6ebff;
}
.ResponsibleDropdown__item-name {
  flex: 1;
  min-width: 0;
  font-size: 12px;
  line-height: 18px;
  color: rgba(0, 0, 0, 0.88);
  word-break: break-word;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ResponsibleDropdown__item--selected .ResponsibleDropdown__item-name {
  color: #1677ff;
}
.ResponsibleDropdown__item-check {
  flex-shrink: 0;
  margin-top: 3px;
  font-size: 10px;
  color: #1677ff;
}
.ResponsibleDropdown__empty {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.25);
  user-select: none;
}
.TaskDatePicker {
  display: flex;
  align-items: stretch;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}
.TaskDatePicker__presets {
  display: flex;
  flex-direction: column;
  width: 152px;
  padding: 6px;
  flex-shrink: 0;
}
.TaskDatePicker__preset {
  display: block;
  width: 100%;
  padding: 5px 8px;
  font-size: 12px;
  line-height: 18px;
  color: rgba(0, 0, 0, 0.88);
  text-align: left;
  background: none;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.12s, color 0.12s;
}
.TaskDatePicker__preset:hover {
  background: rgba(0, 0, 0, 0.04);
}
.TaskDatePicker__preset--active {
  background: #e6f4ff;
  color: #1677ff;
  font-weight: 500;
}
.TaskDatePicker__divider {
  width: 1px;
  flex-shrink: 0;
  background: rgba(0, 0, 0, 0.06);
  align-self: stretch;
}
.TaskDatePicker__calendar {
  padding: 10px 8px;
  flex-shrink: 0;
}
.TaskDatePicker__calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}
.TaskDatePicker__month-label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.88);
}
.TaskDatePicker__nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  font-size: 10px;
  color: rgba(0, 0, 0, 0.45);
  background: none;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.12s, color 0.12s;
}
.TaskDatePicker__nav-btn:hover {
  background: rgba(0, 0, 0, 0.06);
  color: rgba(0, 0, 0, 0.88);
}
.TaskDatePicker__weekdays {
  display: grid;
  grid-template-columns: repeat(7, 30px);
  margin-bottom: 2px;
}
.TaskDatePicker__weekday {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 26px;
  font-size: 11px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.35);
  user-select: none;
}
.TaskDatePicker__grid {
  display: grid;
  grid-template-columns: repeat(7, 30px);
}
.TaskDatePicker__cell {
  position: relative;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.TaskDatePicker__cell--empty {
  pointer-events: none;
}
.TaskDatePicker__cell::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 26px;
  background: transparent;
  z-index: 0;
}
.TaskDatePicker__cell--range-start::before {
  left: 50%;
  right: 0;
  background: #e6f4ff;
}
.TaskDatePicker__cell--range-end::before {
  left: 0;
  right: 50%;
  background: #e6f4ff;
}
.TaskDatePicker__cell--in-range::before {
  left: 0;
  right: 0;
  background: #e6f4ff;
}
.TaskDatePicker__cell-btn {
  position: relative;
  z-index: 1;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  line-height: 1;
  color: rgba(0, 0, 0, 0.88);
  background: none;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.1s, color 0.1s;
}
.TaskDatePicker__cell-btn:hover {
  background: rgba(0, 0, 0, 0.06);
}
.TaskDatePicker__cell--today .TaskDatePicker__cell-btn {
  font-weight: 600;
}
.TaskDatePicker__cell--today .TaskDatePicker__cell-btn::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
}
.TaskDatePicker__cell--selected .TaskDatePicker__cell-btn, .TaskDatePicker__cell--range-start .TaskDatePicker__cell-btn, .TaskDatePicker__cell--range-end .TaskDatePicker__cell-btn {
  background: #1677ff;
  color: #fff;
}
.TaskDatePicker__cell--selected .TaskDatePicker__cell-btn:hover, .TaskDatePicker__cell--range-start .TaskDatePicker__cell-btn:hover, .TaskDatePicker__cell--range-end .TaskDatePicker__cell-btn:hover {
  background: #4096ff;
}
.TaskDatePicker__cell--in-range .TaskDatePicker__cell-btn {
  color: rgba(0, 0, 0, 0.88);
}
.TaskDatePicker__cell--in-range .TaskDatePicker__cell-btn:hover {
  background: rgba(0, 0, 0, 0.06);
}
.TaskDatePicker__time {
  display: flex;
  flex-direction: column;
  width: 130px;
  padding: 10px 10px 12px;
  flex-shrink: 0;
  gap: 10px;
}
.TaskDatePicker__allday {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  cursor: pointer;
  user-select: none;
}
.TaskDatePicker__allday-text {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.65);
  white-space: nowrap;
}
.TaskDatePicker__toggle {
  position: relative;
  width: 30px;
  height: 18px;
  border-radius: 9px;
  background: rgba(0, 0, 0, 0.15);
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s;
  padding: 0;
}
.TaskDatePicker__toggle::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s;
}
.TaskDatePicker__toggle--on {
  background: #1677ff;
}
.TaskDatePicker__toggle--on::after {
  transform: translateX(12px);
}
.TaskDatePicker__time-fields {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.TaskDatePicker__time-row {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.TaskDatePicker__time-label {
  font-size: 11px;
  color: rgba(0, 0, 0, 0.4);
  user-select: none;
}
.TaskDatePicker__time-input {
  width: 100%;
  padding: 5px 7px;
  font-size: 13px;
  font-family: inherit;
  font-variant-numeric: tabular-nums;
  color: rgba(0, 0, 0, 0.88);
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 6px;
  outline: none;
  cursor: pointer;
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
  box-sizing: border-box;
}
.TaskDatePicker__time-input:hover {
  border-color: rgba(0, 0, 0, 0.25);
}
.TaskDatePicker__time-input:focus {
  border-color: #1677ff;
  background: #fff;
  box-shadow: 0 0 0 2px rgba(22, 119, 255, 0.12);
}
.TaskDatePicker__time-input::-webkit-calendar-picker-indicator {
  display: none;
}
.TaskDatePicker__time-input::-webkit-datetime-edit-fields-wrapper {
  padding: 0;
}
.TaskDatePicker__duration {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 2px;
}
.TaskDatePicker__duration-btn {
  padding: 3px 7px;
  font-size: 11px;
  color: rgba(0, 0, 0, 0.6);
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.12s, color 0.12s, border-color 0.12s;
}
.TaskDatePicker__duration-btn:hover {
  background: #e6f4ff;
  color: #1677ff;
  border-color: #91caff;
}
.TaskTypeDropdown {
  width: 240px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12), 0 3px 6px -4px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  box-sizing: border-box;
}
.TaskTypeDropdown__list {
  max-height: 220px;
  overflow-y: auto;
  padding: 4px 0;
  box-sizing: border-box;
}
.TaskTypeDropdown__list::-webkit-scrollbar {
  width: 4px;
}
.TaskTypeDropdown__list::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: rgba(0, 0, 0, 0.15);
}
.TaskTypeDropdown__empty {
  padding: 10px 12px;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.35);
  text-align: center;
}
.TaskTypeDropdown__item {
  display: flex;
  align-items: center;
  box-sizing: border-box;
  gap: 6px;
  width: 100%;
  padding: 2px 10px 2px 6px;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.88);
  background: none;
  cursor: pointer;
  text-align: left;
  transition: background-color 0.1s;
  outline: none;
}
.TaskTypeDropdown__item:hover {
  background: rgba(0, 0, 0, 0.04);
}
.TaskTypeDropdown__item:focus-visible {
  box-shadow: inset 0 0 0 2px #1677ff;
}
.TaskTypeDropdown__item--selected {
  color: #1677ff;
  background: #e6f4ff;
}
.TaskTypeDropdown__item--selected:hover {
  background: #cce8ff;
}
.TaskTypeDropdown__item-name {
  flex: 1;
  min-width: 0;
  padding: 2px 0;
  overflow: hidden;
  font-size: 12px;
  color: inherit;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.TaskTypeDropdown__item-name-input {
  flex: 1;
  min-width: 0;
  padding: 2px 0;
  font-size: 12px;
  color: inherit;
  background: transparent;
  border: none;
  border-bottom: 1px solid #1677ff;
  outline: none;
  transition: border-color 0.15s;
}
.TaskTypeDropdown__item-actions {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}
.TaskTypeDropdown__item-action {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  padding: 0;
  font-size: 11px;
  color: rgba(0, 0, 0, 0.4);
  background: none;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: color 0.12s, background-color 0.12s;
}
.TaskTypeDropdown__item-action:hover {
  color: rgba(0, 0, 0, 0.85);
  background: rgba(0, 0, 0, 0.06);
}
.TaskTypeDropdown__item-action--danger:hover {
  color: #ff4d4f;
  background: rgba(255, 77, 79, 0.1);
}
.TaskTypeDropdown__item-action:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.TaskTypeDropdown__item-check {
  flex-shrink: 0;
  font-size: 11px;
  color: #1677ff;
}
.TaskTypeDropdown__divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.06);
}
.TaskTypeDropdown__new {
  padding: 4px 8px 6px;
}
.TaskTypeDropdown__new-row {
  display: flex;
  align-items: center;
  gap: 6px;
}
.TaskTypeDropdown__new-input {
  flex: 1;
  min-width: 0;
  padding: 4px 0;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.65);
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  outline: none;
  transition: border-color 0.15s;
}
.TaskTypeDropdown__new-input::placeholder {
  color: rgba(0, 0, 0, 0.3);
}
.TaskTypeDropdown__new-input:focus {
  border-bottom-color: #1677ff;
}
.TaskTypeDropdown__new-input:disabled {
  opacity: 0.5;
}
.TaskTypeDropdown__new-create-btn {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  padding: 0;
  font-size: 11px;
  color: #fff;
  background: #1677ff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.12s, opacity 0.12s;
}
.TaskTypeDropdown__new-create-btn:hover {
  background: #4096ff;
}
.TaskTypeDropdown__new-create-btn:disabled {
  background: rgba(0, 0, 0, 0.12);
  color: rgba(0, 0, 0, 0.35);
  cursor: not-allowed;
}
.TaskTypeDropdown__icon-btn {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 6px;
  cursor: pointer;
  font-size: 11px;
  transition: background-color 0.1s, border-color 0.1s;
}
.TaskTypeDropdown__icon-btn:hover {
  background: rgba(0, 0, 0, 0.08);
}
.TaskTypeDropdown__icon-btn--inline {
  background: transparent;
  border-color: transparent;
}
.TaskTypeDropdown__icon-btn--inline:hover {
  background: rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.1);
}
.TaskTypeDropdown__icon-btn--placeholder {
  color: rgba(0, 0, 0, 0.35);
}
.TaskTypeDropdown__color-row {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px 2px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  margin-bottom: 2px;
}
.TaskTypeDropdown__color-wrap {
  position: relative;
  flex-shrink: 0;
}
.TaskTypeDropdown__color-swatch {
  display: block;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 6px;
  cursor: pointer;
  padding: 0;
}
.TaskTypeDropdown__color-native {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  opacity: 0;
  pointer-events: none;
}
.TaskTypeDropdown__hex-label {
  font-size: 11px;
  color: rgba(0, 0, 0, 0.4);
  flex-shrink: 0;
}
.TaskTypeDropdown__hex-input {
  width: 80px;
  padding: 3px 6px;
  font-size: 11px;
  font-family: monospace;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  outline: none;
  color: rgba(0, 0, 0, 0.88);
  background: #fff;
}
.TaskTypeDropdown__hex-input:focus {
  border-color: #1677ff;
  box-shadow: 0 0 0 2px rgba(22, 119, 255, 0.1);
}
.TaskTypeDropdown--picker {
  width: 260px;
}
.TaskTypeDropdown__picker-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.TaskTypeDropdown__back-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 0;
  background: none;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.65);
  flex-shrink: 0;
  transition: background-color 0.1s;
}
.TaskTypeDropdown__back-btn:hover {
  background: rgba(0, 0, 0, 0.06);
}
.TaskTypeDropdown__picker-title {
  font-size: 12px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.88);
}
.TaskTypeDropdown__picker-search {
  padding: 8px 12px 4px;
}
.TaskTypeDropdown__icon-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 2px;
  padding: 4px 8px 10px;
  max-height: 240px;
  overflow-x: hidden;
  overflow-y: auto;
}
.TaskTypeDropdown__icon-grid::-webkit-scrollbar {
  width: 4px;
}
.TaskTypeDropdown__icon-grid::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: rgba(0, 0, 0, 0.15);
}
.TaskTypeDropdown__icon-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  background: none;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  font-size: 13px;
  transition: background-color 0.1s, border-color 0.1s;
}
.TaskTypeDropdown__icon-cell:hover {
  background: rgba(0, 0, 0, 0.05);
}
.TaskTypeDropdown__icon-cell--selected {
  border-color: #1677ff;
  background: #e6f4ff;
}
.TaskTypeDropdown__icon-empty {
  grid-column: 1/-1;
  padding: 12px 0;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.35);
  text-align: center;
}
.ComposerModeSelector__trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  max-width: 100%;
  height: 24px;
  padding: 0 8px;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.65);
  background: rgba(0, 0, 0, 0.04);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: color 0.15s, background-color 0.15s;
}
.ComposerModeSelector__trigger:hover {
  color: #1677ff;
  background: rgba(22, 119, 255, 0.1);
}
.ComposerModeSelector__trigger-icon {
  flex-shrink: 0;
  font-size: 13px;
}
.ComposerModeSelector__trigger-label {
  overflow: hidden;
  font-weight: 500;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.ComposerModeSelector__trigger-caret {
  flex-shrink: 0;
  font-size: 9px;
  opacity: 0.5;
}
@container message-composer (max-width: 360px) {
  .ComposerModeSelector__trigger-label {
    display: none;
  }
}
.ComposerModeSelector__dropdown {
  min-width: 200px;
  padding: 4px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12), 0 3px 6px -4px rgba(0, 0, 0, 0.12);
}
.ComposerModeSelector__option {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 6px 10px;
  background: none;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.88);
  text-align: left;
  transition: background-color 0.15s;
}
.ComposerModeSelector__option:hover {
  background: rgba(0, 0, 0, 0.04);
}
.ComposerModeSelector__option--active {
  background: rgba(22, 119, 255, 0.08);
  color: #1677ff;
}
.ComposerModeSelector__option-icon {
  flex-shrink: 0;
  font-size: 14px;
  color: inherit;
}
.ComposerModeSelector__option-label {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.LeadEmojiPicker {
  width: min(320px, 100vw - 32px);
  min-width: 0;
}
.LeadEmojiPicker__popover {
  max-width: calc(100vw - 16px);
}
.LeadEmojiPicker__popover-body {
  padding: 8px;
}
.LeadEmojiPicker__search {
  margin-bottom: 6px;
  font-size: 12px;
}
.LeadEmojiPicker__categories {
  display: grid;
  grid-template-columns: repeat(9, minmax(0, 1fr));
  gap: 3px;
  margin-bottom: 6px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(5, 5, 5, 0.06);
}
.LeadEmojiPicker__category {
  width: 100%;
  height: 26px;
  padding: 0;
  font-size: 15px;
  line-height: 26px;
  text-align: center;
  background: transparent;
  border: 0;
  border-radius: 4px;
  cursor: pointer;
}
.LeadEmojiPicker__category:hover, .LeadEmojiPicker__category:focus-visible, .LeadEmojiPicker__category--active {
  background: rgba(22, 119, 255, 0.1);
  outline: none;
}
.LeadEmojiPicker__content {
  max-height: min(300px, 46vh);
  overflow-y: auto;
  overscroll-behavior: contain;
}
.LeadEmojiPicker__section {
  min-width: 0;
}
.LeadEmojiPicker__section + .LeadEmojiPicker__section {
  margin-top: 8px;
}
.LeadEmojiPicker__section-title {
  position: sticky;
  top: 0;
  z-index: 1;
  padding: 2px 0 5px;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.55);
  background: #fff;
}
.LeadEmojiPicker__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(28px, 1fr));
  gap: 4px;
  min-width: 0;
}
.LeadEmojiPicker__item {
  width: 100%;
  min-width: 0;
  height: 28px;
  padding: 0;
  font-size: 18px;
  line-height: 28px;
  text-align: center;
  background: transparent;
  border: 0;
  border-radius: 4px;
  cursor: pointer;
}
.LeadEmojiPicker__item:hover, .LeadEmojiPicker__item:focus-visible {
  background: rgba(0, 0, 0, 0.06);
  outline: none;
}
.LeadEmojiPicker__empty {
  margin: 12px 0 8px;
}
.LeadEmojiPicker__empty .ant-empty-description {
  font-size: 12px;
}
@media screen and (max-width: 420px) {
  .LeadEmojiPicker {
    width: min(288px, 100vw - 24px);
  }
  .LeadEmojiPicker__categories {
    grid-template-columns: repeat(9, 24px);
    overflow-x: auto;
  }
  .LeadEmojiPicker__content {
    max-height: min(260px, 44vh);
  }
}
.LeadMessageAttachments {
  position: relative;
  display: flex;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
.LeadMessageAttachments__row, .LeadMessageAttachments__row--with-overflow {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
  min-width: 0;
  box-sizing: border-box;
}
.LeadMessageAttachments__row {
  width: 100%;
  flex-wrap: nowrap;
}
.LeadMessageAttachments__row--with-overflow {
  display: grid;
  grid-template-columns: 1fr 0.5fr;
}
.LeadMessageAttachments__item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  flex: 0 1 auto;
  max-width: min(180px, 100%);
  min-width: 0;
  box-sizing: border-box;
  gap: 3px;
  padding: 2px 3px 2px 5px;
  background: #f5f5f5;
  border: 1px solid rgba(5, 5, 5, 0.06);
  border-radius: 5px;
}
.LeadMessageAttachments__icon, .LeadMessageAttachments__name, .LeadMessageAttachments__size {
  font-size: 10px;
  line-height: 1.15;
}
.LeadMessageAttachments__name {
  min-width: 0;
}
.LeadMessageAttachments__size {
  white-space: nowrap;
}
.LeadMessageAttachments__remove {
  width: 16px;
  min-width: 16px;
  height: 16px;
  padding: 0;
}
.LeadMessageAttachments__remove .anticon {
  font-size: 10px;
}
.LeadMessageAttachments__overflow {
  flex: 0 0 auto;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  height: 20px;
  padding: 0 6px;
  overflow: hidden;
  font-size: 10px;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
  background: #f5f5f5;
  border: 1px solid rgba(5, 5, 5, 0.06);
  border-radius: 5px;
}
.LeadMessageAttachments__popover .ant-popover-inner {
  padding: 6px;
}
.LeadMessageAttachments__popover-body {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
.LeadMessageAttachments__popover-list {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  max-height: min(220px, 45vh);
  min-width: 0;
  overflow-y: auto;
}
.LeadMessageAttachments__popover-list::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
.LeadMessageAttachments__popover-list::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: #b1c4df;
}
.LeadMessageTemplatesDropdown {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: calc(100% + 4px);
  left: 0;
  display: flex;
  flex-direction: column;
  max-height: 220px;
  overflow: auto;
  background: #fff;
  border: 1px solid rgba(5, 5, 5, 0.12);
  border-radius: 6px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}
.LeadMessageTemplatesDropdown__loading {
  display: flex;
  justify-content: center;
  padding: 12px;
}
.LeadMessageTemplatesDropdown__item {
  display: grid;
  grid-template-columns: minmax(96px, 140px) minmax(0, 1fr);
  gap: 8px;
  width: 100%;
  min-width: 0;
  padding: 7px 10px;
  color: inherit;
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.LeadMessageTemplatesDropdown__item:hover, .LeadMessageTemplatesDropdown__item:focus-visible {
  background: rgba(0, 0, 0, 0.04);
  outline: none;
}
.LeadMessageTemplatesDropdown__name, .LeadMessageTemplatesDropdown__message {
  min-width: 0;
  font-size: 12px;
  line-height: 16px;
}
.TaskComposer {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.TaskComposer__chips {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  padding: 6px 8px 4px;
}
.TaskComposer__chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  height: 20px;
  padding: 0 7px;
  font-size: 11px;
  font-weight: 450;
  color: rgba(0, 0, 0, 0.65);
  background: rgba(0, 0, 0, 0.05);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.12s, color 0.12s;
  user-select: none;
}
.TaskComposer__chip:hover {
  background: rgba(0, 0, 0, 0.09);
  color: rgba(0, 0, 0, 0.88);
}
.TaskComposer__chip--muted {
  color: rgba(0, 0, 0, 0.35);
}
.TaskComposer__chip--open {
  background: #e6f4ff;
  color: #1677ff;
}
.TaskComposer__chip-icon {
  font-size: 11px;
  color: inherit;
  flex-shrink: 0;
}
.TaskComposer__textarea {
  padding: 2px 8px 6px;
  font-size: 12px;
  line-height: 16px;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  resize: none;
}
.TaskComposer__textarea:hover, .TaskComposer__textarea:focus {
  background: transparent;
  border: none;
  box-shadow: none;
}
.TaskComposer__textarea::-webkit-scrollbar {
  width: 4px;
}
.TaskComposer__textarea::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: #b1c4df;
}
.TaskComposer__popup-stub {
  min-width: 160px;
  min-height: 2px;
}
.TaskComposer__dropdown-stub {
  min-width: 160px;
  padding: 4px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12), 0 3px 6px -4px rgba(0, 0, 0, 0.12);
}
.MessageComposer {
  container-type: inline-size;
  container-name: message-composer;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.MessageComposer__input-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 6px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.MessageComposer__input-wrapper:hover {
  border-color: #4096ff;
}
.MessageComposer__input-wrapper:focus-within {
  border-color: #1677ff;
  box-shadow: 0 0 0 2px rgba(5, 145, 255, 0.1);
}
.MessageComposer__input-wrapper--disabled {
  background: rgba(0, 0, 0, 0.04);
}
.MessageComposer__input-wrapper--disabled:hover {
  border-color: #d9d9d9;
}
.MessageComposer__input-wrapper--no-integrations:hover {
  border-color: #d9d9d9;
}
.MessageComposer__input-wrapper--no-integrations:focus-within {
  border-color: #d9d9d9;
  box-shadow: none;
}
.MessageComposer__toolbar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 4px 8px;
  min-width: 0;
}
.MessageComposer__toolbar-selectors {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  gap: 8px;
  min-width: 0;
}
.MessageComposer__input-area {
  position: relative;
  min-width: 0;
}
.MessageComposer__input {
  width: 100%;
  padding: 6px 8px;
  font-size: 12px;
  line-height: 16px;
  resize: none;
  border: 0;
  box-shadow: none;
}
.MessageComposer__input:focus, .MessageComposer__input:hover {
  border: 0;
  box-shadow: none;
}
.MessageComposer__input::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
.MessageComposer__input::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: #b1c4df;
}
.MessageComposer__input-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-width: 0;
  padding: 3px 3px 3px 6px;
}
.MessageComposer__char-count {
  flex: 0 0 auto;
  font-size: 11px;
  color: rgba(0, 0, 0, 0.35);
  white-space: nowrap;
  user-select: none;
}
.MessageComposer__char-count--limit {
  color: #ff4d4f;
}
.MessageComposer .IntegrationSelector {
  flex: 1 1 auto;
}
.MessageComposer__actions {
  display: flex;
  flex-wrap: wrap;
  flex: 0 0 auto;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  min-width: 0;
}
.MessageComposer__actions--end {
  flex: 1 1 auto;
}
.MessageComposer__file-input {
  display: none;
}
.MessageComposer__ai-button.ant-btn:not(:disabled) {
  border-color: #d6c8ff;
  color: #6b4fa3;
}
.MessageComposer__ai-button.ant-btn:not(:disabled):hover, .MessageComposer__ai-button.ant-btn:not(:disabled):focus-visible {
  border-color: #6b4fa3;
  color: #6b4fa3;
  background-color: #f3f0ff;
}
.MessageComposer__ai-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 2px 4px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.2px;
}
.MessageComposer__ai-sparkle {
  position: absolute;
  background-color: currentcolor;
  clip-path: polygon(50% 0%, 61% 39%, 100% 50%, 61% 61%, 50% 100%, 39% 61%, 0% 50%, 39% 39%);
  animation: MessageComposer-ai-sparkle 2.4s ease-in-out infinite;
}
.MessageComposer__ai-sparkle--top {
  top: -2px;
  right: 0;
  width: 6px;
  height: 6px;
}
.MessageComposer__ai-sparkle--bottom {
  bottom: 0px;
  left: 0;
  width: 4px;
  height: 4px;
  animation-delay: 1.2s;
}
@media (prefers-reduced-motion: reduce) {
  .MessageComposer__ai-sparkle {
    animation: none;
  }
}
.MessageComposer__no-integration-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: inherit;
}
.MessageComposer__no-integration-hint {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  font-size: 11px;
  color: rgba(0, 0, 0, 0.55);
  text-align: center;
  line-height: 1.3;
}
.MessageComposer__no-integration-actions {
  display: flex;
  flex: 1 1 auto;
  justify-content: center;
  padding: 3px 3px 3px 6px;
}
@media screen and (max-width: 1200px) {
  .MessageComposer {
    gap: 5px;
  }
  .MessageComposer__toolbar {
    gap: 4px 6px;
  }
  .MessageComposer__input-footer {
    gap: 6px;
    padding-right: 4px;
    padding-left: 6px;
  }
  .MessageComposer__actions {
    gap: 5px;
  }
}
@media screen and (max-width: 700px) {
  .MessageComposer__input-footer {
    flex-direction: row;
    align-items: center;
  }
}
@container message-composer (max-width: 640px) {
  .MessageComposer__toolbar {
    row-gap: 3px;
  }
  .MessageComposer__toolbar .ActionButtons {
    order: 1;
    flex: 1 1 100%;
  }
  .MessageComposer__toolbar-selectors {
    order: 2;
    flex: 1 1 100%;
  }
}

@keyframes MessageComposer-ai-sparkle {
  0%, 100% {
    opacity: 0.35;
    transform: scale(0.7);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
}

/*# sourceMappingURL=main~11.629c93ed.css.map*/