@charset "UTF-8";@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap");@import url("https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,100..900&display=swap");


.driver-active .driver-overlay,.driver-active *{pointer-events:none}
.driver-active .driver-active-element,.driver-active .driver-active-element *,.driver-popover,.driver-popover *{pointer-events:auto}
@keyframes animate-fade-in{0%{opacity:0}to{opacity:1}}
.driver-fade .driver-overlay{animation:animate-fade-in .2s ease-in-out}
.driver-fade .driver-popover{animation:animate-fade-in .2s}
.driver-popover{all:unset;box-sizing:border-box;color:#2d2d2d;margin:0;padding:15px;border-radius:5px;min-width:250px;max-width:300px;box-shadow:0 1px 10px #0006;z-index:1000000000;position:fixed;top:0;right:0;background-color:#fff}
.driver-popover *{font-family:Helvetica Neue,Inter,ui-sans-serif,"Apple Color Emoji",Helvetica,Arial,sans-serif}
.driver-popover-title{font:19px/normal sans-serif;font-weight:700;display:block;position:relative;line-height:1.5;zoom:1;margin:0}
.driver-popover-close-btn{all:unset;position:absolute;top:0;right:0;width:32px;height:28px;cursor:pointer;font-size:18px;font-weight:500;color:#d2d2d2;z-index:1;text-align:center;transition:color;transition-duration:.2s}
.driver-popover-close-btn:hover,.driver-popover-close-btn:focus{color:#2d2d2d}
.driver-popover-title[style*=block]+.driver-popover-description{margin-top:5px}
.driver-popover-description{margin-bottom:0;font:14px/normal sans-serif;line-height:1.5;font-weight:400;zoom:1}
.driver-popover-footer{margin-top:15px;text-align:right;zoom:1;display:flex;align-items:center;justify-content:space-between}
.driver-popover-progress-text{font-size:13px;font-weight:400;color:#727272;zoom:1}
.driver-popover-footer button{all:unset;display:inline-block;box-sizing:border-box;padding:3px 7px;text-decoration:none;text-shadow:1px 1px 0 #fff;background-color:#fff;color:#2d2d2d;font:12px/normal sans-serif;cursor:pointer;outline:0;zoom:1;line-height:1.3;border:1px solid #ccc;border-radius:3px}
.driver-popover-footer .driver-popover-btn-disabled{opacity:.5;pointer-events:none}
:not(body):has(>.driver-active-element){overflow:hidden!important}
.driver-no-interaction,.driver-no-interaction *{pointer-events:none!important}
.driver-popover-footer button:hover,.driver-popover-footer button:focus{background-color:#f7f7f7}
.driver-popover-navigation-btns{display:flex;flex-grow:1;justify-content:flex-end}
.driver-popover-navigation-btns button+button{margin-left:4px}
.driver-popover-arrow{content:"";position:absolute;border:5px solid #fff}
.driver-popover-arrow-side-over{display:none}
.driver-popover-arrow-side-left{left:100%;border-right-color:transparent;border-bottom-color:transparent;border-top-color:transparent}
.driver-popover-arrow-side-right{right:100%;border-left-color:transparent;border-bottom-color:transparent;border-top-color:transparent}
.driver-popover-arrow-side-top{top:100%;border-right-color:transparent;border-bottom-color:transparent;border-left-color:transparent}
.driver-popover-arrow-side-bottom{bottom:100%;border-left-color:transparent;border-top-color:transparent;border-right-color:transparent}
.driver-popover-arrow-side-center{display:none}
.driver-popover-arrow-side-left.driver-popover-arrow-align-start,.driver-popover-arrow-side-right.driver-popover-arrow-align-start{top:15px}
.driver-popover-arrow-side-top.driver-popover-arrow-align-start,.driver-popover-arrow-side-bottom.driver-popover-arrow-align-start{left:15px}
.driver-popover-arrow-align-end.driver-popover-arrow-side-left,.driver-popover-arrow-align-end.driver-popover-arrow-side-right{bottom:15px}
.driver-popover-arrow-side-top.driver-popover-arrow-align-end,.driver-popover-arrow-side-bottom.driver-popover-arrow-align-end{right:15px}
.driver-popover-arrow-side-left.driver-popover-arrow-align-center,.driver-popover-arrow-side-right.driver-popover-arrow-align-center{top:50%;margin-top:-5px}
.driver-popover-arrow-side-top.driver-popover-arrow-align-center,.driver-popover-arrow-side-bottom.driver-popover-arrow-align-center{left:50%;margin-left:-5px}
.driver-popover-arrow-none{display:none}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
body {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #333333;
  background-color: #f8fafb;
  min-height: 100vh;
  overflow-x: hidden;
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.flex {
  display: flex;
}
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.flex-column {
  display: flex;
  flex-direction: column;
}
.flex-align-center {
  display: flex;
  align-items: center;
}
.flex-justify-center {
  display: flex;
  justify-content: center;
}
.flex-space-between {
  display: flex;
  justify-content: space-between;
}
.full-height {
  height: 100%;
}
.full-width {
  width: 100%;
}
.min-h-screen {
  min-height: 100vh;
}
.fade-in {
  animation: fadeIn 0.3s ease-in-out;
}
.slide-in-up {
  animation: slideInUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.app-layout {
  min-height: 100vh;
  background: #f8fafb;
  display: flex;
  flex-direction: column;
  transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.fixed-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
  margin-top: 55px;
}
.content-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  overflow-y: auto;
  padding: 0;
}
.content-container {
  width: 100%;
  max-width: var(--container-max-width, 1600px);
  margin: 0 auto;
  padding: 0 24px;
  transition: max-width 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
/**
 * Базовые контейнеры для модулей и таблиц
 * Занимают всю доступную ширину внутри content-container
 */
.moduleContent {
  width: 100%;
}
.table-controls {
  margin-bottom: 24px;
}
.tableSection {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.fixed-header {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 1005;
  background: #f8fafb;
  padding: 40px 0 0 0;
  flex-shrink: 0;
  height: 80px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.header-wrapper {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.header-content {
  width: 100%;
  height: 80px;
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(30, 58, 138, 0.15), 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 0;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
}
@media (min-width: 1024px) {
  .header-content {
    padding: 0 48px;
  }
}
/**
 * Декоративный слой со снежинками
 * Управляется через feature flag `header_snowflakes`
 */
.header-snowflakes {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  border-radius: inherit;
  overflow: hidden;
  opacity: 0.55;
}
.header-snowflakes__svg {
  width: 100%;
  height: 100%;
  display: block;
}
.brand-container {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.logo {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  cursor: default;
  user-select: none;
}
/**
 * Dev Badge - индикатор dev версии приложения
 * Показывается в development режиме
 */
.dev-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: rgba(255, 193, 7, 0.2);
  border: 1px solid rgba(255, 193, 7, 0.5);
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  color: #ffffff;
  user-select: none;
  cursor: help;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  animation: ws-slideIn 0.3s ease;
  backdrop-filter: blur(4px);
}
.dev-badge:hover {
  background: rgba(255, 193, 7, 0.3);
  border-color: rgba(255, 193, 7, 0.7);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(255, 193, 7, 0.3);
}
.dev-badge-dot {
  font-size: 10px;
  color: #ffc107;
  animation: pulse 2s ease-in-out infinite;
}
.dev-badge-text {
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #ffc107;
}
.dev-badge-date {
  font-size: 10px;
  opacity: 0.9;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(0.9);
  }
}
.navigation {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
}
.nav-button {
  padding: 8px 24px;
  border-radius: 12px;
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  border: none;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  outline: none;
  gap: 6px;
  min-height: 36px;
  letter-spacing: 0.25px;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, sans-serif;
}
.nav-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  opacity: 0;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(0.9);
}
.nav-button:hover {
  color: rgba(255, 255, 255, 0.95);
  transform: translateY(-0.5px);
}
.nav-button:hover::before {
  opacity: 1;
  transform: scale(1);
}
.nav-button:active {
  transform: translateY(0);
}
.nav-button.active {
  background: rgba(255, 255, 255, 0.95);
  color: #1e3a8a;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  font-weight: 700;
}
.nav-button.active::before {
  display: none;
}
.nav-button.active:hover {
  background: rgb(255, 255, 255);
  transform: translateY(-0.5px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}
.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-shrink: 0;
  gap: 16px;
  padding-right: 4px;
  position: relative;
  z-index: 1010;
}
.header-button {
  color: #ffffff;
  background: transparent;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1010;
}
.header-button:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.1);
}
.header-button:active {
  transform: scale(0.95);
}
/**
 * WebSocket Status Indicator
 * Показывает статус подключения к WebSocket серверу
 */
.ws-status-indicator {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  user-select: none;
  cursor: help;
  padding: 4px 8px;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}
.ws-status-indicator:hover {
  background-color: rgba(0, 0, 0, 0.04);
}
.ws-status-indicator .ws-status-dot {
  font-size: 1rem;
  line-height: 1;
}
.ws-status-indicator .ws-status-dot.pulse {
  animation: ws-pulse 2s ease-in-out infinite;
}
.ws-status-indicator .ws-status-text {
  font-weight: 500;
  opacity: 0.85;
}
.user-profile {
  display: flex;
  align-items: center;
  padding: 4px 12px 4px 4px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  margin-left: 8px;
}
.user-profile:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-0.5px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.user-profile .user-name {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  font-weight: 500;
  margin-left: 8px;
  white-space: nowrap;
  max-width: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.avatar {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  cursor: pointer;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 600;
  margin-left: 8px;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.avatar:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.15);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.avatar:active {
  transform: scale(1.05);
}
.user-profile .ant-avatar {
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1010;
}
.user-profile .ant-avatar .ant-avatar-string {
  color: #ffffff;
  font-weight: 600;
}
.header-actions .ant-avatar,
.header-actions .ant-dropdown-trigger {
  position: relative;
  z-index: 1010;
}
/**
 * Индикатор последнего обновления данных
 * Показывает кто и когда последний раз обновлял данные
 */
.last-update-indicator {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: #f0f2f5;
  border-radius: 4px;
  font-size: 0.75rem;
  color: #595959;
  user-select: none;
  transition: all 0.3s ease;
  animation: ws-slideIn 0.3s ease;
}
.last-update-indicator:hover {
  background: #e6f7ff;
}
.last-update-indicator-icon {
  font-size: 0.875rem;
  animation: ws-fadeIn 0.3s ease;
}
.last-update-indicator-text .last-update-user {
  font-weight: 500;
  color: #1890ff;
}
@keyframes ws-pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
@keyframes ws-fadeIn {
  from {
    opacity: 0;
    transform: rotate(-180deg);
  }
  to {
    opacity: 1;
    transform: rotate(0deg);
  }
}
@keyframes ws-slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/**
 * Центрирование элемента через flexbox
 * @example
 *   .container {
 *     @include flex-center;
 *   }
 */
/**
 * Абсолютное позиционирование на всю область родителя
 * @example
 *   .overlay {
 *     @include absolute-cover;
 *   }
 */
/**
 * Скрытие скроллбара
 * @example
 *   .scrollable {
 *     @include hide-scrollbar;
 *   }
 */
/**
 * Кастомный скроллбар
 * @param {Color} $thumb-color - цвет ползунка
 * @param {Color} $track-color - цвет трека
 * @example
 *   .scrollable {
 *     @include custom-scrollbar(#3b82f6, #f0f0f0);
 *   }
 */
/**
 * Обрезка текста с многоточием
 * @param {Number} $lines - количество строк (по умолчанию 1)
 * @example
 *   .text {
 *     @include text-ellipsis;
 *   }
 *   .multiline {
 *     @include text-ellipsis(3);
 *   }
 */
/**
 * Улучшенная типографика
 * @example
 *   body {
 *     @include font-smoothing;
 *   }
 */
/**
 * Эффект подъёма при наведении
 * @param {String} $shadow - тень при наведении
 * @example
 *   .card {
 *     @include hover-lift;
 *   }
 */
/**
 * Эффект увеличения при наведении
 * @param {Number} $scale - коэффициент масштабирования
 * @example
 *   .button {
 *     @include hover-scale(1.05);
 *   }
 */
/**
 * Backdrop blur эффект (стеклянная морфология)
 * @param {Number} $blur - степень размытия
 * @param {Color} $bg - фоновый цвет
 * @example
 *   .glass-card {
 *     @include glass-morphism(10px, rgba(255, 255, 255, 0.1));
 *   }
 */
/**
 * Треугольник через CSS
 * @param {String} $direction - направление (up, down, left, right)
 * @param {Size} $size - размер треугольника
 * @param {Color} $color - цвет треугольника
 * @example
 *   .tooltip::after {
 *     @include triangle(down, 8px, #333);
 *   }
 */
/**
 * Media query для минимальной ширины
 * @param {Size} $breakpoint - точка перелома
 * @example
 *   .container {
 *     @include media-min($breakpoint-lg) {
 *       max-width: 1200px;
 *     }
 *   }
 */
/**
 * Media query для максимальной ширины
 * @param {Size} $breakpoint - точка перелома
 * @example
 *   .sidebar {
 *     @include media-max($breakpoint-md) {
 *       display: none;
 *     }
 *   }
 */
/**
 * Миксин для страниц "в разработке"
 * @example
 *   .under-construction-page {
 *     @include under-construction-page;
 *   }
 */
/**
 * Карточка с градиентным фоном
 * @param {Color} $color-start - начальный цвет градиента
 * @param {Color} $color-end - конечный цвет градиента
 * @example
 *   .premium-card {
 *     @include gradient-card(#667eea, #764ba2);
 *   }
 */
/**
 * Skeleton loader для загрузки
 * @param {Color} $base-color - базовый цвет
 * @example
 *   .skeleton {
 *     @include skeleton-loader;
 *   }
 */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}
@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
.notification-bell {
  position: relative;
}
.notification-bell-popover .ant-popover-inner {
  padding: 0;
  border-radius: 16px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}
.notification-bell-popover .ant-popover-inner-content {
  padding: 0;
}
.notification-bell-drawer .ant-drawer-body {
  padding: 0;
}
.notification-settings-popover .ant-popover-inner {
  border-radius: 16px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}
.notification-settings-popover .ant-popover-inner-content {
  padding: 0;
}
.notification-center {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: white;
}
.notification-center-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid #e5e5e5;
  background: #f5f5f5;
}
.notification-center-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: #333333;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.notification-center-title .unread-badge {
  color: #1890ff;
  font-size: 0.875rem;
  font-weight: 500;
  flex-shrink: 0;
}
.notification-center-filters {
  padding: 16px 20px;
  border-bottom: 1px solid #e5e5e5;
}
.notification-center-filters .ant-segmented {
  width: 100%;
  border-radius: 8px;
}
.notification-center-list {
  flex: 1;
  overflow-y: auto;
}
.notification-center-list::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
.notification-center-list::-webkit-scrollbar-track {
  background: #f0f0f0;
}
.notification-center-list::-webkit-scrollbar-thumb {
  background-color: #bfbfbf;
  border: 3px solid transparent;
  background-clip: content-box;
  border-radius: 99px;
}
.notification-center-list::-webkit-scrollbar-thumb:hover {
  background-color: rgb(152.75, 152.75, 152.75);
}
.notification-center--popover .notification-center-header {
  padding: 12px 16px;
}
.notification-center--popover .notification-center-title {
  font-size: 15px;
}
.notification-center--drawer, .notification-center--page {
  height: 100%;
}
.notification-group:not(:last-child) {
  border-bottom: 1px solid #f0f0f0;
}
.notification-group-label {
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
  color: #8c8c8c;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: #fafafa;
  position: sticky;
  top: 0;
  z-index: 1;
}
.notification-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 20px;
  transition: all 0.2s ease;
  border-bottom: 1px solid #f5f5f5;
}
.notification-item:hover {
  background: #fafafa;
}
.notification-item:hover .notification-delete {
  opacity: 1;
}
.notification-item.unread {
  background: #e6f7ff;
}
.notification-item.unread:hover {
  background: #d6efff;
}
.notification-item.compact {
  padding: 12px 20px;
}
.notification-item.compact .notification-content {
  gap: 4px;
}
.notification-item.compact .notification-title {
  font-size: 13px;
}
.notification-item.compact .notification-message {
  font-size: 12px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.notification-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 16px;
}
.notification-icon--data-update {
  background: #e6f7ff;
  color: #1890ff;
}
.notification-icon--system {
  background: #f6ffed;
  color: #52c41a;
}
.notification-icon--error {
  background: #fff1f0;
  color: #ff4d4f;
}
.notification-icon--business {
  background: #f9f0ff;
  color: #722ed1;
}
.notification-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.notification-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
}
.notification-title {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #262626;
  line-height: 1.4;
}
.notification-time {
  flex-shrink: 0;
  font-size: 12px;
  color: #8c8c8c;
  white-space: nowrap;
}
.notification-message {
  margin: 0;
  font-size: 13px;
  color: #595959;
  line-height: 1.5;
  word-break: break-word;
}
.notification-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: #1890ff;
  font-weight: 500;
  margin-top: 2px;
}
.notification-link:hover {
  color: #40a9ff;
}
.notification-link::after {
  content: "→";
  margin-left: 2px;
}
.notification-delete {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  border-radius: 4px;
  font-size: 18px;
  color: #8c8c8c;
  cursor: pointer;
  opacity: 0;
  transition: all 0.2s ease;
}
.notification-delete:hover {
  background: #ff4d4f;
  color: white;
}
.notification-unread-indicator {
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: #1890ff;
  border-radius: 50%;
}
.notification-settings {
  width: 280px;
  padding: 12px;
  border-radius: 16px;
}
.notification-settings-header {
  display: flex;
  align-items: center;
  color: #262626;
  font-weight: 600;
}
.notification-settings-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.notification-settings-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  border-radius: 12px;
  background: #fafafa;
  transition: background 0.2s ease;
}
.notification-settings-item:hover {
  background: #f0f0f0;
}
.notification-settings-item-content {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
}
.notification-settings-item-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: white;
  font-size: 13px;
  color: #1890ff;
  flex-shrink: 0;
}
.notification-settings-item-text {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}
.notification-settings-item-label {
  font-size: 13px;
  font-weight: 500;
  color: #262626;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.notification-settings-item-description {
  font-size: 11px;
  color: #8c8c8c;
  line-height: 1.4;
}
.ht-theme-main {
  --ht-accent-color: #3b82f6;
  --ht-accent-color-transparent: rgba(59, 130, 246, 0.1);
  --ht-text-color: #333333;
  --ht-text-secondary: #666666;
  --ht-text-disabled: #999999;
  --ht-bg-main: #ffffff;
  --ht-bg-header: #f8fafc;
  --ht-bg-readonly: #f1f5f9;
  --ht-border-color: #e5e5e5;
  --ht-border-color-header: #d9d9d9;
  --ht-font-family: Inter, -apple-system, BlinkMacSystemFont, sans-serif;
  --ht-font-size: 11px;
  --ht-ui-font-size: 12px;
  --ht-line-height: 1.4;
  border: none;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
  background: var(--ht-bg-main);
  --ht-background-color: var(--ht-bg-main);
  --ht-row-header-background-color: var(--ht-bg-header);
  --ht-col-header-background-color: var(--ht-bg-header);
}
.handsontable {
  font-family: var(--ht-font-family) !important;
  font-size: var(--ht-font-size);
  color: var(--ht-text-color);
  font-weight: 400;
  line-height: var(--ht-line-height) !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.handsontable thead th {
  font-family: var(--ht-font-family) !important;
  background-color: var(--ht-bg-header);
  color: var(--ht-text-secondary);
  font-weight: 600;
  font-size: 11px !important;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 6px 4px !important;
  vertical-align: middle;
  border-bottom: 1px solid var(--ht-border-color-header) !important;
  border-right: 1px solid var(--ht-border-color-header) !important;
  border-left: 1px solid var(--ht-border-color-header) !important;
  position: relative;
}
.handsontable thead th.columnSorting {
  cursor: pointer;
  transition: color 150ms ease;
}
.handsontable thead th.columnSorting:hover {
  color: #1e3a8a;
  background-color: rgb(240.86, 244.9, 248.94);
}
.handsontable thead th.ht__highlight {
  background-color: rgba(30, 58, 138, 0.04);
  color: #1e3a8a;
}
.handsontable th.ht_clone_left,
.handsontable tbody th {
  font-family: var(--ht-font-family) !important;
  background-color: var(--ht-bg-header);
  color: var(--ht-text-disabled);
  font-size: 11px;
  text-align: center;
  border-right: 1px solid var(--ht-border-color) !important;
  font-weight: 500;
}
.handsontable td {
  position: relative;
  padding: 4px 6px !important;
  vertical-align: middle;
  border-bottom: 1px solid #f0f2f5 !important;
  border-right: 1px solid #f0f2f5 !important;
  background-clip: padding-box;
  transition: background-color 0.1s ease, color 0.1s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: var(--ht-font-size) !important;
  font-weight: 400;
  line-height: var(--ht-line-height) !important;
  color: #333333;
}
.handsontable tbody tr:hover td {
  background-color: transparent;
}
.handsontable tbody tr:hover td:not(.htDimmed):not(.cell-changed):not(.tracking-cell--user-changed):not(.tracking-cell--changed):not(.tracking-cell--derived):not(.deviation-positive):not(.deviation-negative):not(.ht-deviation-warning):not(.ht-deviation-positive):not(.ht-purchase-plan-orange) {
  background-color: #fcfdfe !important;
}
.handsontable .wtBorder {
  background-color: #1e3a8a !important;
  z-index: 10;
}
.handsontable .wtBorder.corner {
  background-color: #1e3a8a !important;
  width: 6px !important;
  height: 6px !important;
  border: 1px solid #fff;
  border-radius: 1px;
  box-shadow: none;
}
.handsontable td.area {
  background-color: rgba(30, 58, 138, 0.06) !important;
}
.handsontable td.current {
  background-color: rgba(30, 58, 138, 0.08) !important;
}
.handsontable td.htDimmed {
  background-color: var(--ht-bg-readonly) !important;
  color: #666666 !important;
}
.handsontable td.htDimmed::before {
  display: none;
}
.handsontable td:not(.htDimmed):not(.htInvalid):not(.htCommentCell):not(.cell-changed):not(.tracking-cell--user-changed):not(.tracking-cell--changed):not(.tracking-cell--derived):not([class*=tracking-cell]):not(.deviation-positive):not(.deviation-negative):not(.ht-deviation-warning):not(.ht-deviation-positive):not(.ht-purchase-plan-orange) {
  cursor: cell;
}
.handsontable td:not(.htDimmed):not(.htInvalid):not(.htCommentCell):not(.cell-changed):not(.tracking-cell--user-changed):not(.tracking-cell--changed):not(.tracking-cell--derived):not([class*=tracking-cell]):not(.deviation-positive):not(.deviation-negative):not(.ht-deviation-warning):not(.ht-deviation-positive):not(.ht-purchase-plan-orange)::before {
  display: none;
}
.handsontable td:not(.htDimmed):not(.htInvalid):not(.htCommentCell):not(.cell-changed):not(.tracking-cell--user-changed):not(.tracking-cell--changed):not(.tracking-cell--derived):not([class*=tracking-cell]):not(.deviation-positive):not(.deviation-negative):not(.ht-deviation-warning):not(.ht-deviation-positive):not(.ht-purchase-plan-orange):hover {
  background-color: #fff !important;
  box-shadow: inset 0 0 0 1px rgba(59, 130, 246, 0.4) !important;
  z-index: 1;
}
.handsontable td.htNumeric {
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
}
.handsontable td.htInvalid {
  background-color: #fff1f0 !important;
  color: #721c24 !important;
  box-shadow: inset 4px 0 0 0 #ff4d4f !important;
  transition: all 0.3s ease;
}
.handsontable td.htCommentCell::after {
  border-color: transparent #faad14 transparent transparent !important;
  transform: scale(1.2);
}
.handsontable td[title],
.handsontable th[title] {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.handsontable th[title] {
  position: relative;
}
.handsontable td.deviation-positive,
.handsontable tbody td.deviation-positive {
  background-color: #d4edda !important;
  color: #155724 !important;
}
.handsontable td.deviation-negative,
.handsontable tbody td.deviation-negative {
  background-color: #f8d7da !important;
  color: #721c24 !important;
}
.handsontable td.ht-deviation-center {
  text-align: center !important;
}
.handsontable td.ht-deviation-warning,
.handsontable tbody td.ht-deviation-warning {
  background-color: #FFE4E4 !important;
  color: #DC2626 !important;
  font-weight: 500 !important;
}
.handsontable td.ht-deviation-positive,
.handsontable tbody td.ht-deviation-positive {
  background-color: #D1FAE5 !important;
  color: #059669 !important;
  font-weight: 500 !important;
}
.handsontable td.ht-purchase-plan-orange {
  background-color: #FED7AA !important;
}
.handsontableInput {
  box-shadow: none !important;
  font-family: var(--ht-font-family) !important;
  font-size: var(--ht-font-size) !important;
  padding: 6px 8px !important;
  border: 1px solid #1e3a8a !important;
  border-radius: 4px !important;
  background-color: #fff !important;
  color: #333333 !important;
  outline: none !important;
}
.htDropdownMenu,
.htAutocomplete {
  background: #fff;
  border: 1px solid #e5e5e5 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 4px 0;
  font-family: var(--ht-font-family) !important;
}
.htDropdownMenu .htCore,
.htAutocomplete .htCore {
  border: none !important;
}
.htDropdownMenu td,
.htAutocomplete td {
  padding: 8px 16px !important;
  font-size: var(--ht-ui-font-size) !important;
  border: none !important;
  cursor: pointer;
}
.htDropdownMenu td:hover, .htDropdownMenu td.current,
.htAutocomplete td:hover,
.htAutocomplete td.current {
  background-color: #f8fafb !important;
  color: #1e3a8a !important;
}
.htContextMenu {
  border: 1px solid #e5e5e5 !important;
  border-radius: 8px !important;
  box-shadow: none !important;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  padding: 6px;
  min-width: 180px;
}
.htContextMenu table.htCore {
  border: none !important;
  width: 100%;
}
.htContextMenu tbody tr td {
  padding: 8px 12px !important;
  font-size: var(--ht-ui-font-size) !important;
  font-family: var(--ht-font-family) !important;
  color: #333333;
  border: none !important;
  border-radius: 4px;
  transition: all 0.1s ease;
  cursor: default;
  position: relative;
}
.htContextMenu tbody tr td:hover {
  background-color: #1e3a8a;
  color: #ffffff !important;
}
.htContextMenu tbody tr td.htDisabled {
  color: #999999 !important;
  background-color: transparent !important;
  cursor: not-allowed;
  opacity: 0.6;
}
.htContextMenu tbody tr td.htSeparator {
  border-top: 1px solid #edf2f7 !important;
  height: 1px;
  margin: 4px 0;
  padding: 0 !important;
  background: transparent !important;
  pointer-events: none;
}
.htContextMenu tbody tr td.htSeparator:hover {
  background: transparent !important;
}
.htContextMenu tbody tr td div span.htSubmenu {
  color: inherit;
  right: 8px;
  font-size: 10px;
}
.handsontable .htDropdown,
.handsontable .htDropdownMenu {
  z-index: var(--z-index-dropdown, 1050) !important;
}
.handsontable .htCommentTextArea {
  z-index: var(--z-index-tooltip, 1080) !important;
}
.handsontable td.cell-changed,
.handsontable td.tracking-cell--user-changed,
.handsontable td.tracking-cell--changed {
  background-color: #f8ebc6 !important;
  position: relative;
  will-change: background-color;
}
.handsontable td.cell-changed::after,
.handsontable td.tracking-cell--user-changed::after,
.handsontable td.tracking-cell--changed::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 8px 8px 0;
  border-color: transparent #f39c12 transparent transparent;
  z-index: 1;
  pointer-events: none;
}
.handsontable td.tracking-cell--derived {
  background-color: #f0f9ff !important;
  position: relative;
  will-change: background-color;
}
.handsontable td.tracking-cell--derived::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 8px 8px 0;
  border-color: transparent #1890ff transparent transparent;
  z-index: 1;
  pointer-events: none;
}
.handsontable .htCenter.tracking-cell--user-changed,
.handsontable .tracking-cell--user-changed.htCenter,
.handsontable .htCenter.tracking-cell--derived,
.handsontable .tracking-cell--derived.htCenter,
.handsontable .htCenter.tracking-cell--changed,
.handsontable .tracking-cell--changed.htCenter,
.handsontable .htCenter.cell-changed,
.handsontable .cell-changed.htCenter {
  text-align: center !important;
}
.handsontable .htLeft.tracking-cell--user-changed,
.handsontable .tracking-cell--user-changed.htLeft,
.handsontable .htLeft.tracking-cell--derived,
.handsontable .tracking-cell--derived.htLeft,
.handsontable .htLeft.tracking-cell--changed,
.handsontable .tracking-cell--changed.htLeft,
.handsontable .htLeft.cell-changed,
.handsontable .cell-changed.htLeft {
  text-align: left !important;
}
.handsontable .htRight.tracking-cell--user-changed,
.handsontable .tracking-cell--user-changed.htRight,
.handsontable .htRight.tracking-cell--derived,
.handsontable .tracking-cell--derived.htRight,
.handsontable .htRight.tracking-cell--changed,
.handsontable .tracking-cell--changed.htRight,
.handsontable .htRight.cell-changed,
.handsontable .cell-changed.htRight {
  text-align: right !important;
}
.handsontable .wtHolder::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
.handsontable .wtHolder::-webkit-scrollbar-track {
  background: transparent;
}
.handsontable .wtHolder::-webkit-scrollbar-thumb {
  background-color: #d1d5db;
  border: 3px solid transparent;
  background-clip: content-box;
  border-radius: 99px;
}
.handsontable .wtHolder::-webkit-scrollbar-thumb:hover {
  background-color: #9ca3af;
}
@keyframes htFadeIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.htDropdownMenu, .htContextMenu {
  animation: htFadeIn 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.handsontable .ht_clone_left,
.handsontable .ht_clone_top,
.handsontable .ht_clone_top_inline_start_corner {
  box-shadow: none !important;
  z-index: 105;
}
.handsontable .ht-pagination {
  border-top: 1px solid #e5e5e5;
  background: #f8fafc;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}
.handsontable .ht-pagination button {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 6px 12px;
  color: #666666;
  font-size: var(--ht-ui-font-size);
  font-weight: 500;
  transition: all 0.2s;
}
.handsontable .ht-pagination button:hover:not(:disabled) {
  border-color: #3b82f6;
  color: #1e3a8a;
  transform: translateY(-1px);
  box-shadow: none;
}
.handsontable .ht-pagination button:active:not(:disabled) {
  transform: translateY(0);
}
.handsontable .ht-pagination button.active {
  background: #1e3a8a;
  color: #fff;
  border-color: #1e3a8a;
  box-shadow: none;
}
.handsontable .ht-pagination button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: #f1f5f9;
}
/* CprTnPlanningTable */
#stage2-tn-v2 .ht_clone_top thead th:nth-child(6),
#stage2-tn-v2 .ht_clone_top thead th:nth-child(7),
#stage2-tn-v2 .ht_clone_top thead th:nth-child(8),
#stage2-tn-v2 .ht_clone_top thead th:nth-child(9),
#stage2-tn-v2 .ht_master thead th:nth-child(6),
#stage2-tn-v2 .ht_master thead th:nth-child(7),
#stage2-tn-v2 .ht_master thead th:nth-child(8),
#stage2-tn-v2 .ht_master thead th:nth-child(9) {
  background-color: #a02b93 !important;
  color: white !important;
  font-weight: 600;
}
/* Purchase Planning Stage 1 */
#purchase-tn-v2 .ht_clone_top thead th:nth-child(6),
#purchase-tn-v2 .ht_clone_top thead th:nth-child(7),
#purchase-tn-v2 .ht_clone_top thead th:nth-child(8),
#purchase-tn-v2 .ht_clone_top thead th:nth-child(9),
#purchase-tn-v2 .ht_clone_top thead th:nth-child(10),
#purchase-tn-v2 .ht_master thead th:nth-child(6),
#purchase-tn-v2 .ht_master thead th:nth-child(7),
#purchase-tn-v2 .ht_master thead th:nth-child(8),
#purchase-tn-v2 .ht_master thead th:nth-child(9),
#purchase-tn-v2 .ht_master thead th:nth-child(10) {
  background-color: #e97132 !important;
  color: white !important;
  font-weight: 600;
}
/* Закупки (6-10) + Продажи (11-14) */
#stage3-combined-v2 {
  /* Закупки */
  /* Продажи */
}
#stage3-combined-v2 .ht_clone_top thead th:nth-child(6),
#stage3-combined-v2 .ht_clone_top thead th:nth-child(7),
#stage3-combined-v2 .ht_clone_top thead th:nth-child(8),
#stage3-combined-v2 .ht_clone_top thead th:nth-child(9),
#stage3-combined-v2 .ht_clone_top thead th:nth-child(10),
#stage3-combined-v2 .ht_master thead th:nth-child(6),
#stage3-combined-v2 .ht_master thead th:nth-child(7),
#stage3-combined-v2 .ht_master thead th:nth-child(8),
#stage3-combined-v2 .ht_master thead th:nth-child(9),
#stage3-combined-v2 .ht_master thead th:nth-child(10) {
  background-color: #e97132 !important;
  color: white !important;
  font-weight: 600;
}
#stage3-combined-v2 .ht_clone_top thead th:nth-child(11),
#stage3-combined-v2 .ht_clone_top thead th:nth-child(12),
#stage3-combined-v2 .ht_clone_top thead th:nth-child(13),
#stage3-combined-v2 .ht_clone_top thead th:nth-child(14),
#stage3-combined-v2 .ht_master thead th:nth-child(11),
#stage3-combined-v2 .ht_master thead th:nth-child(12),
#stage3-combined-v2 .ht_master thead th:nth-child(13),
#stage3-combined-v2 .ht_master thead th:nth-child(14) {
  background-color: #a02b93 !important;
  color: white !important;
  font-weight: 600;
}
/* Stage 4 - Сверка Плана КД с Планом МП (колонки 6-8 фиолетовые) */
#stage4-verification .ht_clone_top thead th:nth-child(6),
#stage4-verification .ht_clone_top thead th:nth-child(7),
#stage4-verification .ht_clone_top thead th:nth-child(8),
#stage4-verification .ht_master thead th:nth-child(6),
#stage4-verification .ht_master thead th:nth-child(7),
#stage4-verification .ht_master thead th:nth-child(8) {
  background-color: #a02b93 !important;
  color: white !important;
  font-weight: 600;
}
/* Stage 4 - Распределение по МП (динамические колонки через класс) */
/* Stage 5 - План продаж менеджеров (динамические колонки через класс) */
/* Класс добавляется через afterGetColHeader hook */
#stage4-mp-distribution thead tr:last-child th.ht-highlighted-header,
#stage5-manager-sales-table thead tr:last-child th.ht-highlighted-header {
  background-color: #a02b93 !important;
  color: white !important;
  font-weight: 600 !important;
}
#stage4-mp-distribution thead tr:last-child th.ht-highlighted-header-blue,
#stage5-manager-sales-table thead tr:last-child th.ht-highlighted-header-blue {
  background-color: #60A5FA !important;
  color: white !important;
  font-weight: 600 !important;
}
/* Stage 4 - Распределение по МП
   Подсветка идёт через класс `ht-highlighted-header`, который добавляется
   в `MpDistributionTable` через afterGetColHeader (по аналогии со Stage5, но в рамках Stage4). */
