.order-layout {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.order-main-content {
  flex: 1;
  min-width: 0;
}

.workflow-sidebar {
  width: 300px;
  position: sticky;
  top: 20px;
  height: fit-content;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1024px) {
  .order-layout {
    flex-direction: column;
  }

  .workflow-sidebar {
    width: 100%;
    position: static;
  }
}

/* Существующие стили для workflow steps */
.workflow-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.workflow-step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px;
  border-radius: 6px;
  background: #f5f5f5;
}

.workflow-step.active {
  background: #e3f2fd;
}

.step-number {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.step-name {
  font-size: 14px;
}

.step-details {
  font-size: 12px;
  color: #666;
}

.tabs {
  margin-top: 20px;
}

.tabs-list {
  display: flex;
  gap: 2px;
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 20px;
}

.tab-trigger {
  padding: 12px 24px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  font-size: 14px;
  color: #666;
  transition: all 0.3s ease;
}

.tab-trigger:hover {
  color: #000;
}

.tab-trigger.active {
  color: #000;
  border-bottom-color: #2196f3;
  font-weight: 500;
}

.tab-content {
  display: none;
  padding: 20px;
}

.tab-content.active {
  display: block;
}

/* Стили для содержимого табов */
.files-container,
.verification-container,
.actions-container {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
}

.file-upload-area {
  border: 2px dashed #e0e0e0;
  border-radius: 8px;
  padding: 40px;
  text-align: center;
  margin-top: 20px;
}

.file-upload-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  color: #666;
}

.file-upload-label svg {
  color: #2196f3;
}

.hidden {
  display: none;
}

.verification-steps {
  margin-top: 20px;
}

.verification-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: #f5f5f5;
  border-radius: 8px;
  margin-bottom: 12px;
}

.verification-step.completed {
  background: #e8f5e9;
}

.step-indicator {
  width: 24px;
  height: 24px;
  background: #4caf50;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.actions-list {
  margin-top: 20px;
}

.action-item {
  display: flex;
  gap: 16px;
  padding: 16px;
  border-bottom: 1px solid #e0e0e0;
}

.action-time {
  color: #666;
  font-size: 14px;
  min-width: 60px;
}

.action-details h4 {
  margin: 0 0 4px 0;
  font-size: 14px;
}

.action-details p {
  margin: 0;
  color: #666;
  font-size: 14px;
} 

.sidebar-header h2 {
  font-size: 1.2rem;
  font-weight: 500;
}

.sidebar-contacts {
  width: 300px;
  background-color: white;
  border-right: 1px solid #ddd;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.status-value {
  color: blue;
  font-weight: 500;
}

.order-stage-id {
  color: #666;
  font-weight: 500;
}

.proposal-id {
  color: blue;
}


.document-container {
  border: 1px solid #ccc;
  padding: 20px;
  min-height: 500px;
  margin-bottom: 20px;
}
.controls {
  margin-bottom: 20px;
}