/* Root wrapper */
.copd-symptom-check {
  min-width: 200px;
  max-width: 420px;
  margin: 0 auto;
  background: #fff;
  border-radius: 15px;
}

.copd-symptom-check .copd-check-viewport {
  overflow: hidden;
  width: 100%;
}

.copd-symptom-check .copd-check-track {
  display: flex;
  width: 100%;
  transform: translateX(0);
  transition: transform 360ms ease;
  will-change: transform;
}

.copd-symptom-check .copd-check-track.is-no-animate {
  transition: none !important;
}

.copd-symptom-check .copd-check-slide {
  width: 100%;
  flex: 0 0 100%;
  box-sizing: border-box;
  padding: 0;
  display: flex;
  justify-content: center;
}

/* UPDATED: Apply left/right spacing to the whole card */
.copd-symptom-check .copd-check-card {
  width: 100%;
  max-width: 420px;
  box-sizing: border-box;
  border-radius: 15px;
  padding-top: 14px;
  padding-left: 14px;
  padding-right: 14px;
}

/* Cover fills the available card width (minus padding) */
.copd-symptom-check .copd-check-cover {
  width: 100%;
  min-width: 200px;
  max-width: 420px;
  height: 230px;
  background: #DBEDF9;
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    to bottom,
    #ffffff 0%,
    #DBEDF9 100%
  );
}

.copd-symptom-check .copd-check-cover-img {
  width: 200px;
  height: 230px;
  object-fit: contain;
  display: block;
}

/* Title */
.copd-symptom-check .copd-check-question-title {
  margin: 10px 0 12px 0;
  padding: 0;
  text-align: center;
  font-size: 18px;
  line-height: 22px;
  font-weight: 700;
  color: #000;
}

/* Options stack (back to normal; card padding handles spacing) */
.copd-symptom-check .copd-check-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 0 12px 0;
}

/* Option button baseline (back to 100%) */
.copd-symptom-check .copd-check-option {
  width: 100%;
  border: none;
  border-radius: 10px;
  margin: 0;
  padding: 14px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  box-sizing: border-box;
}

.copd-symptom-check .copd-check-option:focus {
  outline: 1px solid #EC6938;
  outline-offset: 2px;
}

.copd-symptom-check .copd-check-option-label {
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  color: #000;
}

/* Right-side circle indicator */
.copd-symptom-check .copd-check-option-indicator {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #fff;
  flex: 0 0 22px;
  position: relative;
}

.copd-symptom-check .copd-check-option.is-selected .copd-check-option-indicator::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 999px;
  background: #000;
  opacity: 0.25;
}

/* Option colors */
.copd-symptom-check .copd-check-option--usual {
  background: #8fcf95;
}

.copd-symptom-check .copd-check-option--light {
  background: #7fc689;
}

.copd-symptom-check .copd-check-option--moderate {
  background: #f0b6b8;
}

.copd-symptom-check .copd-check-option--severe {
  background: #c86666;
}

/* Result slide */
.copd-symptom-check .copd-check-slide--result {
  padding: 0;
  box-sizing: border-box;
}

.copd-symptom-check .copd-check-result {
  background: #18A6B7;
  border-radius: 10px;
  padding: 14px;
  box-sizing: border-box;
  text-align: center;
}

.copd-symptom-check .copd-check-result-text {
  color: #fff;
  font-size: 20px;
  line-height: 26px;
  font-weight: 500;
}

.copd-symptom-check .copd-check-result-text p {
  margin: 0;
  padding: 8px 0;
}

.copd-symptom-check .copd-check-result-text p:last-child {
  margin-bottom: 0;
}

/* Restart */
.copd-symptom-check .copd-check-restart {
  margin-top: 12px;
  width: 100%;
  border: none;
  border-radius: 10px;
  padding: 12px 14px;
  background: #e6e6e6;
  color: #000;
  cursor: pointer;
  font-size: 14px;
  line-height: 18px;
  font-weight: 600;
}

.copd-symptom-check .hidden {
  display: none;
}