/* Purchase Planning (periods view) */
#purchase-periods-v2 .ht_clone_top thead th:nth-child(4),
#purchase-periods-v2 .ht_master thead th:nth-child(4) {
  background-color: #e97132 !important;
  color: white !important;
  font-weight: 600;
}
/* Purchase Planning (analytics by periods) — id зависит от года */
[id^=purchase-analytics-] .ht_clone_top thead th:nth-child(4),
[id^=purchase-analytics-] .ht_master thead th:nth-child(4) {
  background-color: #e97132 !important;
  color: white !important;
  font-weight: 600;
}
[id^=purchase-analytics-] .ht_clone_top thead th:nth-child(17),
[id^=purchase-analytics-] .ht_master thead th:nth-child(17) {
  background-color: #10B981 !important;
  color: white !important;
}
.ant-card {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.06);
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.ant-card:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
}
.ant-card .ant-card-body {
  padding: 16px;
}
.ant-card .ant-card-head {
  border-radius: 12px 12px 0 0;
}
.ant-btn {
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.ant-btn:not(:disabled):hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
}
.ant-btn:not(:disabled):active {
  transform: scale(0.98);
}
.ant-btn.ant-btn-primary:not(:disabled):hover {
  box-shadow: 0 6px 16px rgba(59, 130, 246, 0.3);
}
.ant-modal-wrap {
  z-index: 1000;
}
.ant-modal-mask {
  z-index: 1000;
}
/**
 * Высокоприоритетные модальные окна
 * Используются для критически важных диалогов
 */
