
/* begin john form css */

:root {
  --bg-alabaster: #fafafa;
  --fetch-orange: #ff5a00;
  --text-dark: #1a1a1a;
  --ledger-cream: #fdfbf7;
  --border-light: #e0e0e0;
}


.survey-container {
  background-color: var(--ledger-cream);
  
  width:100%;

  padding: 30px;
  box-sizing: border-box;
  border-radius: 0;
  box-shadow: -4px 0 15px rgba(0, 0, 0, 0.08);
  border-left: 1px solid var(--border-light);
}

.survey-header {
  text-align: center;
  margin-bottom: 30px;
}
.survey-title {
  margin: 0;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.survey-subtitle {
  margin: 5px 0;
  font-size: 14px;
  font-weight: normal;
  color: #666;
}
.survey-time {
  font-size: 12px;
  color: var(--fetch-orange);
  font-weight: bold;
  margin-bottom: 15px;
}
.survey-intro a {
  color: var(--text-dark);
  text-decoration: underline;
}

.card {
  border: 1px solid var(--border-light);
  border-radius: 6px;
  margin-bottom: 15px;
  background: #fff;
  overflow: hidden;
}

.card-header {
  background: #f9f9f9;
  padding: 15px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}

.card-content {
  padding: 20px;
  display: none;
  border-top: 1px solid var(--border-light);
}
.card-content.active {
  display: block;
}

label.block-label {
  display: block;
  margin-top: 15px;
  font-weight: bold;
  margin-bottom: 5px;
}

.radio-option {
  display: block;
  margin-bottom: 8px;
  cursor: pointer;
}

select,
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"] {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

.nested-followup {
  display: none;
  background: #f4f4f4;
  padding: 15px;
  border-left: 3px solid var(--fetch-orange);
  margin: 10px 0 15px 0;
}

button {
  background-color: var(--fetch-orange);
  color: white;
  border: none;
  padding: 12px 20px;
  width: 100%;
  font-size: 16px;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  text-transform: uppercase;
  margin-top: 10px;
}
button:hover {
  background-color: #e04e00;
}