/* Data Production Panel Styles */
.data-production-panel {
  position: absolute;
  top: 70px;
  right: 20px;
  width: 500px;
  max-height: calc(100vh - 100px);
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  overflow-y: auto;
  border: 1px solid #e2e8f0;
}

.data-production-panel .panel-header {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  padding: 20px;
  color: white;
  border-radius: 12px 12px 0 0;
}

.data-production-panel .panel-body {
  padding: 20px;
}

.data-production-panel .form-group {
  margin-bottom: 16px;
}

.data-production-panel .form-label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #334155;
  font-size: 14px;
}

.data-production-panel .form-input,
.data-production-panel .form-select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 14px;
  transition: border-color 0.2s;
}

.data-production-panel .form-input:focus,
.data-production-panel .form-select:focus {
  border-color: #3b82f6;
  outline: none;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.data-production-panel .btn-primary {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
}

.data-production-panel .btn-secondary {
  background: #f1f5f9;
  color: #475569;
  border: 1px solid #cbd5e1;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
}

.data-production-panel .task-list-item {
  padding: 12px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.data-production-panel .status-badge {
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.data-production-panel .status-completed {
  background: #dcfce7;
  color: #16a34a;
}

.data-production-panel .status-processing {
  background: #fef3c7;
  color: #d97706;
}

.data-production-panel .status-pending {
  background: #e0e7ff;
  color: #4f46e5;
}

.data-production-panel .status-failed {
  background: #fee2e2;
  color: #dc2626;
}