.high-priority-modal,
.high-priority-modal.ant-modal-wrap {
  z-index: 10000 !important;
}
.ant-modal-mask[style*="z-index: 9999"] {
  z-index: 9999 !important;
}
.ant-dropdown {
  z-index: 1010 !important;
}
.ant-notification {
  z-index: 1011 !important;
}
.ant-tooltip {
  z-index: 1050 !important;
}
.ant-tooltip .ant-tooltip-inner {
  border-radius: 4px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.06);
}
.ant-switch-small {
  min-width: 28px;
  height: 16px;
}
.ant-switch-small .ant-switch-handle {
  width: 12px;
  height: 12px;
  top: 2px;
}
.ant-switch-small.ant-switch-checked .ant-switch-handle {
  inset-inline-start: calc(100% - 14px);
}
.ant-drawer .role-permissions-matrix {
  scroll-behavior: smooth;
}
.driver-popover {
  background: white;
  padding: 0;
  max-width: 400px;
  border: 1px solid var(--light-border);
  border-radius: var(--radius-lg);
  font-family: "Montserrat", sans-serif;
  /**
   * Базовые стили для кнопок
   * Применяются ко всем кнопкам навигации
   */
}
.driver-popover .driver-popover-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-navy);
  padding: 20px 20px 12px;
  margin: 0;
  border-bottom: 1px solid var(--light-border);
}
.driver-popover .driver-popover-description {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  padding: 16px 20px;
  margin: 0;
}
.driver-popover .driver-popover-footer {
  padding: 12px 20px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.driver-popover .driver-popover-progress-text {
  font-size: 12px;
  color: #666;
  font-weight: 500;
}
.driver-popover .driver-popover-navigation-btns {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.driver-popover .driver-popover-btn {
  font-size: 14px;
  font-weight: 600;
  padding: 8px 16px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
  text-shadow: none !important;
  line-height: 1.5;
}
.driver-popover .driver-popover-btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-hover-sm);
}
.driver-popover .driver-popover-btn:active {
  transform: scale(0.98);
}
.driver-popover .driver-popover-prev-btn {
  background: transparent;
  color: var(--primary-navy);
  border: 1px solid var(--light-border);
}
.driver-popover .driver-popover-prev-btn:hover {
  background: var(--light-bg);
  border-color: var(--primary-navy-light);
}
.driver-popover .driver-popover-next-btn {
  font-weight: 600;
  background: transparent;
  color: var(--primary-navy);
  border: 1px solid var(--light-border);
}
.driver-popover .driver-popover-next-btn:hover {
  background: var(--light-bg);
  border-color: var(--primary-navy-light);
}
.driver-popover .driver-popover-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 18px;
  transition: all var(--transition-base);
  z-index: 1;
}
.driver-popover .driver-popover-close-btn:hover {
  background: var(--light-bg);
  color: var(--primary-navy);
  transform: scale(1.1);
}
.driver-popover .driver-popover-close-btn:active {
  transform: scale(0.95);
}
.driver-popover .driver-popover-arrow {
  border: 5px solid transparent;
}
.driver-popover .driver-popover-arrow.driver-popover-arrow-side-top {
  border-bottom-color: white;
}
.driver-popover .driver-popover-arrow.driver-popover-arrow-side-bottom {
  border-top-color: white;
}
.driver-popover .driver-popover-arrow.driver-popover-arrow-side-left {
  border-right-color: white;
}
.driver-popover .driver-popover-arrow.driver-popover-arrow-side-right {
  border-left-color: white;
}
@keyframes driverFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes driverSlideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.driver-popover {
  animation: driverSlideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.role-card-compact {
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.role-card-compact:hover:not([style*="cursor: not-allowed"]) {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
}
.role-card-compact--selected {
  box-shadow: 0 6px 12px -2px rgba(0, 0, 0, 0.12), 0 3px 6px -3px rgba(0, 0, 0, 0.08);
}
.permission-category-panel-compact {
  margin-bottom: 16px;
  border: 1px solid #f0f0f0;
  border-radius: 6px;
  background: #fff;
  overflow: hidden;
}
.permission-category-panel-compact .permissions-table-compact .ant-table {
  font-size: 12px;
}
.permission-category-panel-compact .permissions-table-compact .ant-table-thead > tr > th {
  background: #fafafa;
  font-weight: 500;
  font-size: 11px;
  padding: 8px;
  color: #595959;
  border-bottom: 1px solid #f0f0f0;
}
.permission-category-panel-compact .permissions-table-compact .ant-table-tbody > tr > td {
  padding: 10px 8px;
  border-bottom: 1px solid #fafafa;
}
.permission-category-panel-compact .permissions-table-compact .ant-table-tbody > tr:last-child > td {
  border-bottom: none;
}
.permission-category-panel-compact .permissions-table-compact .ant-table-tbody > tr:hover > td {
  background: #fafafa;
}
.permission-toggle-wrapper {
  position: relative;
}
.permission-toggle-wrapper.animating {
  animation: permissionPulse 0.5s ease-in-out;
}
.permission-switch-animating {
  animation: switchGlow 0.6s ease-in-out;
}
@keyframes permissionPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
}
@keyframes switchGlow {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(24, 144, 255, 0);
  }
  50% {
    box-shadow: 0 0 8px 4px rgba(24, 144, 255, 0.4);
  }
}
.role-permissions-matrix .ant-input-affix-wrapper {
  border-radius: 6px;
}
.role-permissions-matrix .ant-input-affix-wrapper:hover, .role-permissions-matrix .ant-input-affix-wrapper:focus {
  border-color: #40a9ff;
  box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.1);
}
.role-permissions-matrix .ant-empty {
  margin: 40px 0;
}
.fade-enter {
  animation: fadeIn 0.3s ease-in-out;
}
.fade-exit {
  animation: fadeIn 0.3s ease-in-out reverse;
}
.permission-badge {
  transition: all 0.3s ease;
}
.permission-badge:hover {
  transform: scale(1.05);
}
.role-permissions-matrix .permission-category-panel-compact + .permission-category-panel-compact {
  margin-top: 16px;
}
@keyframes permissionWave {
  0% {
    box-shadow: 0 0 0 0 rgba(24, 144, 255, 0.4);
  }
  50% {
    box-shadow: 0 0 10px 6px rgba(24, 144, 255, 0.2);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(24, 144, 255, 0);
  }
}
.permission-wave-animation {
  animation: permissionWave 0.8s ease-out;
}
.loading-shimmer {
  background: linear-gradient(90deg, #f0f0f0 0%, rgb(227.25, 227.25, 227.25) 20%, #f0f0f0 40%, #f0f0f0 100%);
  background-size: 200% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
  border-radius: 4px;
}
.roles-table .ant-table-tbody > tr {
  transition: all 0.3s ease;
}
.roles-table .ant-table-tbody > tr:hover {
  background-color: #fafafa;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.roles-table .ant-badge {
  cursor: help;
  transition: transform 0.2s ease;
}
.roles-table .ant-badge:hover {
  transform: scale(1.1);
}
[data-framer-motion] {
  contain: layout style paint;
}
.layout-stable {
  contain: layout;
  transform: translateZ(0);
}
.smooth-scroll {
  scroll-behavior: smooth;
  overscroll-behavior: contain;
}
.no-flicker {
  -webkit-transform-style: preserve-3d;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  transform: translateZ(0);
}
.virtual-list {
  contain: strict;
  will-change: scroll-position;
}
:root {
  /* Основные цвета Navy Blue */
  --primary-navy: #1e3a8a;
  --primary-navy-light: #3b82f6;
  --primary-navy-dark: #1e40af;
  /* Фоновые цвета */
  --light-bg: #f8fafb;
  --light-surface: #ffffff;
  --light-border: #e5e5e5;
  /* Отступы */
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-2xl: 48px;
  /* Отступы для системы таблиц */
  --card-body-padding: 16px;
  --table-minimal-safe-gap: 4px;
  --table-final-safe-gap: 2px;
  /* Радиусы */
  --radius-lg: 12px;
  --radius-xl: 16px;
  /* Система теней */
  --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 2px 4px 0 rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
  /* Тени для состояний */
  --shadow-hover-sm: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
  --shadow-hover-md: 0 6px 12px -2px rgba(0, 0, 0, 0.12), 0 3px 6px -3px rgba(0, 0, 0, 0.08);
  --shadow-hover-primary: 0 6px 16px rgba(59, 130, 246, 0.3);
  --shadow-focus: 0 0 0 3px rgba(59, 130, 246, 0.1);
  /* Анимации */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
}._loadingContainer_mltk9_1 {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}
/**
 * Центрирование элемента через flexbox
 * @example
 *   .container {
 *     @include flex-center;
 *   }
 */
/**
 * Абсолютное позиционирование на всю область родителя
 * @example
 *   .overlay {
 *     @include absolute-cover;
 *   }
 */
/**
 * Скрытие скроллбара
 * @example
 *   .scrollable {
 *     @include hide-scrollbar;
 *   }
 */
/**
 * Кастомный скроллбар
 * @param {Color} $thumb-color - цвет ползунка
 * @param {Color} $track-color - цвет трека
 * @example
 *   .scrollable {
 *     @include custom-scrollbar(#3b82f6, #f0f0f0);
 *   }
 */
/**
 * Обрезка текста с многоточием
 * @param {Number} $lines - количество строк (по умолчанию 1)
 * @example
 *   .text {
 *     @include text-ellipsis;
 *   }
 *   .multiline {
 *     @include text-ellipsis(3);
 *   }
 */
/**
 * Улучшенная типографика
 * @example
 *   body {
 *     @include font-smoothing;
 *   }
 */
/**
 * Эффект подъёма при наведении
 * @param {String} $shadow - тень при наведении
 * @example
 *   .card {
 *     @include hover-lift;
 *   }
 */
/**
 * Эффект увеличения при наведении
 * @param {Number} $scale - коэффициент масштабирования
 * @example
 *   .button {
 *     @include hover-scale(1.05);
 *   }
 */
/**
 * Backdrop blur эффект (стеклянная морфология)
 * @param {Number} $blur - степень размытия
 * @param {Color} $bg - фоновый цвет
 * @example
 *   .glass-card {
 *     @include glass-morphism(10px, rgba(255, 255, 255, 0.1));
 *   }
 */
/**
 * Треугольник через CSS
 * @param {String} $direction - направление (up, down, left, right)
 * @param {Size} $size - размер треугольника
 * @param {Color} $color - цвет треугольника
 * @example
 *   .tooltip::after {
 *     @include triangle(down, 8px, #333);
 *   }
 */
/**
 * Media query для минимальной ширины
 * @param {Size} $breakpoint - точка перелома
 * @example
 *   .container {
 *     @include media-min($breakpoint-lg) {
 *       max-width: 1200px;
 *     }
 *   }
 */
/**
 * Media query для максимальной ширины
 * @param {Size} $breakpoint - точка перелома
 * @example
 *   .sidebar {
 *     @include media-max($breakpoint-md) {
 *       display: none;
 *     }
 *   }
 */
/**
 * Миксин для страниц "в разработке"
 * @example
 *   .under-construction-page {
 *     @include under-construction-page;
 *   }
 */
/**
 * Карточка с градиентным фоном
 * @param {Color} $color-start - начальный цвет градиента
 * @param {Color} $color-end - конечный цвет градиента
 * @example
 *   .premium-card {
 *     @include gradient-card(#667eea, #764ba2);
 *   }
 */
/**
 * Skeleton loader для загрузки
 * @param {Color} $base-color - базовый цвет
 * @example
 *   .skeleton {
 *     @include skeleton-loader;
 *   }
 */
@keyframes _bounce_1ohsh_1 {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}
@keyframes _shimmer_1ohsh_1 {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
._breadcrumbs_1ohsh_148 {
  margin-bottom: 24px;
  padding: 8px 16px;
  background: rgba(24, 144, 255, 0.03);
  border-radius: 8px;
  border: 1px solid rgba(24, 144, 255, 0.08);
}

._breadcrumbsList_1ohsh_156 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 4px;
}

._breadcrumbItem_1ohsh_166 {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
}

._breadcrumbLink_1ohsh_173 {
  color: #1890ff;
  text-decoration: none;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  padding: 2px 6px;
  border-radius: 4px;
}
._breadcrumbLink_1ohsh_173:hover {
  color: #1e40af;
  background: rgba(24, 144, 255, 0.08);
}
._breadcrumbLink_1ohsh_173:focus {
  outline: 2px solid rgba(24, 144, 255, 0.3);
  outline-offset: 2px;
}

._breadcrumbCurrent_1ohsh_189 {
  color: #333333;
  font-weight: 600;
  padding: 2px 6px;
}

._breadcrumbSeparator_1ohsh_195 {
  color: #666666;
  font-weight: 300;
  opacity: 0.5;
  user-select: none;
}

@keyframes _breadcrumbsFadeIn_1ohsh_1 {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
._breadcrumbs_1ohsh_148 {
  animation: _breadcrumbsFadeIn_1ohsh_1 0.3s ease-out;
}._skeletonContainer_1gpgj_1 {
  width: 100% !important;
  min-height: 400px;
  padding: 0 !important;
  margin: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 0;
}
._skeletonContainer_1gpgj_1 .ant-skeleton-element {
  position: relative;
  overflow: hidden;
}
._skeletonContainer_1gpgj_1 .ant-skeleton-element::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.2) 20%, rgba(255, 255, 255, 0.5) 60%, rgba(255, 255, 255, 0));
  animation: shimmer 2s infinite;
}
._skeletonContainer_1gpgj_1 .ant-skeleton-input {
  height: 32px !important;
}

