.db_bfsg {
  position: relative;
  height: 300px;
  margin: auto;
  padding: 30px;
}

#progress {
  background: #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 25px;
}

#progress-bar {
  height: 8px;
  width: 0;
  background: linear-gradient(to right, #e50051, #ef7d00);
  transition: width 0.3s;
}

.step {
  display: none;
  margin-bottom: 40px;
  line-height:1.5;
  font-size: 1.1rem;
}

.step.active {
  display: block;
}

.buttons {
  position: absolute;
  bottom: 30px;
  left: 30px;
  width: 14%;
  display: flex;
}

#prev {
  width: 100%;
  padding: 12px 16px;
  font-size: 1rem;
  background: #ddd;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

#prev:disabled {
  opacity: 0.5;
  cursor: default;
}

.options {
  position: absolute;
  bottom: 30px;
  left: calc(14% + 60px);
  right: 30px;
  display: flex;
  gap: 30px;
}

.options .btn {
  flex: 1;
}

.btn {
  padding: 12px;
  font-size: 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.btn.yes {
  background-color: #28a745;
  color: white;
}

.btn.no {
  background-color: #dc3545;
  color: white;
}
