.TaskPreviewItem {
  min-width: 0;
  padding: 5px 7px;
  overflow: hidden;
  background: #f7fbff;
  border: 1px solid #d9d9d9;
  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__header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.TaskPreviewItem__type {
  display: inline-flex;
  flex: 1 1 120px;
  align-items: center;
  gap: 4px;
  min-width: 0;
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
  color: rgba(0, 0, 0, 0.88);
}
.TaskPreviewItem__type-name {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.TaskPreviewItem__type-icon {
  flex-shrink: 0;
  font-size: 11px;
}
.TaskPreviewItem__range {
  margin-left: auto;
  flex-shrink: 0;
  font-size: 10px;
  line-height: 16px;
  color: rgba(0, 0, 0, 0.55);
  white-space: nowrap;
}
.TaskPreviewItem__description {
  margin-top: 2px;
  overflow: hidden;
  font-size: 11px;
  line-height: 15px;
  color: rgba(0, 0, 0, 0.75);
  white-space: nowrap;
  text-overflow: ellipsis;
}
.TaskPreviewItem__meta {
  margin-top: 1px;
  overflow: hidden;
  font-size: 10px;
  line-height: 14px;
  color: rgba(0, 0, 0, 0.55);
  white-space: nowrap;
  text-overflow: ellipsis;
}
.TaskPreviewItem__label {
  font-weight: 600;
  color: rgba(0, 0, 0, 0.65);
}
@media screen and (max-width: 1000px) {
  .TaskPreviewItem {
    padding: 4px 7px;
  }
  .TaskPreviewItem__type {
    font-size: 11px;
    line-height: 14px;
  }
  .TaskPreviewItem__range {
    font-size: 10px;
    line-height: 14px;
  }
  .TaskPreviewItem__meta {
    font-size: 10px;
    line-height: 13px;
  }
}
.ResponsibleSelect {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 100%;
  min-width: 0;
}
.ResponsibleSelect__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;
}
.ResponsibleSelect__control {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}
.ResponsibleSelect__option {
  display: block;
  min-width: 0;
  color: rgba(0, 0, 0, 0.88);
  font-size: 12px;
  line-height: 16px;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.ResponsibleSelect__option--virtual {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.ResponsibleSelect--cell {
  width: min(156px, 100%);
  max-width: 100%;
}
.ResponsibleSelect--cell .ResponsibleSelect__control {
  width: 100%;
  max-width: 100%;
}
.ResponsibleSelect--cell .ant-select-selector {
  min-height: 30px;
  height: auto !important;
  padding: 2px 7px !important;
  background: #fff !important;
  border-color: #e0e0e0 !important;
  border-radius: 6px !important;
  box-shadow: none !important;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}
.ResponsibleSelect--cell .ant-select-selection-wrap {
  align-self: stretch;
  min-width: 0;
}
.ResponsibleSelect--cell .ant-select-selection-search {
  inset-inline-start: 7px !important;
  inset-inline-end: 7px !important;
}
.ResponsibleSelect--cell .ant-select-selection-placeholder,
.ResponsibleSelect--cell .ant-select-selection-item {
  min-width: 0;
  overflow: hidden;
  color: rgba(0, 0, 0, 0.88);
  font-size: 12px;
  line-height: 15px;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.ResponsibleSelect--cell .ant-select-selection-placeholder {
  color: rgba(0, 0, 0, 0.45);
}
.ResponsibleSelect--cell .ant-select-arrow,
.ResponsibleSelect--cell .ant-select-clear,
.ResponsibleSelect--cell .ant-select-selection-item-remove {
  color: rgba(0, 0, 0, 0.45);
}
.ResponsibleSelect--cell .ant-select:not(.ant-select-disabled):hover .ant-select-selector {
  background: #f9fafb !important;
  border-color: #91caff !important;
}
.ResponsibleSelect--cell .ant-select-focused .ant-select-selector,
.ResponsibleSelect--cell .ant-select-open .ant-select-selector {
  background: #f5faff !important;
  border-color: #4096ff !important;
  box-shadow: 0 0 0 2px rgba(22, 119, 255, 0.08) !important;
}
.ResponsibleSelect--cell .ant-select-disabled .ant-select-selector {
  background: #f5f5f5 !important;
  border-color: #f0f0f0 !important;
}
.ResponsibleSelect--cell .ant-select-disabled .ant-select-selection-placeholder,
.ResponsibleSelect--cell .ant-select-disabled .ant-select-selection-item {
  color: rgba(0, 0, 0, 0.35);
}
.ResponsibleSelect__cell-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  width: 100%;
  max-width: 100%;
  min-height: 28px;
  height: 28px;
  padding: 2px 7px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  box-shadow: none;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}
.ResponsibleSelect__cell-trigger:not(:disabled):hover {
  background: #f9fafb;
  border-color: #91caff;
}
.ResponsibleSelect__cell-trigger:focus-visible, .ResponsibleSelect__cell-trigger--open {
  background: #f5faff;
  border-color: #4096ff;
  box-shadow: 0 0 0 2px rgba(22, 119, 255, 0.08);
}
.ResponsibleSelect__cell-trigger:disabled {
  background: #f5f5f5;
  border-color: #f0f0f0;
}
.ResponsibleSelect__cell-value {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  color: rgba(0, 0, 0, 0.88);
  font-size: 12px;
  line-height: 14px;
  text-align: left;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.ResponsibleSelect__cell-value--placeholder {
  color: rgba(0, 0, 0, 0.45);
}
.ResponsibleSelect__cell-icon {
  flex: none;
  color: rgba(0, 0, 0, 0.45);
  font-size: 10px;
  transition: transform 0.2s ease;
}
.ResponsibleSelect__cell-icon--open {
  transform: rotate(180deg);
}
.ResponsibleSelect__custom-dropdown {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: min(280px, 100vw - 16px);
  min-width: 0;
}
.ResponsibleSelect__search.ant-input-affix-wrapper, .ResponsibleSelect__search.ant-input {
  height: 28px;
  padding: 0 8px;
  font-size: 11px;
  border-color: #e0e0e0;
  border-radius: 6px;
  box-shadow: none;
}
.ResponsibleSelect__search.ant-input-affix-wrapper:hover, .ResponsibleSelect__search.ant-input-affix-wrapper:focus, .ResponsibleSelect__search.ant-input-affix-wrapper:focus-within, .ResponsibleSelect__search.ant-input:hover, .ResponsibleSelect__search.ant-input:focus, .ResponsibleSelect__search.ant-input:focus-within {
  border-color: #91caff;
  box-shadow: 0 0 0 2px rgba(22, 119, 255, 0.08);
}
.ResponsibleSelect__virtual-list {
  min-width: 0;
  max-height: min(320px, 100vh - 120px);
  max-height: min(320px, 100dvh - 120px);
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-color: #b1c4df #fff;
  scrollbar-width: thin;
}
.ResponsibleSelect__virtual-list::-webkit-scrollbar {
  width: 5px;
  height: 5px;
  border-radius: 15px;
}
.ResponsibleSelect__virtual-list::-webkit-scrollbar-track {
  background: white;
  border-radius: 15px;
}
.ResponsibleSelect__virtual-list::-webkit-scrollbar-corner {
  border-radius: 33px;
}
.ResponsibleSelect__virtual-list::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #b1c4df;
}
.ResponsibleSelect__virtual-spacer {
  position: relative;
  min-width: 0;
}
.ResponsibleSelect__virtual-items {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  min-width: 0;
}
.ResponsibleSelect__option-button {
  display: flex;
  align-items: center;
  width: 100%;
  height: 40px;
  min-width: 0;
  padding: 4px 7px;
  font: inherit;
  text-align: left;
  cursor: pointer;
  background: transparent;
  border: none;
  border-radius: 6px;
  transition: background-color 0.15s ease;
}
.ResponsibleSelect__option-button:hover, .ResponsibleSelect__option-button:focus-visible {
  background: #f5faff;
  outline: none;
}
.ResponsibleSelect__option-button--selected {
  background: #e6f4ff;
}
.ResponsibleSelect__option-button--selected .ResponsibleSelect__option {
  color: #0958d9;
  font-weight: 600;
}
.ResponsibleSelect__empty, .ResponsibleSelect__loading {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 12px 8px;
  color: rgba(0, 0, 0, 0.45);
  font-size: 11px;
  line-height: 14px;
  text-align: center;
}

.ResponsibleSelect__custom-popover .ant-popover-inner {
  padding: 8px;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.ResponsibleSelect__custom-popover .ant-popover-inner-content {
  padding: 0;
}

.ResponsibleSelect__dropdown {
  min-width: min(190px, 100vw - 16px);
  max-width: calc(100vw - 16px);
  padding: 4px !important;
  overflow: hidden;
  background: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.ResponsibleSelect__dropdown .rc-virtual-list,
.ResponsibleSelect__dropdown .rc-virtual-list-holder {
  max-height: min(320px, 100vh - 24px) !important;
  max-height: min(320px, 100dvh - 24px) !important;
}
.ResponsibleSelect__dropdown .rc-virtual-list-holder {
  overflow-y: auto !important;
  overflow-x: hidden;
  overscroll-behavior: contain;
}
.ResponsibleSelect__dropdown .ant-select-item {
  min-height: 28px;
  padding: 5px 7px;
  border-radius: 6px;
}
.ResponsibleSelect__dropdown .ant-select-item-option-content {
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.ResponsibleSelect__dropdown .ant-select-item-option-active:not(.ant-select-item-option-disabled) {
  background: #f5faff;
}
.ResponsibleSelect__dropdown .ant-select-item-option-selected:not(.ant-select-item-option-disabled) {
  background: #e6f4ff;
}
.ResponsibleSelect__dropdown .ant-select-item-option-selected:not(.ant-select-item-option-disabled) .ResponsibleSelect__option {
  color: #0958d9;
  font-weight: 600;
}
.ResponsibleSelect__dropdown .ant-empty-small {
  margin-block: 8px;
  color: rgba(0, 0, 0, 0.45);
  font-size: 12px;
}
.ResponsibleSelect__dropdown--cell {
  width: min(280px, 100vw - 16px) !important;
  min-width: min(280px, 100vw - 16px) !important;
}
.ResponsibleSelect__dropdown--cell .rc-virtual-list-holder::-webkit-scrollbar {
  width: 5px;
  height: 5px;
  border-radius: 15px;
}
.ResponsibleSelect__dropdown--cell .rc-virtual-list-holder::-webkit-scrollbar-track {
  background: white;
  border-radius: 15px;
}
.ResponsibleSelect__dropdown--cell .rc-virtual-list-holder::-webkit-scrollbar-corner {
  border-radius: 33px;
}
.ResponsibleSelect__dropdown--cell .rc-virtual-list-holder::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #b1c4df;
}

/*# sourceMappingURL=main~13.56e3d440.css.map*/