._tableSkeleton_1gpgj_29 {
  width: 100%;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

._toolbar_1gpgj_37 {
  display: flex;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
._toolbar_1gpgj_37 .ant-skeleton-button {
  width: 80px !important;
}

._tableHeader_1gpgj_47 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  padding: 12px 20px;
  background: rgba(0, 0, 0, 0.02);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

._tableBody_1gpgj_56 {
  padding: 8px 0;
}

._tableRow_1gpgj_60 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  padding: 8px 20px;
}
._tableRow_1gpgj_60:hover {
  background: rgba(0, 0, 0, 0.01);
}

._tableCell_1gpgj_70 .ant-skeleton-input {
  height: 28px !important;
}

._formSkeleton_1gpgj_74 {
  max-width: 600px;
  margin: 0 auto;
  padding: 32px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

._formGroup_1gpgj_83 {
  margin-bottom: 24px;
}

._formActions_1gpgj_87 {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

._pageSkeleton_1gpgj_95 {
  width: 100%;
  display: flex;
  flex-direction: column;
}

._pageContainer_1gpgj_101 {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px;
}

._centeredTitle_1gpgj_109 {
  text-align: center;
  margin-bottom: 24px;
}

._stagesNavigationWrapper_1gpgj_114 {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
  padding: 6px;
  background: rgba(24, 144, 255, 0.15);
  border-radius: 16px;
  border: 1px solid rgba(24, 144, 255, 0.25);
}

._stagesNavigationInner_1gpgj_124 {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: center;
}

._viewSwitcher_1gpgj_131 {
  background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
  border-radius: 12px;
  padding: 12px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 8px;
  border: 1px solid #d6e4ff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

._card_1gpgj_143 {
  background: white;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

._cardCentered_1gpgj_150 {
  background: white;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

._loadingHeader_1gpgj_161 {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 48px 24px !important;
  margin: 0 0 32px 0 !important;
  background: white !important;
  border-radius: 12px !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

._loadingText_1gpgj_175 {
  margin-top: 24px;
  text-align: center;
}

._pageHeader_1gpgj_180 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

@keyframes _shimmer_1gpgj_1 {
  to {
    transform: translateX(100%);
  }
}
@media (min-width: 1600px) {
  ._tableHeader_1gpgj_47,
  ._tableRow_1gpgj_60 {
    grid-template-columns: repeat(8, 1fr);
  }
}._tableSkeletonWrapper_3y7ka_1 {
  width: 100%;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}
._tableSkeletonWrapper_3y7ka_1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #e6f7ff 0%, #bae7ff 50%, #e6f7ff 100%);
  opacity: 0.5;
  animation: _gradientMove_3y7ka_1 3s ease-in-out infinite;
  z-index: 10;
  pointer-events: none;
}

._toolbar_3y7ka_26 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid #f0f0f0;
  background: #fafafa;
  flex-shrink: 0;
  gap: 8px;
}
._toolbar_3y7ka_26 ._toolbarLeft_3y7ka_36,
._toolbar_3y7ka_26 ._toolbarRight_3y7ka_37 {
  display: flex;
  gap: 8px;
  align-items: center;
}
._toolbar_3y7ka_26 ._toolbarLeft_3y7ka_36 {
  flex: 0 0 auto;
}
._toolbar_3y7ka_26 ._toolbarRight_3y7ka_37 {
  flex: 1 1 auto;
  justify-content: flex-end;
}

._tableContainer_3y7ka_50 {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  overflow: auto;
  min-height: 0;
}

._tableHeader_3y7ka_58 {
  display: flex;
  background: #fafafa;
  border-bottom: 2px solid #f0f0f0;
  padding: 0;
  flex-shrink: 0;
  gap: 0;
  min-height: 48px;
}
._tableHeader_3y7ka_58 ._headerCell_3y7ka_67 {
  padding: 12px 16px;
  border-right: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 0;
}
._tableHeader_3y7ka_58 ._headerCell_3y7ka_67:last-child {
  border-right: none;
}
._tableHeader_3y7ka_58 ._headerCell_3y7ka_67 .ant-skeleton-element .ant-skeleton-input {
  min-width: 40px;
  width: 100% !important;
}

._tableBody_3y7ka_83 {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: 0;
  overflow: auto;
}

._tableRow_3y7ka_92 {
  display: flex;
  border-bottom: 1px solid #f0f0f0;
  gap: 0;
  flex-shrink: 0;
  min-height: 40px;
  height: 40px;
  transition: background-color 0.3s ease;
  align-items: center;
}
._tableRow_3y7ka_92:nth-child(even) {
  background: rgba(0, 0, 0, 0.01);
}
._tableRow_3y7ka_92:hover {
  background: rgba(0, 0, 0, 0.02);
}

._tableCell_3y7ka_109 {
  padding: 10px 16px;
  border-right: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 0;
  height: 100%;
}
._tableCell_3y7ka_109:last-child {
  border-right: none;
}
._tableCell_3y7ka_109 .ant-skeleton-element .ant-skeleton-input {
  min-width: 30px;
  width: 100% !important;
}

.ant-skeleton-element {
  width: 100%;
  display: flex;
  align-items: center;
}
.ant-skeleton-element .ant-skeleton-input {
  height: 20px !important;
  width: 100% !important;
  background: #efefef !important;
  border-radius: 4px;
}
.ant-skeleton-element .ant-skeleton-input::after {
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.5) 50%, transparent 100%) !important;
  animation: shimmer 2s infinite !important;
}
.ant-skeleton-element .ant-skeleton-button {
  height: 32px !important;
  min-width: 60px !important;
  background: #efefef !important;
  border-radius: 4px;
}
.ant-skeleton-element .ant-skeleton-button::after {
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.5) 50%, transparent 100%) !important;
  animation: shimmer 2s infinite !important;
}

@keyframes _shimmer_3y7ka_1 {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}
@keyframes _gradientMove_3y7ka_1 {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
/**
 * Стили для страниц планирования
 * 
 * ВАЖНО: Этот файл содержит общие стили, которые используются на:
 * - Страницах планирования продаж (SalesPlanning)
 * - Страницах планирования закупок (PurchasePlanning)
 * - Страницах справочников (References)
 * 
 * Общие стили импортируются из CommonStages.module.scss
 * Для новых страниц рекомендуется создавать отдельные файлы стилей
 * и импортировать только необходимые общие стили.
 */
/**
 * Центрирование элемента через flexbox
 * @example
 *   .container {
 *     @include flex-center;
 *   }
 */
/**
 * Абсолютное позиционирование на всю область родителя
 * @example
 *   .overlay {
 *     @include absolute-cover;
 *   }
 */
/**
 * Скрытие скроллбара
 * @example
 *   .scrollable {
 *     @include hide-scrollbar;
 *   }
 */
/**
 * Кастомный скроллбар
 * @param {Color} $thumb-color - цвет ползунка
 * @param {Color} $track-color - цвет трека
 * @example
 *   .scrollable {
 *     @include custom-scrollbar(#3b82f6, #f0f0f0);
 *   }
 */
/**
 * Обрезка текста с многоточием
 * @param {Number} $lines - количество строк (по умолчанию 1)
 * @example
 *   .text {
 *     @include text-ellipsis;
 *   }
 *   .multiline {
 *     @include text-ellipsis(3);
 *   }
 */
/**
 * Улучшенная типографика
 * @example
 *   body {
 *     @include font-smoothing;
 *   }
 */
/**
 * Эффект подъёма при наведении
 * @param {String} $shadow - тень при наведении
 * @example
 *   .card {
 *     @include hover-lift;
 *   }
 */
/**
 * Эффект увеличения при наведении
 * @param {Number} $scale - коэффициент масштабирования
 * @example
 *   .button {
 *     @include hover-scale(1.05);
 *   }
 */
/**
 * Backdrop blur эффект (стеклянная морфология)
 * @param {Number} $blur - степень размытия
 * @param {Color} $bg - фоновый цвет
 * @example
 *   .glass-card {
 *     @include glass-morphism(10px, rgba(255, 255, 255, 0.1));
 *   }
 */
/**
 * Треугольник через CSS
 * @param {String} $direction - направление (up, down, left, right)
 * @param {Size} $size - размер треугольника
 * @param {Color} $color - цвет треугольника
 * @example
 *   .tooltip::after {
 *     @include triangle(down, 8px, #333);
 *   }
 */
/**
 * Media query для минимальной ширины
 * @param {Size} $breakpoint - точка перелома
 * @example
 *   .container {
 *     @include media-min($breakpoint-lg) {
 *       max-width: 1200px;
 *     }
 *   }
 */
/**
 * Media query для максимальной ширины
 * @param {Size} $breakpoint - точка перелома
 * @example
 *   .sidebar {
 *     @include media-max($breakpoint-md) {
 *       display: none;
 *     }
 *   }
 */
/**
 * Миксин для страниц "в разработке"
 * @example
 *   .under-construction-page {
 *     @include under-construction-page;
 *   }
 */
/**
 * Карточка с градиентным фоном
 * @param {Color} $color-start - начальный цвет градиента
 * @param {Color} $color-end - конечный цвет градиента
 * @example
 *   .premium-card {
 *     @include gradient-card(#667eea, #764ba2);
 *   }
 */
/**
 * Skeleton loader для загрузки
 * @param {Color} $base-color - базовый цвет
 * @example
 *   .skeleton {
 *     @include skeleton-loader;
 *   }
 */
@keyframes _bounce_ecm6n_1 {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}
@keyframes _shimmer_ecm6n_1 {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
/**
 * Стили для страниц планирования
 * 
 * ВАЖНО: Этот файл содержит общие стили, которые используются на:
 * - Страницах планирования продаж (SalesPlanning)
 * - Страницах планирования закупок (PurchasePlanning)
 * - Страницах справочников (References)
 * 
 * Общие стили импортируются из CommonStages.module.scss
 * Для новых страниц рекомендуется создавать отдельные файлы стилей
 * и импортировать только необходимые общие стили.
 */
/**
 * Общие стили для страниц с этапами планирования
 * 
 * Используется в:
 * - SalesPlanning (планирование продаж)
 * - PurchasePlanning (планирование закупок)
 * - References (справочники)
 * 
 * @see SalesPlanPage.module.scss - полный набор стилей для страниц планирования
 */
._pageContainer_ecm6n_182 {
  padding: 24px;
  width: 100%;
}

._stagesNavigation_ecm6n_187 {
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
}

._planningStagesBlock_ecm6n_193 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: rgba(24, 144, 255, 0.15);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 6px;
  border: 1px solid rgba(24, 144, 255, 0.25);
  box-shadow: inset 0 1px 0 rgba(24, 144, 255, 0.3), 0 2px 12px rgba(24, 144, 255, 0.1);
  margin: 0 auto;
  width: fit-content;
  max-width: 1200px;
  overflow-x: auto;
  overflow-y: hidden;
  flex-wrap: wrap;
}
@media (max-width: 1200px) {
  ._planningStagesBlock_ecm6n_193 {
    max-width: 100%;
    padding: 4px;
    gap: 2px;
  }
}

._stageButton_ecm6n_219 {
  padding: 10px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(24, 144, 255, 0.9);
  border: 1px solid rgba(24, 144, 255, 0.1);
  font-weight: 600;
  font-size: 13px;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  min-width: 160px;
  max-width: 180px;
  text-align: center;
  flex-shrink: 0;
}
@media (max-width: 1200px) {
  ._stageButton_ecm6n_219 {
    min-width: 140px;
    max-width: 160px;
    padding: 8px 8px;
    font-size: 12px;
  }
}
._stageButton_ecm6n_219:hover {
  color: #1890ff;
  background: rgba(24, 144, 255, 0.15);
  border-color: rgba(24, 144, 255, 0.3);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(24, 144, 255, 0.15);
}
._stageButton_ecm6n_219._active_ecm6n_255 {
  background: rgba(24, 144, 255, 0.2);
  color: #1890ff;
  border-color: rgba(24, 144, 255, 0.4);
  box-shadow: 0 2px 8px rgba(24, 144, 255, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
._stageButton_ecm6n_219._active_ecm6n_255::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(24, 144, 255, 0.15) 0%, rgba(24, 144, 255, 0.08) 100%);
  z-index: -1;
}
._stageButton_ecm6n_219._completed_ecm6n_269 {
  background: rgba(82, 196, 26, 0.2);
  color: #389e0d;
  border-color: rgba(82, 196, 26, 0.3);
}
._stageButton_ecm6n_219._completed_ecm6n_269:hover {
  background: rgba(82, 196, 26, 0.25);
  color: #389e0d;
  border-color: rgba(82, 196, 26, 0.4);
  box-shadow: 0 4px 12px rgba(82, 196, 26, 0.15);
}

._stageContent_ecm6n_281 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

._stageTitle_ecm6n_288 {
  font-weight: 700;
  font-size: 14px;
  color: inherit;
}
@media (max-width: 1200px) {
  ._stageTitle_ecm6n_288 {
    font-size: 13px;
  }
}

._stageDescription_ecm6n_299 {
  font-weight: 500;
  font-size: 11px;
  opacity: 0.85;
  color: inherit;
  line-height: 1.2;
}
@media (max-width: 1200px) {
  ._stageDescription_ecm6n_299 {
    font-size: 10px;
  }
}

._stageIcon_ecm6n_312 {
  font-size: 16px;
  margin-bottom: 2px;
  opacity: 0.9;
}
@media (max-width: 1200px) {
  ._stageIcon_ecm6n_312 {
    font-size: 14px;
  }
}

@keyframes _fadeInUp_ecm6n_1 {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes _scaleIn_ecm6n_1 {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
._pageContainer_ecm6n_182 {
  padding: 24px;
  width: 100%;
}

._stagesNavigation_ecm6n_187 {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

._planningStagesBlock_ecm6n_193 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: rgba(24, 144, 255, 0.15);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 6px;
  border: 1px solid rgba(24, 144, 255, 0.25);
  box-shadow: inset 0 1px 0 rgba(24, 144, 255, 0.3), 0 2px 12px rgba(24, 144, 255, 0.1);
  margin: 0 auto;
  width: fit-content;
  max-width: 1200px;
  overflow-x: auto;
  overflow-y: hidden;
  flex-wrap: wrap;
}
@media (max-width: 1200px) {
  ._planningStagesBlock_ecm6n_193 {
    max-width: 100%;
    padding: 4px;
    gap: 2px;
  }
}

._stagesAdditionalContent_ecm6n_383 {
  display: flex;
  justify-content: center;
  animation: _slideInDown_ecm6n_1 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform-origin: top center;
}
@media (max-width: 1200px) {
  ._stagesAdditionalContent_ecm6n_383 {
    width: 100%;
  }
}

@keyframes _slideInDown_ecm6n_1 {
  0% {
    opacity: 0;
    transform: translateY(-8px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
._stageButton_ecm6n_219 {
  padding: 10px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(24, 144, 255, 0.9);
  border: 1px solid rgba(24, 144, 255, 0.1);
  font-weight: 600;
  font-size: 13px;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  min-width: 160px;
  max-width: 180px;
  text-align: center;
  flex-shrink: 0;
}
@media (max-width: 1200px) {
  ._stageButton_ecm6n_219 {
    min-width: 140px;
    max-width: 160px;
    padding: 8px 8px;
    font-size: 12px;
  }
}
._stageButton_ecm6n_219:hover {
  color: #1890ff;
  background: rgba(24, 144, 255, 0.15);
  border-color: rgba(24, 144, 255, 0.3);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(24, 144, 255, 0.15);
}
._stageButton_ecm6n_219._active_ecm6n_255 {
  background: rgba(24, 144, 255, 0.2);
  color: #1890ff;
  border-color: rgba(24, 144, 255, 0.4);
  box-shadow: 0 2px 8px rgba(24, 144, 255, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
._stageButton_ecm6n_219._active_ecm6n_255::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(24, 144, 255, 0.15) 0%, rgba(24, 144, 255, 0.08) 100%);
  z-index: -1;
}
._stageButton_ecm6n_219._completed_ecm6n_269 {
  background: rgba(82, 196, 26, 0.2);
  color: #389e0d;
  border-color: rgba(82, 196, 26, 0.3);
}
._stageButton_ecm6n_219._completed_ecm6n_269:hover {
  background: rgba(82, 196, 26, 0.25);
  color: #389e0d;
  border-color: rgba(82, 196, 26, 0.4);
  box-shadow: 0 4px 12px rgba(82, 196, 26, 0.15);
}

._stageContent_ecm6n_281 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

._stageTitle_ecm6n_288 {
  font-weight: 700;
  font-size: 14px;
  color: inherit;
}
@media (max-width: 1200px) {
  ._stageTitle_ecm6n_288 {
    font-size: 13px;
  }
}

._stageDescription_ecm6n_299 {
  font-weight: 500;
  font-size: 11px;
  opacity: 0.85;
  color: inherit;
  line-height: 1.2;
}
@media (max-width: 1200px) {
  ._stageDescription_ecm6n_299 {
    font-size: 10px;
  }
}

._stageIcon_ecm6n_312 {
  font-size: 16px;
  margin-bottom: 2px;
  opacity: 0.9;
}
@media (max-width: 1200px) {
  ._stageIcon_ecm6n_312 {
    font-size: 14px;
  }
}

._businessGroupsTable_ecm6n_509 {
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  position: relative;
}
._businessGroupsTable_ecm6n_509 .ant-card {
  width: 100%;
  min-width: 100%;
  max-width: 100%;
}
._businessGroupsTable_ecm6n_509 .ant-card .ant-card-body {
  width: 100%;
  padding: 16px;
  overflow: hidden;
}
._businessGroupsTable_ecm6n_509 .horizontalScroll .ant-card-body {
  overflow-x: auto !important;
  overflow-y: visible !important;
}
._businessGroupsTable_ecm6n_509 ._tableControls_ecm6n_529 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  width: 100%;
}
._businessGroupsTable_ecm6n_509 ._tableControls_ecm6n_529 .ant-space {
  flex-wrap: wrap;
  gap: 8px;
}

._analyticsTableCard_ecm6n_541 {
  animation: _fadeInUp_ecm6n_1 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
  height: 100%;
  width: 100%;
  max-width: 100%;
  margin-bottom: 24px;
  padding: 0 24px;
  box-sizing: border-box;
}
._analyticsTableCard_ecm6n_541 .ant-card-body {
  width: 100%;
  padding: 16px;
  overflow-x: auto;
}
._analyticsTableCard_ecm6n_541 .ant-collapse {
  width: 100%;
  max-width: 100%;
}
._analyticsTableCard_ecm6n_541 .ant-collapse-content {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
._analyticsTableCard_ecm6n_541 .ant-collapse-content-box {
  width: 100%;
  max-width: 100%;
  padding: 16px;
  overflow-x: auto;
}

._planBGtableCard_ecm6n_571 {
  animation: _fadeInUp_ecm6n_1 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
  width: 100%;
  height: 100%;
  margin-bottom: 24px;
}
._planBGtableCard_ecm6n_571 .ant-card-body {
  width: 100%;
  height: 100%;
  padding: 16px;
  overflow-x: auto;
}

@media (prefers-reduced-motion: no-preference) {
  ._businessGroupsTable_ecm6n_509:not(._no-animations_ecm6n_585) .ant-card {
    transition: box-shadow 0.2s ease-out;
  }
  ._businessGroupsTable_ecm6n_509:not(._no-animations_ecm6n_585) .ant-card:hover {
    box-shadow: 0 4px 20px rgba(24, 144, 255, 0.1);
  }
  ._businessGroupsTable_ecm6n_509 .ant-card:has(._handsontable-container_ecm6n_591) {
    transition: none;
  }
  ._businessGroupsTable_ecm6n_509 .ant-card:has(._handsontable-container_ecm6n_591):hover {
    transform: none;
    box-shadow: none;
  }
}
@keyframes _fadeInUp_ecm6n_1 {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
._constructionContainer_ecm6n_609 {
  padding: 24px;
  min-height: 30vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

._constructionCard_ecm6n_617 {
  max-width: 600px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
._constructionCard_ecm6n_617:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

._constructionContent_ecm6n_629 {
  width: 100%;
}

._constructionIcon_ecm6n_633 {
  font-size: 64px;
  color: #faad14;
  animation: _bounce_ecm6n_1 2s infinite;
}

._constructionTitle_ecm6n_639 {
  color: #1e3a8a;
  margin-bottom: 0;
}

._constructionDescription_ecm6n_644 {
  font-size: 16px;
  color: #666666;
  margin-bottom: 24px;
}

@keyframes _bounce_ecm6n_1 {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}
._dualTableContainer_ecm6n_661 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  width: 100%;
  margin-top: 24px;
}
@media (max-width: 1200px) {
  ._dualTableContainer_ecm6n_661 {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

._verticalTableContainer_ecm6n_675 {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  margin-top: 24px;
}

._tableCard_ecm6n_683 {
  height: 600px;
}
._tableCard_ecm6n_683 .ant-card-body {
  height: calc(100% - 60px);
  padding: 16px;
  overflow: hidden;
}
._tableCard_ecm6n_683 .ant-card-head {
  padding: 12px 16px;
  min-height: auto;
}
._tableCard_ecm6n_683 .ant-card-head-title {
  padding: 0;
}

._stageHeader_ecm6n_699 {
  text-align: center;
  margin-bottom: 24px;
}
._stageHeader_ecm6n_699 h3 {
  color: #1e3a8a;
  margin-bottom: 8px;
}

._businessGroupSelector_ecm6n_708 {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding: 16px;
  background: rgba(24, 144, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(24, 144, 255, 0.1);
}
._businessGroupSelector_ecm6n_708 ._selectorLabel_ecm6n_718 {
  font-weight: 600;
  color: #1e3a8a;
  white-space: nowrap;
}
._businessGroupSelector_ecm6n_708 .ant-select {
  min-width: 300px;
  flex: 1;
}
._businessGroupSelector_ecm6n_708 ._selectedInfo_ecm6n_727 {
  color: #666666;
  font-size: 14px;
  font-style: italic;
}

._errorBoundary_ecm6n_733 {
  padding: 24px;
  text-align: center;
  background: rgba(255, 77, 79, 0.05);
  border: 1px solid rgba(255, 77, 79, 0.2);
  border-radius: 12px;
}
._errorBoundary_ecm6n_733 h3 {
  color: #ff4d4f;
  margin-bottom: 16px;
}

._suspenseFallback_ecm6n_745 {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  font-size: 16px;
  color: #666666;
}

._stage5Container_ecm6n_754 {
  width: 100%;
  padding: 0;
}

._stage5TopSection_ecm6n_759 {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto 32px;
  padding: 0 24px;
}
._stage5TopSection_ecm6n_759 .ant-card {
  width: 100%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  transition: box-shadow 0.3s ease;
}
._stage5TopSection_ecm6n_759 .ant-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

._stage5TableSection_ecm6n_775 {
  width: 100%;
  margin: 0;
  padding: 0;
}

._emptyPlaceholder_ecm6n_781 {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  margin: 20px;
  background: rgba(24, 144, 255, 0.05);
  border: 2px dashed rgba(24, 144, 255, 0.3);
  border-radius: 12px;
}
._emptyPlaceholder_ecm6n_781 p {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.45);
  margin: 0;
  font-weight: 500;
}._pageContainer_3zv1z_1 {
  padding: 48px 24px;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

._centerCard_3zv1z_9 {
  max-width: 600px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

._contentSpace_3zv1z_15 {
  width: 100%;
}

._constructionIcon_3zv1z_19 {
  font-size: 64px;
  color: #faad14;
}

._title_3zv1z_24 {
  color: #1e3a8a;
  margin-bottom: 0 !important;
}

._description_3zv1z_29 {
  font-size: 16px;
  color: #666666;
  margin-bottom: 24px;
}
/**
 * Центрирование элемента через flexbox
 * @example
 *   .container {
 *     @include flex-center;
 *   }
 */
/**
 * Абсолютное позиционирование на всю область родителя
 * @example
 *   .overlay {
 *     @include absolute-cover;
 *   }
 */
/**
 * Скрытие скроллбара
 * @example
 *   .scrollable {
 *     @include hide-scrollbar;
 *   }
 */
/**
 * Кастомный скроллбар
 * @param {Color} $thumb-color - цвет ползунка
 * @param {Color} $track-color - цвет трека
 * @example
 *   .scrollable {
 *     @include custom-scrollbar(#3b82f6, #f0f0f0);
 *   }
 */
/**
 * Обрезка текста с многоточием
 * @param {Number} $lines - количество строк (по умолчанию 1)
 * @example
 *   .text {
 *     @include text-ellipsis;
 *   }
 *   .multiline {
 *     @include text-ellipsis(3);
 *   }
 */
/**
 * Улучшенная типографика
 * @example
 *   body {
 *     @include font-smoothing;
 *   }
 */
/**
 * Эффект подъёма при наведении
 * @param {String} $shadow - тень при наведении
 * @example
 *   .card {
 *     @include hover-lift;
 *   }
 */
/**
 * Эффект увеличения при наведении
 * @param {Number} $scale - коэффициент масштабирования
 * @example
 *   .button {
 *     @include hover-scale(1.05);
 *   }
 */
/**
 * Backdrop blur эффект (стеклянная морфология)
 * @param {Number} $blur - степень размытия
 * @param {Color} $bg - фоновый цвет
 * @example
 *   .glass-card {
 *     @include glass-morphism(10px, rgba(255, 255, 255, 0.1));
 *   }
 */
/**
 * Треугольник через CSS
 * @param {String} $direction - направление (up, down, left, right)
 * @param {Size} $size - размер треугольника
 * @param {Color} $color - цвет треугольника
 * @example
 *   .tooltip::after {
 *     @include triangle(down, 8px, #333);
 *   }
 */
/**
 * Media query для минимальной ширины
 * @param {Size} $breakpoint - точка перелома
 * @example
 *   .container {
 *     @include media-min($breakpoint-lg) {
 *       max-width: 1200px;
 *     }
 *   }
 */
/**
 * Media query для максимальной ширины
 * @param {Size} $breakpoint - точка перелома
 * @example
 *   .sidebar {
 *     @include media-max($breakpoint-md) {
 *       display: none;
 *     }
 *   }
 */
/**
 * Миксин для страниц "в разработке"
 * @example
 *   .under-construction-page {
 *     @include under-construction-page;
 *   }
 */
/**
 * Карточка с градиентным фоном
 * @param {Color} $color-start - начальный цвет градиента
 * @param {Color} $color-end - конечный цвет градиента
 * @example
 *   .premium-card {
 *     @include gradient-card(#667eea, #764ba2);
 *   }
 */
/**
 * Skeleton loader для загрузки
 * @param {Color} $base-color - базовый цвет
 * @example
 *   .skeleton {
 *     @include skeleton-loader;
 *   }
 */
@keyframes _bounce_1fmje_1 {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}
@keyframes _shimmer_1fmje_1 {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
._longreadContainer_1fmje_148 {
  width: 100%;
  overflow-x: hidden;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
}

._heroBackdrop_1fmje_159 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  overflow: hidden;
  pointer-events: none;
}

._heroGradient_1fmje_169 {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120vw;
  height: 160vh;
  z-index: 0;
}

._heroSection_1fmje_179 {
  position: relative;
  min-height: calc(90vh - 80px);
  margin-top: -80px;
  padding: 200px 0 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}
._heroSection_1fmje_179::after {
  content: "";
  position: absolute;
  inset: 0;
  mix-blend-mode: screen;
  pointer-events: none;
}

._heroContent_1fmje_196 {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: 0 24px;
}

._heroTitle_1fmje_204 {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 16px;
  background: linear-gradient(45deg, #1e3a8a, #1e3a8a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

._heroDescription_1fmje_214 {
  font-size: 1.5rem;
  margin-bottom: 32px;
  color: #1e40af;
}

._heroButton_1fmje_220 {
  position: relative;
  overflow: hidden;
  font-size: 1.0625rem;
  height: 56px;
  padding: 0 80px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid #667eea;
  color: #1e40af;
  transition: all 0.3s ease;
}
._heroButton_1fmje_220:hover {
  background: rgba(255, 255, 255, 0.28);
  border-color: #022de9;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(30, 64, 175, 0.3);
}

._section_1fmje_239 {
  padding: 120px 0;
  width: 100%;
  position: relative;
}
._section_1fmje_239#_modules-section_1fmje_1 {
  padding-top: 0;
}

._sectionContent_1fmje_248 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

._sectionHeader_1fmje_254 {
  text-align: center;
  margin-bottom: 48px;
}
._sectionHeader_1fmje_254 h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 16px;
}
._sectionHeader_1fmje_254 p {
  font-size: 1.25rem;
  color: #64748b;
  max-width: 640px;
  margin: 0 auto;
}

._moduleCard_1fmje_271 {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: #ffffff;
  transition: all 0.4s ease;
}
._moduleCard_1fmje_271:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.1);
}
._moduleCard_1fmje_271:hover ._moduleGradient_1fmje_283 {
  height: 8px;
  opacity: 1;
}
._moduleCard_1fmje_271:hover ._moduleIcon_1fmje_287 {
  transform: scale(1.05);
}

._moduleGradient_1fmje_283 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, rgba(30, 64, 175, 0.85), rgba(59, 130, 246, 0.85));
}

._moduleIcon_1fmje_287 {
  transition: all 0.4s ease;
}

._moduleCardContent_1fmje_304 {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 40px 32px;
}

._moduleTitle_1fmje_314 {
  color: #0f172a;
  margin-bottom: 8px;
}

._moduleDescription_1fmje_319 {
  color: #475569;
  margin-bottom: 0;
}

._moduleBadge_1fmje_324 {
  background: rgba(30, 64, 175, 0.08);
  margin-top: 16px;
  padding: 8px 16px;
  border-radius: 999px;
  color: #1e3a8a;
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
}

._moduleFeatureList_1fmje_336 {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
}

._moduleFeatureItem_1fmje_345 {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(30, 64, 175, 0.08);
  color: #1e3a8a;
  font-weight: 500;
}
._moduleFeatureItem_1fmje_345 svg {
  color: #1e40af;
}

._stagesTimeline_1fmje_360 {
  margin-top: 32px;
}
._stagesTimeline_1fmje_360 ._ant-timeline-item-content_1fmje_363 {
  min-height: auto;
}

._stageCard_1fmje_367 {
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: none;
  transition: transform 0.3s ease;
}
._stageCard_1fmje_367:hover {
  transform: translateY(-4px);
}

._stageHeader_1fmje_377 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

._stageFeatures_1fmje_384 {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

._stageFeatureChip_1fmje_390 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.12);
  color: #1e3a8a;
  font-weight: 500;
}
._stageFeatureChip_1fmje_390 svg {
  color: #2563eb;
}

._stagesInfo_1fmje_404 {
  margin-top: 32px;
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.18);
}

._techCard_1fmje_410 {
  margin-bottom: 24px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
._techCard_1fmje_410:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

._techCategoryHeader_1fmje_421 {
  color: #1e3a8a;
}

._techItem_1fmje_425 {
  transition: all 0.3s ease;
  border-radius: 8px;
}
._techItem_1fmje_425:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

._techItemContent_1fmje_434 {
  text-align: center;
}

._featureCard_1fmje_438 {
  border-radius: 16px;
  text-align: left;
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: none;
  transition: transform 0.3s ease;
}
._featureCard_1fmje_438:hover {
  transform: translateY(-4px);
}

._featureIcon_1fmje_449 {
  color: #1e3a8a;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}
._featureIcon_1fmje_449:hover {
  transform: scale(1.1);
  color: #2563eb;
}

._featureBenefits_1fmje_459 {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

._featureBenefit_1fmje_459 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(30, 64, 175, 0.1);
  color: #0f172a;
  font-weight: 500;
}
._featureBenefit_1fmje_459 svg {
  color: #1e40af;
}

._navigationCard_1fmje_479 {
  border-radius: 16px;
  transition: all 0.3s ease;
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: none;
}
._navigationCard_1fmje_479:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
}

._navigationCardContent_1fmje_491 {
  display: flex;
  align-items: center;
  gap: 16px;
}

._navigationIcon_1fmje_497 {
  font-size: 32px;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.05);
  transition: all 0.4s ease;
}
._navigationIcon_1fmje_497:hover {
  transform: scale(1.2);
  filter: brightness(1.2);
}

._navigationInfo_1fmje_514 {
  flex: 1;
}

._navigationNote_1fmje_518 {
  text-align: center;
  padding: 48px;
  border-radius: 20px;
  border: 1px solid rgba(148, 163, 184, 0.18);
}
._navigationNote_1fmje_518 h4 {
  color: #0f172a;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
._navigationNote_1fmje_518 p {
  max-width: 560px;
  margin: 16px auto 32px;
  color: #475569;
  font-size: 1.05rem;
}
._navigationNote_1fmje_518 button {
  min-width: 160px;
}

/* Scroll animations - disabled for landing page */
._scrollAnimateUp_1fmje_540 {
  opacity: 1;
  transform: translateY(0);
}
._scrollAnimateUp_1fmje_540._visible_1fmje_544 {
  opacity: 1;
  transform: translateY(0);
}

._scrollAnimateLeft_1fmje_549 {
  opacity: 1;
  transform: translateX(0);
}
._scrollAnimateLeft_1fmje_549._visible_1fmje_544 {
  opacity: 1;
  transform: translateX(0);
}

._scrollAnimateRight_1fmje_558 {
  opacity: 1;
  transform: translateX(0);
}
._scrollAnimateRight_1fmje_558._visible_1fmje_544 {
  opacity: 1;
  transform: translateX(0);
}

._scrollAnimateScale_1fmje_567 {
  opacity: 1;
  transform: scale(1);
}
._scrollAnimateScale_1fmje_567._visible_1fmje_544 {
  opacity: 1;
  transform: scale(1);
}

/* Stagger animations for cards */
._staggerItem_1fmje_577 {
  transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

._staggerItemExit_1fmje_581 {
  transition: all 0.8s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

@keyframes _fadeInUp_1fmje_1 {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
html {
  scroll-behavior: smooth;
}