html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

/* Remove bullet points and align content */
.kccq-options {
  list-style-type: none;
  padding-left: 0;
  margin-left: 0;
}

/* Style each radio option item */
.kccq-options li {
   margin-bottom: 1rem;
   padding: 1rem;
   border-radius: 12px;
   background-color: #f9f9f9;
   border: 1px solid #ddd;
   transition: background-color 0.2s;    
   touch-action: manipulation;
}

/* Make label + input fully clickable */
.kccq-options label {
  display: flex;
  align-items: center;
  font-size: 1.25rem;
  line-height: 1.6;
  cursor: pointer;
  width: 100%;
  padding: 0.5rem 0;
}

/* Space out the radio button and text */
.kccq-options input[type="radio"] {
  margin-right: 16px;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* Highlight on focus (tap) */
.kccq-options input[type="radio"]:focus-visible {
  outline: 2px solid #007bff;
  outline-offset: 4px;
}

.kccq-options li:hover {
  background-color: #eef6ff;
}

.kccq-title {
  font-size: 2rem;
  text-align: center;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.question-group {
    margin-top: 1rem;
    margin-bottom: 2rem;
    padding: 1.75rem;
    border: 1px solid #ddd;
    border-radius: 16px;
    background-color: #fff;
}

.question-text {
    font-weight: bold;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.answer-section-label {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.btn-primary {
    padding: 1rem 2rem;
    font-size: 1.2rem;
    border-radius: 8px;
}

.btn-secondary {
    padding: 1rem 2rem;
    font-size: 1.2rem;
    border-radius: 8px;
}

.btn-success {
    padding: 1rem 2rem;
    font-size: 1.2rem;
    border-radius: 8px;
}

.btn-danger {
    padding: 1rem 2rem;
    font-size: 1.2rem;
    border-radius: 8px;
}

@media (min-width: 768px) {
    .kccq-options label {
        font-size: 1.3rem;
    }

    .kccq-options input[type="radio"] {
        width: 26px;
        height: 26px;
    }
    .question-group {
        padding: 2rem;
  }
}

