/* Genel Alan */
#be-vendor-registration {
  max-width: 720px;
  margin: 40px auto;
  padding: 30px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 6px 22px rgba(0,0,0,0.08);
  font-family: "Segoe UI", Arial, sans-serif;
}

/* Başlık */
#be-vendor-registration .vendor-title {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 25px;
  color: #222;
}

/* Label */
#be-vendor-registration label {
  display: block;
  font-weight: 600;
  margin: 12px 0 6px;
  color: #333;
}

/* Inputlar */
#be-vendor-registration input,
#be-vendor-registration select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
  margin-bottom: 16px;
  transition: border 0.3s;
}

#be-vendor-registration input:focus,
#be-vendor-registration select:focus {
  border-color: #c8102e;
  outline: none;
}

/* Paket Kartları */
.vendor-title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.vendor-plans-horizontal {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.vendor-plan-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  padding: 20px;
  width: 200px;
  text-align: center;
  transition: all 0.3s ease;
}

.vendor-plan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.15);
}

.vendor-plan-card.featured {
  border: 2px solid #c8102e;
}

/* 🔴 Paket seçme butonu */
.select-plan-btn {
  background: linear-gradient(135deg, #c8102e, #8b0d22);
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}
.select-plan-btn:hover {
  background: linear-gradient(135deg, #8b0d22, #5a0a16);
}

/* Form butonları hizalama */
.form-actions {
  display: flex;
  justify-content: space-between; /* Sağ - sol ayır */
  gap: 20px;
  margin-top: 20px;
}

.form-actions button {
  flex: 1;
  max-width: 200px;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #fff;
}

/* 🔴 Geri butonu kırmızı */
.form-actions .back {
  background: linear-gradient(135deg, #c8102e, #8b0d22);
}
.form-actions .back:hover {
  background: linear-gradient(135deg, #8b0d22, #5a0a16);
}

/* 🔵 Continue ve Save butonları mavi */
.form-actions .next,
.form-actions .save-btn {
  background: linear-gradient(135deg, #007bff, #0056b3);
}
.form-actions .next:hover,
.form-actions .save-btn:hover {
  background: linear-gradient(135deg, #0056b3, #003c82);
}

/* Mesajlar */
#be-vendor-registration .vendor-message {
  margin-top: 20px;
  padding: 15px;
  border-radius: 10px;
  font-weight: 600;
  text-align: center;
}
.vendor-message.success {
  color: #155724;
  background: #d4edda;
  border: 1px solid #c3e6cb;
}
.vendor-message.error {
  color: #721c24;
  background: #f8d7da;
  border: 1px solid #f5c6cb;
}

/* Progress Bar */
.vendor-progress {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  gap: 20px;
  list-style: none;
  padding: 0;
}

.vendor-progress .step-item {
  flex: 1;
  text-align: center;
  font-weight: 600;
  color: #777;
  position: relative;
}

.vendor-progress .step-item::before {
  content: attr(data-step);
  display: block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  border-radius: 50%;
  background: #e5e7eb;
  margin: 0 auto 8px;
  font-size: 14px;
  color: #333;
}

.vendor-progress .step-item.active::before {
  background: #007bff; /* aktif adım mavi */
  color: #fff;
}

.vendor-progress .step-item.active {
  color: #007bff;
}
/* Step Navigation */
.vendor-steps {
  display: flex;
  justify-content: center;
  margin: 20px 0 40px;
  gap: 40px;
}

.vendor-steps .step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 600;
  color: #666;
  position: relative;
}

.vendor-steps .step-item::before {
  content: attr(data-step);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ddd;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 8px;
}

.vendor-steps .step-item.active::before {
  background: #007bff;
}

.vendor-steps .step-item.active {
  color: #007bff;
}

.vendor-steps .step-item.completed::before {
  background: #28a745;
}

.vendor-steps .step-item.completed {
  color: #28a745;
}
.vendor-dashboard {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  font-family: "Segoe UI", Arial, sans-serif;
  max-width: 800px;
  margin: 30px auto;
}

.vendor-dashboard h2 {
  font-size: 24px;
  margin-bottom: 20px;
  text-align: center;
  color: #222;
}

.vendor-info {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

.vendor-info th {
  text-align: left;
  background: #f9f9f9;
  padding: 12px;
  width: 200px;
  border-bottom: 1px solid #eee;
}

.vendor-info td {
  padding: 12px;
  border-bottom: 1px solid #eee;
}

.vendor-actions {
  text-align: center;
  margin-top: 20px;
}

.vendor-actions .button {
  display: inline-block;
  margin: 8px;
  padding: 12px 20px;
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.vendor-actions .button:hover {
  background: linear-gradient(135deg, #0056b3, #003c82);
  transform: translateY(-2px);
}
#be-vendor-add-machine {
  max-width: 700px;
  margin: 30px auto;
  padding: 25px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 6px 22px rgba(0,0,0,0.08);
  font-family: "Segoe UI", Arial, sans-serif;
}

#be-vendor-add-machine h2 {
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}

#be-vendor-add-machine label {
  font-weight: 600;
  margin: 10px 0 6px;
  display: block;
}

#be-vendor-add-machine input,
#be-vendor-add-machine textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 16px;
}

#be-vendor-add-machine .btn-submit {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #fff;
  padding: 14px 24px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.vendor-message {
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 15px;
  text-align: center;
  font-weight: 600;
}

.vendor-message.success {
  background: #d4edda;
  color: #155724;
}

.vendor-message.error {
  background: #f8d7da;
  color: #721c24;
}
