.floating-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #007bff;
  color: white;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}

.wizard-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 120px;
  z-index: 1001;
}

.wizard-content {
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.close-button {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 5px 10px !important;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #333;
}

.wizard-content h2 {
  margin-top: 0;
  color: #333;
}

.wizard-content label {
  display: block;
  margin-bottom: 10px;
  font-size: 16px;
  color: #555;
}

.wizard-content input[type="radio"],
.wizard-content input[type="checkbox"] {
  margin-right: 10px;
  transform: scale(1.5);
  margin-top: 0;
}

.wizard-content .form-check-inline {
  display: inline-flex;
  align-items: center;
  margin-right: 20px;
  margin-bottom: 10px;
}

.wizard-content .form-check-input {
  margin-right: 8px;
  margin-top: 0;
}

.wizard-content .form-check-label {
  margin-bottom: 0;
  display: flex;
  align-items: center;
  font-size: 16px;
  line-height: 1.2;
}

.wizard-content button {
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  margin-top: 15px;
  margin-right: 10px;
}

/* Let Bootstrap handle the colors for btn-primary and btn-secondary */
.wizard-content .btn-primary {
  background-color: #007bff;
  color: white;
}

.wizard-content .btn-primary:hover {
  background-color: #0056b3;
}

.wizard-content .btn-secondary {
  background-color: #6c757d;
  color: white;
}

.wizard-content .btn-secondary:hover {
  background-color: #5a6268;
}

/* Left-aligned content for specific questions */
.wizard-content .left-aligned-options {
  text-align: left;
}

.wizard-content .left-aligned-options .form-check-inline {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  margin-right: 0;
}

.wizard-content .left-aligned-options .form-check-input {
  margin-right: 12px;
  margin-top: 4px;
  flex-shrink: 0;
}

.wizard-content .left-aligned-options .form-check-label {
  flex: 1;
  margin-left: 0;
}

/* Book options specific styling */
.wizard-content .book-options-container {
  text-align: left;
}

.wizard-content .book-option-row {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  padding: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  background-color: #fafafa;
}

.wizard-content .book-option-checkbox {
  margin-right: 15px;
  margin-top: 5px;
  margin-left: 15px;
  flex-shrink: 0;
}

.wizard-content .book-option-row {
  cursor: pointer;
}

.wizard-content .book-option-row:hover {
  background-color: #f0f0f0;
  border-color: #007bff;
}

.wizard-content .book-option-content {
  flex: 1;
}

.wizard-content .book-option-title {
  font-size: 16px;
  margin-bottom: 5px;
  color: #333;
}

.wizard-content .book-option-description {
  font-size: 14px;
  color: #666;
  line-height: 1.4;
}
