/* Bootstrap 4 预约体验弹窗自定义样式 */

/* 弹窗标题样式 */
#appointmentModal .modal-title {
  color: #910003;
  font-weight: bold;
  font-size: 1.25rem;
}

/* 表单标签样式 */
#appointmentModal .form-label {
  font-weight: 500;
  color: #333;
  margin-bottom: 0.5rem;
}

/* 预约选项样式 */
#appointmentModal .appointment-option {
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 15px;
  background-color: #fffefd;
  transition: all 0.3s ease;
}

#appointmentModal .form-check-input:checked + .form-check-label .appointment-option {
  border-color: #910003;
  background-color: #fffefd;
}

#appointmentModal .form-check-label:hover .appointment-option {
  border-color: #910003;
}

#appointmentModal .option-content {
  display: flex;
  /* align-items: flex-start; */
  gap: 20px;
}

#appointmentModal .option-text {
  flex: 1;
}

#appointmentModal .option-title {
  font-weight: bold;
  color: #333;
  margin-bottom: 4px;
}

#appointmentModal .option-desc {
  font-size: 13px;
  color: #666;
}

#appointmentModal .option-fields {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 200px;
}

#appointmentModal .field-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

#appointmentModal .field-label {
  font-size: 12px;
  color: #666;
  white-space: nowrap;
  margin: 0;
}

#appointmentModal .field-item .form-control {
  flex: 1;
  min-width: 0;
}

/* 提交按钮样式 */
#appointmentModal .btn-danger {
  background-color: #910003;
  border-color: #910003;
  font-weight: 500;
}

#appointmentModal .btn-danger:hover {
  background-color: #910003;
  border-color: #910003;
}

/* 移动端响应式调整 */
@media (max-width: 768px) {
  #appointmentModal .option-content {
    flex-direction: column;
    gap: 10px;
  }
  
  #appointmentModal .option-fields {
    min-width: auto;
    width: 100%;
  }
  
  #appointmentModal .field-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  
  #appointmentModal .field-item .form-control {
    width: 100%;
  }
}
