
@media only screen and (max-width: 767px) {
  html, body {
min-height: 100%;
/*min-width: 400px*/

}

}
form sectionContainer{
  font-size: 1rem;
}
html, body {
min-height: 100%;
/*min-width: 700px*/
}
.questionContainer {
  border-color: #d2fee1;
  background-color: rgba(210, 254, 225,0.2);
  border-style: solid;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 15px;
  padding-right: 15px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px; 
  margin-top: 10px;
  margin-bottom: 10px;
}
.results {
margin: auto;
max-width: 700px;
display: flex;
justify-content: center;
align-items: center;
height: inherit;
padding: 3px;
flex-direction: column;
}
.narrativeBox{
/*width: 700px;*/
}
.resultsPara {
margin-top: 50px;
padding-left: 20px;
padding-right: 20px;
padding-top: 10px;
padding-bottom: 10px;
background-color: whitesmoke;
-webkit-border-radius:5px;
-moz-border-radius: 5px; 
}
.confidenceWrapper {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.confidenceBox {
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  font-size: 0.95rem;
}

.confidenceBox.low {
  background-color: #ffd5d5; /* pastel red */
  border-left: 4px solid #cc0000;
}

.confidenceBox.mid {
  background-color: #fff3cd; /* pastel amber */
  border-left: 4px solid #ffae00;
}

.confidenceBox.high {
  background-color: #d4edda; /* pastel green */
  border-left: 4px solid #2e8b57;
}

.sectionSummary h4 {
  margin-bottom: 0.5rem;
}

.radarBox {
maxrgin:auto;
margin-top: 30px;
width: 100%;
}
input[type="radio"] {
height: 20px;
width: 20px;
}
.patataButton {
margin: auto;
max-width: 400px;
padding: 10px;
border: none;
-webkit-border-radius:5px;
-moz-border-radius: 5px; 
border-radius: 5px; 
background-color: #f98f50; 
color: #fff;
}
.introBox {
padding: 10px;
color: #663eb0;
background-color: rgba(254, 243, 186,0.2);  
border-color: rgba(254, 243, 186, 1);
border-style: solid;
-webkit-border-radius:5px;
-moz-border-radius: 5px; 
}

body, div, form { 
padding: 0;
margin: 0;
outline: none;
font-family: Arial, sans-serif;
font-size: 0.95rem;
color: #666;
line-height: 22px;
}

h1, h4 {
margin: 15px 0 4px;
}
h1 {
font-weight: 700;
}
h3 {

}
h1, h2, h3, h4{
  color: #663eb0;
}
.mainBox {
  margin: auto;
  max-width: 700px;
  padding: 20px;
  background: rgba(255,255,255,0.8);
  box-shadow: 0 2px 5px #ccc;
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  height: inherit;
}
form {
  width: 100%;
}
input {
width: calc(100% - 10px);
padding: 5px;
border: 1px solid #ccc;
border-radius: 3px;
vertical-align: middle;
}
input:hover {
border: 1px solid #1c87c9;
}
table {
width: 100%;
border-collapse: collapse;
margin-bottom: 50px;
}
.odd{
  background-color: lightgrey;
}
h4 {
padding: 15px 0 5px;
}
.question-answer label {
display: inline-block;
padding: 0 20px 15px 0;
}
.question-answer input {
width: auto;
}
th {
width: 5%;
padding: 7px 7px;
text-align: center;
vertical-align: center;
/*line-height: 18px;*/
font-weight: 600;
border-bottom: 1px solid #1574BC;
color: #1574BC;
}
td {
width: 5%;
padding: 20px 20px;
text-align: center;
vertical-align: center;
/*line-height: 18px;*/
font-weight: 400;
}
.first-col {
width: 26%;
text-align: left;
border-right: 1px solid #1574BC;
}
.btn-block {
text-align: center;
}
.skipButton {
text-align: center;
margin-left: 10px;
}
button {
/*min-width: 150px*/;
max-width: 300px;
padding: 10px;
border: none;
-webkit-border-radius: 5px; 
-moz-border-radius: 5px; 
border-radius: 5px; 
background-color: #663eb0; 
color: #fff;
cursor: pointer;
transition: background-color 0.2s ease-in-out;
}
button:hover {
background-color: #f03f6d;
transition: background-color 0.2s ease-in-out;
}
.resultsButton {
  margin: 10px;
}
.resultsButtonSection {
  display: flex; 
  align-items: center;
  justify-content: center;
}
@media (min-width: 568px) {
th, td {
word-break: keep-all;
}
}
.sectionHead {
  display: flex; 
  align-items: center;
  justify-content: space-between;
}
.sectionContent {
transition: max-height 0.5s ease-in-out, opacity 0.5s ease-in-out, padding 0.5s ease-in-out;
max-height: 99999px;
overflow: hidden;
}

.sectionContent.hidden {
max-height: 0;
opacity: 0;
overflow: hidden;
}