/* استایل فرم نوبت‌دهی */
#booking-form {
  max-width: 350px;
  margin: 30px auto;
  padding: 24px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  direction: rtl;
  font-family: inherit;
}
#booking-form input[type="text"],
#booking-form input[type="tel"],
#booking-form select,
#booking-form textarea {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 14px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 15px;
  background: #fafbfc;
  transition: border 0.2s;
  font-family: inherit;
}
#booking-form input[type="text"]:focus,
#booking-form select:focus,
#booking-form textarea:focus {
  border-color: #4f8cff;
  outline: none;
}
#booking-form button[type="submit"] {
  width: 100%;
  background: var(--sb-btn-color, linear-gradient(90deg, #4f8cff 0%, #38b6ff 100%));
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 0;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s;
  font-family: inherit;
}
#booking-form button[type="submit"]:hover {
  background: linear-gradient(90deg, #38b6ff 0%, #4f8cff 100%);
}
#booking-form textarea {
  min-height: 60px;
  resize: vertical;
}
.booking-row {
  display: flex;
  gap: 10px;
}
.booking-row select {
  flex: 1 1 0;
  margin-bottom: 0;
} 