.TaskPreviewItem {
  min-width: 0;
  padding: 5px 7px;
  overflow: hidden;
  background: #f7fbff;
  border: 1px solid #f0f0f0;
  border-left: 3px solid #1677ff;
  border-radius: 6px;
}
.TaskPreviewItem--overdue {
  background: #fff7f7;
  border-left-color: #ff4d4f;
}
.TaskPreviewItem--pending {
  background: #fffaf0;
  border-left-color: #f0ad4e;
}
.TaskPreviewItem--active {
  background: #f7fbff;
  border-left-color: #1677ff;
}
.TaskPreviewItem--completed {
  background: #f8fff8;
  border-left-color: #52c41a;
}
.TaskPreviewItem--compact {
  padding: 4px 7px;
}
.TaskPreviewItem--clickable {
  cursor: pointer;
}
.TaskPreviewItem--clickable:hover {
  border-color: #d9d9d9;
}
.TaskPreviewItem--clickable:focus-visible {
  outline: 2px solid #1677ff;
  outline-offset: 1px;
}
.TaskPreviewItem__content {
  min-width: 0;
}
.TaskPreviewItem__title, .TaskPreviewItem__range, .TaskPreviewItem__meta {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.TaskPreviewItem__title {
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
  color: rgba(0, 0, 0, 0.88);
}
.TaskPreviewItem__range, .TaskPreviewItem__meta {
  margin-top: 1px;
  font-size: 10px;
  line-height: 14px;
  color: rgba(0, 0, 0, 0.55);
}
.TaskPreviewItem__label {
  font-weight: 600;
  color: rgba(0, 0, 0, 0.65);
}
@media screen and (max-width: 1000px) {
  .TaskPreviewItem {
    padding: 4px 7px;
  }
  .TaskPreviewItem__title {
    font-size: 11px;
    line-height: 14px;
  }
  .TaskPreviewItem__range, .TaskPreviewItem__meta {
    font-size: 10px;
    line-height: 13px;
  }
}
.TasksPreview {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.TasksPreview__header {
  font-size: 11px;
  font-weight: 600;
  line-height: 14px;
  color: rgba(0, 0, 0, 0.65);
}
.TasksPreview__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 5px;
  min-width: 0;
}
.TasksPreview__empty {
  margin: 0;
}
.TasksPreview__toggle {
  align-self: flex-start;
  height: auto;
  padding: 0;
  font-size: 11px;
  line-height: 14px;
}
.TasksPreview__popover-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: min(520px, 100vw - 48px);
  max-height: min(320px, 48vh);
  min-width: 0;
  overflow: auto;
}
.TasksPreview__popover {
  max-width: calc(100% - 24px);
}
.TasksPreview__popover-body {
  padding: 8px;
}
@media screen and (max-width: 1200px) {
  .TasksPreview {
    gap: 3px;
  }
  .TasksPreview__list {
    gap: 4px;
  }
}
@media screen and (max-width: 1000px) {
  .TasksPreview__list {
    grid-template-columns: minmax(0, 1fr);
  }
}
.UserContactMethods {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.UserContactMethods__title {
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  line-height: 14px;
  color: rgba(0, 0, 0, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.UserContactMethods__list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.UserContactMethods__row {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  min-width: 0;
}
.UserContactMethods__icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: rgba(0, 0, 0, 0.55);
  font-size: 14px;
}
.UserContactMethods__icon {
  font-size: 14px;
  line-height: 1;
}
.UserContactMethods__value {
  display: block;
  min-width: 0;
  overflow: hidden;
  font-size: 11px;
  line-height: 14px;
  color: rgba(0, 0, 0, 0.88);
  white-space: nowrap;
  text-overflow: ellipsis;
}
.UserContactMethods__content {
  display: flex;
  align-items: center;
  gap: 4px;
  min-width: 0;
}
.UserContactMethods__verified-icon {
  flex: none;
  font-size: 13px;
  line-height: 1;
}
.UserDetailsSkeleton {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
}
.UserDetailsSkeleton__header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  flex: none;
  gap: 8px;
  padding: 8px 10px;
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
}
.UserDetailsSkeleton__name.ant-skeleton.ant-skeleton-element {
  width: 70%;
}
.UserDetailsSkeleton__name.ant-skeleton.ant-skeleton-element .ant-skeleton-input {
  width: 100%;
  min-width: 0;
  height: 13px;
}
.UserDetailsSkeleton__header-actions {
  display: flex;
  align-items: center;
  gap: 2px;
}
.UserDetailsSkeleton__header-actions .ant-skeleton-button {
  width: 20px;
  min-width: 20px;
  height: 20px;
}
.UserDetailsSkeleton__scroll {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1 1 auto;
  min-height: 0;
  padding: 10px;
  overflow-y: auto;
  overflow-x: hidden;
}
.UserDetailsSkeleton__section {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.UserDetailsSkeleton__section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  min-width: 0;
}
.UserDetailsSkeleton__section-title.ant-skeleton.ant-skeleton-element {
  width: 90px;
}
.UserDetailsSkeleton__section-title.ant-skeleton.ant-skeleton-element .ant-skeleton-input {
  width: 100%;
  min-width: 0;
  height: 11px;
}
.UserDetailsSkeleton__section-controls {
  display: flex;
  flex: none;
  align-items: center;
  gap: 2px;
}
.UserDetailsSkeleton__section-controls .ant-skeleton-button {
  width: 28px;
  min-width: 28px;
  height: 16px;
}
.UserDetailsSkeleton__contacts {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.UserDetailsSkeleton__contact-row {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  min-width: 0;
}
.UserDetailsSkeleton__contact-row .ant-skeleton.ant-skeleton-element {
  width: 100%;
}
.UserDetailsSkeleton__contact-row .ant-skeleton.ant-skeleton-element .ant-skeleton-input {
  width: 100%;
  min-width: 0;
  height: 11px;
}
.UserDetailsSkeleton__select.ant-skeleton.ant-skeleton-element {
  width: 100%;
}
.UserDetailsSkeleton__select.ant-skeleton.ant-skeleton-element .ant-skeleton-input {
  width: 100%;
  min-width: 0;
  height: 24px;
  border-radius: 6px;
}
.UserDetailsSkeleton__funnel.ant-skeleton.ant-skeleton-element {
  width: 100%;
}
.UserDetailsSkeleton__funnel.ant-skeleton.ant-skeleton-element .ant-skeleton-button {
  width: 100%;
  min-width: 0;
  height: 36px;
  border-radius: 6px;
}
.UserDetailsSkeleton__checkbox-list {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.UserDetailsSkeleton__checkbox-row {
  display: grid;
  grid-template-columns: 14px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  min-width: 0;
}
.UserDetailsSkeleton__checkbox-row .ant-skeleton.ant-skeleton-element {
  width: 100%;
}
.UserDetailsSkeleton__checkbox-row .ant-skeleton.ant-skeleton-element .ant-skeleton-input {
  width: 100%;
  min-width: 0;
  height: 11px;
}
.UserDetailsSkeleton__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  min-width: 0;
}
.UserDetailsSkeleton__tag.ant-skeleton.ant-skeleton-element {
  flex: 0 0 auto;
}
.UserDetailsSkeleton__tag.ant-skeleton.ant-skeleton-element .ant-skeleton-button {
  width: 100%;
  min-width: 0;
  height: 18px;
  border-radius: 4px;
}
.UserDetailsSkeleton__footer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(96px, 1fr));
  gap: 4px;
  flex: none;
  min-width: 0;
  padding: 8px 10px;
  background: #fff;
  border-top: 1px solid #f0f0f0;
}
.UserDetailsSkeleton__quick-action.ant-skeleton.ant-skeleton-element {
  width: 100%;
}
.UserDetailsSkeleton__quick-action.ant-skeleton.ant-skeleton-element .ant-skeleton-button {
  width: 100%;
  min-width: 0;
  height: 24px;
}
.UserStatsPopover__list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin: 0;
  padding: 0;
  font-size: 12px;
  list-style: none;
}
.UserStatsPopover__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 124px;
  line-height: 1.4;
}
.UserStatsPopover__label {
  color: rgba(0, 0, 0, 0.55);
}
.UserStatsPopover__value {
  font-weight: 600;
  color: rgba(0, 0, 0, 0.88);
}
.UserStatsPopover__overlay .ant-popover-inner {
  padding: 8px 10px;
}
.UserStatsPopover__overlay .ant-popover-title {
  min-width: 0;
  margin-bottom: 6px;
  font-size: 12px;
}
.UserProfileHeader {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 4px;
  min-width: 0;
}
.UserProfileHeader__avatar {
  flex: none;
}
.UserProfileHeader__name {
  min-width: 0;
  font-size: 12px;
  font-weight: 600;
  line-height: 14px;
  color: rgba(0, 0, 0, 0.88);
}
.UserProfileHeader__actions {
  display: flex;
  flex: none;
  align-items: center;
  gap: 2px;
}
.UserTags {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.UserTags__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
  min-width: 0;
}
.UserTags__title {
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  line-height: 14px;
  color: rgba(0, 0, 0, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.UserTags__edit {
  flex: none;
  width: 22px;
  height: 22px;
  padding: 0;
}
.UserTags__list {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  min-width: 0;
}
.UserTags__tag {
  max-width: 100%;
  padding-inline: 6px;
  font-size: 10px;
  line-height: 16px;
  white-space: normal;
}
.UserTags__empty {
  margin: 0;
  font-size: 11px;
  color: rgba(0, 0, 0, 0.45);
}
.UserDetailsPanel {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
}
.UserDetailsPanel__header, .UserDetailsPanel__footer {
  flex: none;
  min-width: 0;
  padding: 4px;
  background: #fff;
}
.UserDetailsPanel__header {
  border-bottom: 1px solid #f0f0f0;
}
.UserDetailsPanel__footer {
  border-top: 1px solid #f0f0f0;
}
.UserDetailsPanel__footer .AddActions {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.UserDetailsPanel__footer .AddActions__button:last-child:nth-child(odd) {
  grid-column: 1/-1;
}
.UserDetailsPanel__scroll {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1 1 auto;
  min-height: 0;
  padding: 6px;
  overflow-y: auto;
  overflow-x: hidden;
}
.UserDetailsPanel__scroll::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
.UserDetailsPanel__scroll::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: #b1c4df;
}
@media screen and (max-width: 1000px) {
  .UserDetailsPanel__header, .UserDetailsPanel__footer {
    padding: 6px 10px;
  }
  .UserDetailsPanel__scroll {
    gap: 8px;
    padding: 8px 10px;
  }
}
.loading-box-container {
  background-color: rgba(255, 255, 255, 0.85);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  z-index: -1;
  transition: all 0.1s;
}
.loading-box-container[data-visible=true] {
  z-index: 100;
  opacity: 1;
}
.loading-box-container .spinner-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 20px;
}

/*# sourceMappingURL=main~15.83cd7e1b.css.map*/