
/*html {
  font-size: 14px;
}*/
/*@media (min-width: 1024px) {
  .objects {
    min-height: 100vh;
    display: flex;
    align-items: center;
  }
}*/

.task-tree-container[data-v-018a91cf] {
  padding: 1rem;
}
.task-name[data-v-018a91cf] {
  transition: all 0.2s ease;
}

/**
 * Стили для зачеркивания выполненных задач
 * Применяются когда задача отмечена в selectedKeys как completed
 */
.task-completed[data-v-018a91cf] {
  text-decoration: line-through;
  color: var(--text-color-secondary);
  opacity: 0.7;
  font-style: italic;
}

/**
 * Дополнительные стили для состояния выполненных задач
 */
.task-completed[data-v-018a91cf]::after {
  content: ' ✓';
  color: var(--green-500);
  font-weight: bold;
  margin-left: 0.5rem;
}
.gantt-toolbar[data-v-2ec3677e] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 50px;
  padding: 0 16px;
  background: #f8f9fa;
  border-bottom: 1px solid #dee2e6;
  position: relative;
}
.gantt-toolbar .toolbar-left[data-v-2ec3677e],
.gantt-toolbar .toolbar-right[data-v-2ec3677e] {
  display: flex;
  align-items: center;
  gap: 16px;
}
.toolbar-title[data-v-2ec3677e] {
  font-weight: 600;
  font-size: 16px;
  color: #495057;
}
.toolbar-title .project-name[data-v-2ec3677e] {
  font-weight: normal;
  color: #6c757d;
}
.time-scale-selector[data-v-2ec3677e] {
  display: flex;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  overflow: hidden;
  background: white;
}
.time-scale-selector button[data-v-2ec3677e] {
  padding: 6px 12px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 13px;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.time-scale-selector button[data-v-2ec3677e]:hover {
  background: #f8f9fa;
}
.time-scale-selector button.active[data-v-2ec3677e] {
  background: #007bff;
  color: white;
}
.time-scale-selector button[data-v-2ec3677e]:not(:last-child) {
  border-right: 1px solid #dee2e6;
}
.view-controls[data-v-2ec3677e] {
  display: flex;
  gap: 8px;
}
.view-controls .control-btn[data-v-2ec3677e] {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 10px;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  background: white;
  cursor: pointer;
  font-size: 12px;
  transition: all 0.2s ease;
}
.view-controls .control-btn[data-v-2ec3677e]:hover {
  background: #f8f9fa;
  border-color: #adb5bd;
}
.view-controls .control-btn.active[data-v-2ec3677e] {
  background: #e3f2fd;
  border-color: #007bff;
  color: #0056b3;
}
.view-controls .control-btn svg[data-v-2ec3677e] {
  flex-shrink: 0;
}
.progress-indicator[data-v-2ec3677e] {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
}
.progress-indicator .progress-label[data-v-2ec3677e] {
  color: #6c757d;
}
.progress-indicator .progress-bar-mini[data-v-2ec3677e] {
  width: 60px;
  height: 6px;
  background: #e9ecef;
  border-radius: 3px;
  overflow: hidden;
}
.progress-indicator .progress-fill-mini[data-v-2ec3677e] {
  height: 100%;
  background: #28a745;
  transition: width 0.3s ease;
}
.progress-indicator .progress-text[data-v-2ec3677e] {
  font-weight: 500;
  color: #495057;
  min-width: 30px;
  text-align: right;
}
.mode-toggle[data-v-2ec3677e] {
  display: flex;
  align-items: center;
  gap: 8px;
}
.mode-toggle .mode-label[data-v-2ec3677e] {
  font-size: 13px;
  color: #495057;
  cursor: pointer;
}
.mode-toggle .toggle-switch[data-v-2ec3677e] {
  position: relative;
  width: 44px;
  height: 22px;
  background: #dee2e6;
  border-radius: 11px;
  cursor: pointer;
  transition: background 0.2s ease;
}
.mode-toggle .toggle-switch.active[data-v-2ec3677e] {
  background: #007bff;
}
.mode-toggle .toggle-switch .toggle-handle[data-v-2ec3677e] {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  background: white;
  border-radius: 50%;
  transition: transform 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
.toggle-switch.active .mode-toggle .toggle-switch .toggle-handle[data-v-2ec3677e] {
  transform: translateX(22px);
}
.action-buttons[data-v-2ec3677e] {
  display: flex;
  gap: 8px;
}
.btn[data-v-2ec3677e] {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn[data-v-2ec3677e]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.btn svg[data-v-2ec3677e] {
  flex-shrink: 0;
}
.btn svg.spinning[data-v-2ec3677e] {
  animation: spin-2ec3677e 1s linear infinite;
}
.btn .unsaved-indicator[data-v-2ec3677e] {
  color: #ffc107;
  font-weight: bold;
}
.btn.btn-secondary[data-v-2ec3677e] {
  background: white;
  border-color: #dee2e6;
  color: #495057;
}
.btn.btn-secondary[data-v-2ec3677e]:hover:not(:disabled) {
  background: #f8f9fa;
  border-color: #adb5bd;
}
.btn.btn-success[data-v-2ec3677e] {
  background: #28a745;
  border-color: #28a745;
  color: white;
}
.btn.btn-success[data-v-2ec3677e]:hover:not(:disabled) {
  background: #218838;
  border-color: #1e7e34;
}
.dropdown[data-v-2ec3677e] {
  position: relative;
}
.dropdown .dropdown-toggle[data-v-2ec3677e] {
  position: relative;
}
.dropdown .dropdown-toggle[data-v-2ec3677e]::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  margin-left: 4px;
}
.dropdown .dropdown-menu[data-v-2ec3677e] {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 200px;
  background: white;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: all 0.2s ease;
}
.dropdown.open .dropdown-menu[data-v-2ec3677e] {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.dropdown .dropdown-item[data-v-2ec3677e] {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 8px 12px;
  border: none;
  background: transparent;
  text-align: left;
  cursor: pointer;
  font-size: 13px;
  transition: background 0.2s ease;
}
.dropdown .dropdown-item[data-v-2ec3677e]:hover {
  background: #f8f9fa;
}
.dropdown .dropdown-item[data-v-2ec3677e]:first-child {
  border-radius: 4px 4px 0 0;
}
.dropdown .dropdown-item[data-v-2ec3677e]:last-child {
  border-radius: 0 0 4px 4px;
}
.dropdown .dropdown-item svg[data-v-2ec3677e] {
  flex-shrink: 0;
  opacity: 0.7;
}
.status-bar[data-v-2ec3677e] {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #dee2e6;
  border-top: none;
  z-index: 100;
}
.status-bar.success[data-v-2ec3677e] {
  background: #d4edda;
  border-color: #c3e6cb;
  color: #155724;
}
.status-bar.error[data-v-2ec3677e] {
  background: #f8d7da;
  border-color: #f5c6cb;
  color: #721c24;
}
.status-bar.warning[data-v-2ec3677e] {
  background: #fff3cd;
  border-color: #ffeaa7;
  color: #856404;
}
.status-bar.info[data-v-2ec3677e] {
  background: #cce7ff;
  border-color: #b3d7ff;
  color: #004085;
}
.status-content[data-v-2ec3677e] {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  font-size: 13px;
}
.status-content svg[data-v-2ec3677e] {
  flex-shrink: 0;
}
.status-content .status-text[data-v-2ec3677e] {
  flex: 1;
}
.status-content .status-close[data-v-2ec3677e] {
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 2px;
  border-radius: 2px;
  transition: background 0.2s ease;
}
.status-content .status-close[data-v-2ec3677e]:hover {
  background: rgba(0, 0, 0, 0.1);
}
@keyframes spin-2ec3677e {
from {
    transform: rotate(0deg);
}
to {
    transform: rotate(360deg);
}
}
@media (max-width: 768px) {
.gantt-toolbar[data-v-2ec3677e] {
    flex-direction: column;
    height: auto;
    padding: 8px;
    gap: 8px;
}
.gantt-toolbar .toolbar-left[data-v-2ec3677e],
  .gantt-toolbar .toolbar-right[data-v-2ec3677e] {
    width: 100%;
    justify-content: space-between;
    gap: 8px;
}
.gantt-toolbar .toolbar-title[data-v-2ec3677e] {
    font-size: 14px;
}
.gantt-toolbar .toolbar-title .project-name[data-v-2ec3677e] {
    display: block;
    font-size: 12px;
}
.gantt-toolbar .view-controls[data-v-2ec3677e],
  .gantt-toolbar .progress-indicator[data-v-2ec3677e] {
    display: none;
}
.gantt-toolbar .action-buttons .btn[data-v-2ec3677e] {
    padding: 4px 8px;
    font-size: 12px;
}
.gantt-toolbar .action-buttons .btn span[data-v-2ec3677e]:not(.unsaved-indicator) {
    display: none;
}
}
@media print {
.gantt-toolbar[data-v-2ec3677e] {
    display: none;
}
}.gantt-row[data-v-9bae640b] {
  display: flex;
  height: 40px;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.2s ease;
  cursor: pointer;
}
.gantt-row[data-v-9bae640b]:hover {
  background-color: rgba(0, 123, 255, 0.05);
}
.gantt-row.selected[data-v-9bae640b] {
  background-color: rgba(0, 123, 255, 0.1);
  border-color: #007bff;
}
.gantt-row.critical-task[data-v-9bae640b] {
  background-color: rgba(220, 53, 69, 0.05);
  border-left: 3px solid #dc3545;
}
.gantt-row.overdue-task[data-v-9bae640b] {
  background-color: rgba(220, 53, 69, 0.1);
  border-left: 3px solid #dc3545;
}
.gantt-row.completed-task[data-v-9bae640b] {
  background-color: rgba(40, 167, 69, 0.05);
  color: #6c757d;
}
.gantt-row.completed-task .task-text[data-v-9bae640b] {
  text-decoration: line-through;
}
.row-cell[data-v-9bae640b] {
  display: flex;
  align-items: center;
  padding: 0 8px;
  border-right: 1px solid #f0f0f0;
  overflow: hidden;
}
.row-cell.task-name[data-v-9bae640b] {
  flex: 1;
  min-width: 200px;
  padding: 0;
  position: relative;
}
.row-cell.responsible[data-v-9bae640b] {
  width: 120px;
}
.row-cell.dates[data-v-9bae640b] {
  width: 100px;
  flex-direction: column;
  align-items: flex-start;
  font-size: 11px;
  line-height: 1.2;
}
.row-cell.progress[data-v-9bae640b] {
  width: 80px;
}
.row-cell.controls[data-v-9bae640b] {
  width: 80px;
  gap: 4px;
}
.task-indent[data-v-9bae640b] {
  flex-shrink: 0;
}
.expand-toggle[data-v-9bae640b] {
  width: 16px;
  height: 16px;
  border: none;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 4px;
  border-radius: 2px;
  transition: all 0.2s ease;
}
.expand-toggle[data-v-9bae640b]:hover {
  background: rgba(0, 0, 0, 0.1);
}
.expand-toggle svg[data-v-9bae640b] {
  transition: transform 0.2s ease;
}
.expand-toggle svg.expanded[data-v-9bae640b] {
  transform: rotate(90deg);
}
.task-icon[data-v-9bae640b] {
  margin-right: 6px;
  flex-shrink: 0;
}
.task-icon.task[data-v-9bae640b] {
  color: #007bff;
}
.task-icon.milestone[data-v-9bae640b] {
  color: #ffc107;
}
.task-icon.phase[data-v-9bae640b] {
  color: #17a2b8;
}
.task-text[data-v-9bae640b] {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 500;
  padding: 0 8px;
}
.task-badges[data-v-9bae640b] {
  display: flex;
  gap: 2px;
  margin-right: 8px;
}
.task-badges .badge[data-v-9bae640b] {
  font-size: 10px;
  padding: 1px 3px;
  border-radius: 2px;
}
.task-badges .badge.critical[data-v-9bae640b] {
  background: rgba(220, 53, 69, 0.1);
}
.task-badges .badge.overdue[data-v-9bae640b] {
  background: rgba(220, 53, 69, 0.15);
}
.task-badges .badge.completed[data-v-9bae640b] {
  background: rgba(40, 167, 69, 0.1);
}
.user-info[data-v-9bae640b] {
  display: flex;
  align-items: center;
  gap: 6px;
  width: 100%;
}
.user-avatar[data-v-9bae640b] {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 10px;
  font-weight: 600;
  flex-shrink: 0;
}
.user-name[data-v-9bae640b] {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 12px;
}
.no-user[data-v-9bae640b] {
  color: #6c757d;
  font-style: italic;
}
.date-start[data-v-9bae640b],
.date-end[data-v-9bae640b] {
  color: #495057;
}
.date-start.actual[data-v-9bae640b],
.date-end.actual[data-v-9bae640b] {
  color: #28a745;
  font-weight: 500;
}
.date-end[data-v-9bae640b] {
  color: #6c757d;
}
.no-dates[data-v-9bae640b] {
  color: #6c757d;
  font-style: italic;
  align-self: center;
}
.progress-container[data-v-9bae640b] {
  width: 100%;
}
.progress-bar[data-v-9bae640b] {
  width: 100%;
  height: 6px;
  background: #f8f9fa;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 2px;
}
.progress-fill[data-v-9bae640b] {
  height: 100%;
  transition: width 0.3s ease;
}
.progress-text[data-v-9bae640b] {
  font-size: 10px;
  text-align: center;
  color: #6c757d;
}
.control-btn[data-v-9bae640b] {
  width: 24px;
  height: 24px;
  border: none;
  background: none;
  cursor: pointer;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.control-btn[data-v-9bae640b]:hover {
  background: rgba(0, 0, 0, 0.1);
}
.control-btn.edit-btn[data-v-9bae640b] {
  color: #007bff;
}
.control-btn.edit-btn[data-v-9bae640b]:hover {
  background: rgba(0, 123, 255, 0.1);
}
.control-btn.delete-btn[data-v-9bae640b] {
  color: #dc3545;
}
.control-btn.delete-btn[data-v-9bae640b]:hover {
  background: rgba(220, 53, 69, 0.1);
}
@media (max-width: 768px) {
.gantt-row .responsible[data-v-9bae640b],
  .gantt-row .planned-dates[data-v-9bae640b],
  .gantt-row .actual-dates[data-v-9bae640b] {
    display: none;
}
.gantt-row .progress[data-v-9bae640b] {
    width: 60px;
}
.gantt-row .controls[data-v-9bae640b] {
    width: 60px;
}
}.gantt-bar-container[data-v-5f0fdcbb] {
  cursor: pointer;
}
.gantt-bar-container:hover .dependency-connector[data-v-5f0fdcbb] {
  opacity: 1;
}
.gantt-bar[data-v-5f0fdcbb] {
  position: relative;
  border-radius: 4px;
  border: 1px solid #ddd;
  transition: all 0.2s ease;
  overflow: hidden;
}
.gantt-bar.planned-bar[data-v-5f0fdcbb] {
  background: repeating-linear-gradient(45deg, transparent, transparent 3px, rgba(108, 117, 125, 0.3) 3px, rgba(108, 117, 125, 0.3) 6px);
  border-style: dashed;
  opacity: 0.7;
}
.gantt-bar.actual-bar[data-v-5f0fdcbb] {
  background: linear-gradient(to bottom, #28a745, #218838);
  border: 1px solid #1e7e34;
}
.gantt-bar.actual-bar.in-progress[data-v-5f0fdcbb] {
  background: linear-gradient(to bottom, #ffc107, #e0a800);
  border-color: #d39e00;
}
.gantt-bar.actual-bar.completed[data-v-5f0fdcbb] {
  background: linear-gradient(to bottom, #28a745, #218838);
  border-color: #1e7e34;
}
.gantt-bar.critical[data-v-5f0fdcbb] {
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.2);
}
.gantt-bar.selected[data-v-5f0fdcbb] {
  border-color: #007bff !important;
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.3);
}
.gantt-bar.overdue[data-v-5f0fdcbb] {
  border-color: #dc3545 !important;
  background: linear-gradient(to bottom, #dc3545, #c82333) !important;
}
.gantt-bar.priority-low.actual-bar[data-v-5f0fdcbb] {
  background: linear-gradient(to bottom, #6c757d, #5a6268);
  border-color: #545b62;
}
.gantt-bar.priority-high.actual-bar[data-v-5f0fdcbb] {
  background: linear-gradient(to bottom, #fd7e14, #e8630a);
  border-color: #d5570a;
}
.gantt-bar.priority-onFire.actual-bar[data-v-5f0fdcbb] {
  background: linear-gradient(to bottom, #dc3545, #c82333);
  border-color: #bd2130;
}
.bar-progress[data-v-5f0fdcbb] {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  transition: width 0.3s ease;
}
.bar-progress.actual-progress[data-v-5f0fdcbb] {
  background: rgba(255, 255, 255, 0.4);
}
.bar-label[data-v-5f0fdcbb] {
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: calc(100% - 16px);
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}
.bar-label.planned-label[data-v-5f0fdcbb] {
  color: #495057;
  text-shadow: none;
}
.resize-handle[data-v-5f0fdcbb] {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 6px;
  cursor: ew-resize;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.resize-handle.left[data-v-5f0fdcbb] {
  left: -3px;
  border-left: 2px solid #007bff;
}
.resize-handle.right[data-v-5f0fdcbb] {
  right: -3px;
  border-right: 2px solid #007bff;
}
.gantt-bar:hover .resize-handle[data-v-5f0fdcbb] {
  opacity: 1;
}
.milestone-marker .milestone-diamond[data-v-5f0fdcbb] {
  width: 16px;
  height: 16px;
  background: #28a745;
  border: 2px solid #1e7e34;
  transform: rotate(45deg);
  position: relative;
}
.milestone-marker.completed .milestone-marker .milestone-diamond[data-v-5f0fdcbb] {
  background: #007bff;
  border-color: #0056b3;
}
.milestone-marker.critical .milestone-marker .milestone-diamond[data-v-5f0fdcbb] {
  background: #dc3545;
  border-color: #c82333;
}
.milestone-marker.overdue .milestone-marker .milestone-diamond[data-v-5f0fdcbb] {
  background: #dc3545;
  border-color: #bd2130;
}
.milestone-marker .milestone-label[data-v-5f0fdcbb] {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  color: #495057;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.9);
  padding: 2px 4px;
  border-radius: 2px;
  border: 1px solid #dee2e6;
}
.progress-indicator[data-v-5f0fdcbb] {
  pointer-events: none;
  font-weight: 500;
}
.overdue-indicator[data-v-5f0fdcbb] {
  pointer-events: none;
}
.overdue-indicator svg[data-v-5f0fdcbb] {
  flex-shrink: 0;
}
.critical-indicator[data-v-5f0fdcbb] {
  position: absolute;
  top: -8px;
  right: -8px;
  z-index: 25;
  pointer-events: none;
}
.dependency-connector[data-v-5f0fdcbb] {
  position: absolute;
  top: 50%;
  width: 12px;
  height: 12px;
  border: 2px solid #007bff;
  background: white;
  border-radius: 50%;
  transform: translateY(-50%);
  cursor: crosshair;
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 30;
}
.dependency-connector.left[data-v-5f0fdcbb] {
  left: -6px;
}
.dependency-connector.right[data-v-5f0fdcbb] {
  right: -6px;
}
.dependency-connector[data-v-5f0fdcbb]:hover {
  background: #007bff;
}.gantt-timeline-header[data-v-bd2435b2] {
  position: sticky;
  top: 0;
  z-index: 100;
  background: white;
  border-bottom: 2px solid #dee2e6;
  user-select: none;
}
.timeline-row[data-v-bd2435b2] {
  position: relative;
  height: 30px;
  border-bottom: 1px solid #e9ecef;
}
.timeline-row.major-timeline[data-v-bd2435b2] {
  background: #f8f9fa;
  border-bottom: 1px solid #dee2e6;
}
.timeline-row.major-timeline .timeline-cell[data-v-bd2435b2] {
  font-weight: 600;
  font-size: 13px;
  color: #495057;
}
.timeline-row.minor-timeline[data-v-bd2435b2] {
  background: white;
}
.timeline-row.minor-timeline .timeline-cell[data-v-bd2435b2] {
  font-size: 11px;
  color: #6c757d;
}
.timeline-cell[data-v-bd2435b2] {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  border-right: 1px solid #f0f0f0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.2s ease;
}
.timeline-cell[data-v-bd2435b2]:hover {
  background: rgba(0, 123, 255, 0.05);
  z-index: 10;
}
.timeline-cell.weekend[data-v-bd2435b2] {
  background: rgba(255, 193, 7, 0.1);
}
.timeline-cell.weekend[data-v-bd2435b2]:hover {
  background: rgba(255, 193, 7, 0.2);
}
.timeline-cell.holiday[data-v-bd2435b2] {
  background: rgba(220, 53, 69, 0.1);
  color: #721c24;
}
.timeline-cell.holiday[data-v-bd2435b2]:hover {
  background: rgba(220, 53, 69, 0.2);
}
.timeline-cell.today[data-v-bd2435b2] {
  background: rgba(0, 123, 255, 0.15);
  color: #0056b3;
  font-weight: 600;
  position: relative;
}
.timeline-cell.today[data-v-bd2435b2]::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #007bff;
}
.timeline-cell.current-period[data-v-bd2435b2] {
  background: rgba(0, 123, 255, 0.1);
  font-weight: 500;
}
.timeline-cell.major-cell[data-v-bd2435b2] {
  font-size: 12px;
  padding: 0 8px;
}
.timeline-cell.minor-cell[data-v-bd2435b2] {
  font-size: 10px;
  padding: 0 4px;
}
.timeline-scale-info[data-v-bd2435b2] {
  position: absolute;
  top: 2px;
  right: 8px;
  display: flex;
  gap: 8px;
  font-size: 10px;
  color: #6c757d;
  background: rgba(255, 255, 255, 0.9);
  padding: 2px 6px;
  border-radius: 2px;
}
.timeline-scale-info .scale-label[data-v-bd2435b2] {
  font-weight: 600;
}
.timeline-scale-info .period-count[data-v-bd2435b2] {
  color: #adb5bd;
}
@media (max-width: 768px) {
.timeline-row[data-v-bd2435b2] {
    height: 25px;
}
.timeline-row.major-timeline .timeline-cell[data-v-bd2435b2] {
    font-size: 11px;
}
.timeline-row.minor-timeline .timeline-cell[data-v-bd2435b2] {
    font-size: 9px;
}
.timeline-scale-info[data-v-bd2435b2] {
    display: none;
}
}
@media (prefers-color-scheme: dark) {
.gantt-timeline-header[data-v-bd2435b2] {
    background: #1a1a1a;
    border-color: #404040;
}
.gantt-timeline-header .timeline-row[data-v-bd2435b2] {
    border-color: #404040;
}
.gantt-timeline-header .timeline-row.major-timeline[data-v-bd2435b2] {
    background: #2d2d2d;
}
.gantt-timeline-header .timeline-row.major-timeline .timeline-cell[data-v-bd2435b2] {
    color: #e0e0e0;
}
.gantt-timeline-header .timeline-row.minor-timeline[data-v-bd2435b2] {
    background: #1a1a1a;
}
.gantt-timeline-header .timeline-row.minor-timeline .timeline-cell[data-v-bd2435b2] {
    color: #adb5bd;
}
.gantt-timeline-header .timeline-cell[data-v-bd2435b2] {
    border-color: #404040;
}
.gantt-timeline-header .timeline-cell[data-v-bd2435b2]:hover {
    background: rgba(255, 255, 255, 0.1);
}
.gantt-timeline-header .timeline-cell.weekend[data-v-bd2435b2] {
    background: rgba(255, 193, 7, 0.2);
}
.gantt-timeline-header .timeline-cell.weekend[data-v-bd2435b2]:hover {
    background: rgba(255, 193, 7, 0.3);
}
.gantt-timeline-header .timeline-cell.holiday[data-v-bd2435b2] {
    background: rgba(220, 53, 69, 0.2);
    color: #f8d7da;
}
.gantt-timeline-header .timeline-cell.holiday[data-v-bd2435b2]:hover {
    background: rgba(220, 53, 69, 0.3);
}
.gantt-timeline-header .timeline-cell.today[data-v-bd2435b2] {
    background: rgba(0, 123, 255, 0.3);
    color: #87ceeb;
}
.gantt-timeline-header .timeline-cell.current-period[data-v-bd2435b2] {
    background: rgba(0, 123, 255, 0.2);
}
.gantt-timeline-header .timeline-scale-info[data-v-bd2435b2] {
    background: rgba(26, 26, 26, 0.9);
    color: #adb5bd;
}
.gantt-timeline-header .timeline-scale-info .scale-label[data-v-bd2435b2] {
    color: #e0e0e0;
}
}
@media print {
.timeline-scale-info[data-v-bd2435b2] {
    display: none;
}
.timeline-cell[data-v-bd2435b2]:hover {
    background: transparent;
}
}.gantt-dependencies-container[data-v-e7e8e418] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 15;
}
.dependencies-svg[data-v-e7e8e418] {
  width: 100%;
  height: 100%;
  pointer-events: auto;
}
.dependency-group .dependency-line[data-v-e7e8e418] {
  cursor: pointer;
  transition: all 0.2s ease;
}
.dependency-group .dependency-line[data-v-e7e8e418]:hover {
  stroke: #007bff !important;
  stroke-width: 3 !important;
}
.dependency-group.critical .dependency-line[data-v-e7e8e418] {
  stroke-dasharray: none !important;
}
.dependency-group.critical .dependency-arrow[data-v-e7e8e418] {
  fill: #dc3545 !important;
}
.dependency-group.selected .dependency-line[data-v-e7e8e418] {
  stroke: #007bff !important;
  stroke-width: 3 !important;
}
.dependency-group.selected .dependency-arrow[data-v-e7e8e418] {
  fill: #007bff !important;
}
.dependency-arrow[data-v-e7e8e418] {
  transition: fill 0.2s ease;
}
.lag-label[data-v-e7e8e418] {
  font-size: 10px;
  font-weight: 500;
  fill: #495057;
  background: white;
  padding: 2px 4px;
  border-radius: 2px;
  pointer-events: none;
}
.delete-handle[data-v-e7e8e418] {
  cursor: pointer;
  transition: all 0.2s ease;
}
.delete-handle[data-v-e7e8e418]:hover {
  r: 10;
}
.delete-icon[data-v-e7e8e418] {
  cursor: pointer;
  pointer-events: none;
  font-weight: bold;
}
.creating-dependency .temp-dependency-line[data-v-e7e8e418] {
  pointer-events: none;
}
.connection-points .connection-point[data-v-e7e8e418] {
  cursor: crosshair;
  transition: all 0.2s ease;
  opacity: 0.6;
}
.connection-points .connection-point[data-v-e7e8e418]:hover, .connection-points .connection-point.active[data-v-e7e8e418] {
  r: 8;
  opacity: 1;
  stroke-width: 3;
}
.connection-points .connection-point.active[data-v-e7e8e418] {
  fill: #28a745;
}
.dependency-tooltip[data-v-e7e8e418] {
  position: fixed;
  background: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 12px;
  z-index: 1000;
  pointer-events: none;
  max-width: 250px;
}
.dependency-tooltip .tooltip-header[data-v-e7e8e418] {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}
.dependency-tooltip .tooltip-header .critical-badge[data-v-e7e8e418] {
  background: #dc3545;
  padding: 1px 4px;
  border-radius: 2px;
  font-size: 9px;
  font-weight: normal;
}
.dependency-tooltip .tooltip-body[data-v-e7e8e418] {
  font-size: 11px;
  opacity: 0.9;
}
.dependency-tooltip .tooltip-body div[data-v-e7e8e418] {
  margin-bottom: 2px;
}
.dependency-tooltip .tooltip-body div[data-v-e7e8e418]:last-child {
  margin-bottom: 0;
}
@keyframes dependency-pulse-e7e8e418 {
0%, 100% {
    stroke-dashoffset: 0;
}
50% {
    stroke-dashoffset: 10;
}
}
.temp-dependency-line[data-v-e7e8e418] {
  animation: dependency-pulse-e7e8e418 1s linear infinite;
}
@media (max-width: 768px) {
.connection-points[data-v-e7e8e418] {
    display: none;
}
.dependency-tooltip[data-v-e7e8e418] {
    font-size: 11px;
    padding: 6px 8px;
    max-width: 200px;
}
}
@media print {
.connection-points[data-v-e7e8e418],
  .delete-handle[data-v-e7e8e418],
  .delete-icon[data-v-e7e8e418] {
    display: none;
}
.dependency-line[data-v-e7e8e418]:hover {
    stroke: #6c757d !important;
    stroke-width: 2 !important;
}
}.gantt-container[data-v-cb67b69a] {
  display: flex;
  flex-direction: column;
  height: var(--6346414e);
  border: 1px solid #ddd;
  background: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.gantt-container.edit-mode .gantt-bar[data-v-cb67b69a] {
  cursor: grab;
}
.gantt-container.edit-mode .gantt-bar[data-v-cb67b69a]:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.gantt-main[data-v-cb67b69a] {
  display: flex;
  flex: 1;
  overflow: hidden;
}
.gantt-left-panel[data-v-cb67b69a] {
  display: flex;
  flex-direction: column;
  border-right: 1px solid #ddd;
  background: #fafafa;
}
.gantt-header-left[data-v-cb67b69a] {
  display: flex;
  height: 60px;
  border-bottom: 1px solid #ddd;
  background: #f5f5f5;
}
.gantt-header-left > div[data-v-cb67b69a] {
  display: flex;
  align-items: center;
  padding: 0 8px;
  font-weight: 600;
  font-size: 12px;
  color: #666;
  border-right: 1px solid #ddd;
}
.gantt-header-left > div[data-v-cb67b69a]:last-child {
  border-right: none;
}
.gantt-header-left .task-column-header[data-v-cb67b69a] {
  flex: 1;
  min-width: 200px;
}
.gantt-header-left .responsible-column-header[data-v-cb67b69a] {
  width: 120px;
}
.gantt-header-left .dates-column-header[data-v-cb67b69a] {
  width: 100px;
}
.gantt-header-left .actual-column-header[data-v-cb67b69a] {
  width: 100px;
}
.gantt-header-left .progress-column-header[data-v-cb67b69a] {
  width: 60px;
}
.gantt-tasks-list[data-v-cb67b69a] {
  flex: 1;
  overflow-y: auto;
}
.gantt-tasks-list .critical-task[data-v-cb67b69a] {
  background-color: #fff3cd;
  border-left: 3px solid #856404;
}
.gantt-tasks-list .overdue-task[data-v-cb67b69a] {
  background-color: #f8d7da;
  border-left: 3px solid #721c24;
}
.gantt-tasks-list .selected[data-v-cb67b69a] {
  background-color: #e3f2fd;
}
.gantt-resize-handle[data-v-cb67b69a] {
  width: 4px;
  background: #ddd;
  cursor: col-resize;
}
.gantt-resize-handle[data-v-cb67b69a]:hover {
  background: #bbb;
}
.gantt-right-panel[data-v-cb67b69a] {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.gantt-chart-area[data-v-cb67b69a] {
  flex: 1;
  position: relative;
  overflow: auto;
  background: #fff;
}
.gantt-grid[data-v-cb67b69a] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.gantt-grid .grid-column[data-v-cb67b69a] {
  position: absolute;
  top: 0;
  height: 100%;
  border-right: 1px solid #eee;
}
.gantt-grid .grid-column.weekend[data-v-cb67b69a] {
  background-color: #f8f9fa;
}
.gantt-grid .grid-column.holiday[data-v-cb67b69a] {
  background-color: #fff5f5;
}
.gantt-grid .grid-column[data-v-cb67b69a]:nth-child(odd) {
  background-color: rgba(0, 0, 0, 0.02);
}
.gantt-bars-container[data-v-cb67b69a] {
  position: relative;
  z-index: 10;
}
.current-date-line[data-v-cb67b69a] {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #dc3545;
  z-index: 100;
  pointer-events: none;
}
.current-date-line[data-v-cb67b69a]::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  width: 12px;
  height: 12px;
  background: #dc3545;
  border-radius: 50%;
}
.gantt-drop-zone[data-v-cb67b69a] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background: rgba(0, 123, 255, 0.1);
  border: 2px dashed #007bff;
}
.gantt-loading[data-v-cb67b69a] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.9);
  z-index: 1000;
}
.gantt-loading .loading-spinner[data-v-cb67b69a] {
  width: 40px;
  height: 40px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #007bff;
  border-radius: 50%;
  animation: spin-cb67b69a 1s linear infinite;
  margin-bottom: 16px;
}
.gantt-context-menu[data-v-cb67b69a] {
  position: fixed;
  background: white;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  min-width: 200px;
}
.gantt-context-menu .context-menu-item[data-v-cb67b69a] {
  padding: 8px 16px;
  cursor: pointer;
}
.gantt-context-menu .context-menu-item[data-v-cb67b69a]:hover {
  background: #f5f5f5;
}
.gantt-context-menu .context-menu-separator[data-v-cb67b69a] {
  height: 1px;
  background: #eee;
  margin: 4px 0;
}
@keyframes spin-cb67b69a {
0% {
    transform: rotate(0deg);
}
100% {
    transform: rotate(360deg);
}
}
.cf-form[data-v-45174fcf] {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-bottom: 8px;
}
.cf-field[data-v-45174fcf] {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.cf-label[data-v-45174fcf] {
    font-size: 12px;
    font-weight: 600;
    color: var(--p-text-muted-color, #6b7280);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.cf-field--error .cf-label[data-v-45174fcf] { color: var(--p-red-400);
}
.cf-required[data-v-45174fcf] { color: var(--p-red-400);
}
.cf-error[data-v-45174fcf] {
    font-size: 12px;
    color: var(--p-red-400, #f87171);
    display: flex;
    align-items: center;
    gap: 4px;
}
.project-progress-badge[data-v-c93b2782],
.customer-badge[data-v-c93b2782],
.product-badge[data-v-c93b2782],
.order-badge[data-v-c93b2782] {
  border-radius: var(--border-radius);
  padding: 0.25em 0.5rem;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.3px;
}
.product-badge.status-instock[data-v-c93b2782] {
  background: #C8E6C9;
  color: #256029;
}
.product-badge.status-outofstock[data-v-c93b2782] {
  background: #FFCDD2;
  color: #C63737;
}
.product-badge.status-lowstock[data-v-c93b2782] {
  background: #FEEDAF;
  color: #8A5340;
}
.project-progress-badge.status-hasNotBeenStarted[data-v-c93b2782] {
  background: #C8E6C9;
  color: #256029;
}
.project-progress-badge.status-justStarted[data-v-c93b2782] {
  background: #FFCDD2;
  color: #C63737;
}
.project-progress-badge.status-inProgress[data-v-c93b2782] {
  background: #FEEDAF;
  color: #8A5340;
}
.project-progress-badge.status-halfOfWay[data-v-c93b2782] {
  background: #B3E5FC;
  color: #23547B;
}
.project-progress-badge.status-onFire[data-v-c93b2782] {
  background: #f564b4;
  color: #7c142c;
}
.project-progress-badge.status-finishingSoon[data-v-c93b2782] {
  background: #b2ffea;
  color: #36806f;
}
.project-progress-badge.status-completed[data-v-c93b2782] {
  background: #c5ffb2;
  color: #118a09;
}
.customer-badge.status-qualified[data-v-c93b2782] {
  background: #C8E6C9;
  color: #256029;
}
.customer-badge.status-unqualified[data-v-c93b2782] {
  background: #FFCDD2;
  color: #C63737;
}
.customer-badge.status-negotiation[data-v-c93b2782] {
  background: #FEEDAF;
  color: #8A5340;
}
.customer-badge.status-new[data-v-c93b2782] {
  background: #B3E5FC;
  color: #23547B;
}
.customer-badge.status-renewal[data-v-c93b2782] {
  background: #ECCFFF;
  color: #694382;
}
.customer-badge.status-proposal[data-v-c93b2782] {
  background: #FFD8B2;
  color: #805B36;
}
.order-badge.order-delivered[data-v-c93b2782] {
  background: #C8E6C9;
  color: #256029;
}
.order-badge.order-cancelled[data-v-c93b2782] {
  background: #FFCDD2;
  color: #C63737;
}
.order-badge.order-pending[data-v-c93b2782] {
  background: #FEEDAF;
  color: #8A5340;
}
.order-badge.order-returned[data-v-c93b2782] {
  background: #ECCFFF;
  color: #694382;
}
[data-v-c93b2782] .p-datatable-frozen-tbody {
  font-weight: bold;
}
[data-v-c93b2782] .p-datatable-scrollable .p-frozen-column {
  font-weight: bold;
}