/* Reset some default styles */
body, h1, h2, h3, h4, h5, h6, p, ul, ol {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f1ede6; /* Light beige background color */
}

/* Header styles */
header {
  background-color: #7d6c54; /* Brownish header background */
  color: #fff;
  padding: 10px;
}

header h1 {
  font-size: 28px;
  margin: 0;
}

/* Navigation styles */
nav {
  background-color: #3c3025; /* Dark brown navigation background */
  padding: 10px;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
}

nav li {
  margin: 0 15px;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  padding: 5px 10px;
  border-radius: 5px;
}

nav a:hover {
  background-color: #554637; /* Darker brown on hover */
}

/* Main content styles */
main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Section styles */
section {
  margin-bottom: 30px;
}

section h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

section p {
  font-size: 16px;
  line-height: 1.8;
}

/* Call-to-action styles */
.cta {
  text-align: center;
  background-color: #7d6c54; /* Brownish CTA background */
  color: #fff;
  padding: 20px;
}

.cta h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.cta p {
  font-size: 18px;
}

/* Footer styles */
footer {
  background-color: #3c3025; /* Dark brown footer background */
  color: #fff;
  text-align: center;
  padding: 10px;
}
footer a {
  color: white;
}
/* Buttons styles */
button {
  background-color: #184a10;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 0;
  cursor: pointer;
  font-size: 16px;
  margin-right: 2px;
  transition: background-color 0.2s ease-in-out;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Drop shadow */
  transition: transform 0.2s, box-shadow 0.2s;
}

button:active {
  transform: translateY(2px); /* Move the button down slightly on click/touch */
  box-shadow: none; /* Remove the drop shadow when depressed */
}
button:hover {
  background-color: #134c0c;
}

/* Secondary button style */
.button-secondary {
  background-color: #134c0c;
}

.button-secondary:hover {
  background-color: #103205;
}

/* Call-to-action button style */
.cta button {
  font-size: 20px;
  padding: 15px 30px;
}

.cta button:hover {
  background-color: #103205;
}

/* Disabled button style */
button:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

/* Outline button style */
.button-outline {
  background-color: transparent;
  color: #184a10;
  border: 2px solid #184a10;
}

.button-outline:hover {
  background-color: #184a10;
  color: #fff;
}

/* Rounded button style */
.button-rounded {
  border-radius: 50px;
}

/* Large button style */
.button-large {
  padding: 15px 30px;
  font-size: 20px;
}

/* Small button style */
.button-small {
  padding: 5px 10px;
  font-size: 14px;
}

.question-container {
  padding-bottom: 40px;
  margin: 0 auto;
  text-align: center;
  place-items: center;
}
.report-container {
  padding-bottom: 40px;
  margin: 0 auto;
  text-align: center;
  place-items: center;
  display: grid;
}

.image-container {
  width: 727px;
  height: 525px;
  display: flex;
  overflow-x: auto;
  justify-content: center;
  align-items: center;
}

img {
  object-fit: contain;
  margin: 5px;
}
.buttons-side {
}

.buttons {
  display: flex;
  justify-content: center;
  align-items: center;
}

.canvas-horiz {
  display: flex;
  align-items: center;
  justify-content: center;
}
.radio-container div {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}

.radio-container input[type="radio"] {
  margin-right: 5px;
}

.radio-container label {
  margin-left: 0; /* Reset any margin on the labels */
}
.card {
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 20px;
  background-color: #fff;
  margin: 10px;
  width: 400px;
}
.input-box {
  width: 300px;
}
.input-container {
  display: grid;
  align-items: center;
  margin: 10px;
  background-color: #f7f7f7;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 10px;
  width: 400px;
}
label {
  margin-right: 10px;
}

input[type="email"] {
  flex: 1;
  padding: 8px;
  border: none;
  outline: none;
  font-size: 16px;
  color: #333;
}

/* Placeholder text color */
input[type="email"]::placeholder {
  color: #999;
}

/* Styling for focus state */
input[type="email"]:focus {
  border-color: #4caf50;
}
.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}

.loader {
  border: 4px solid #f3f3f3;
  border-top: 4px solid #3498db;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 2s linear infinite;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.loading-text {
  position: fixed;
  top: 50%;
  left: 50%;
}
.widget {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.circle-chart {
  width: 105px;
  height: 105px;
}

.circle-bg {
  fill: none;
  stroke: #e5e5e5;
  stroke-width: 2;
}

.circle-progress-blue {
  fill: none;
  stroke: #004BA0;
  stroke-width: 2;
  stroke-dasharray: 0, 100;
  transform-origin: 50% 50%;
  transition: stroke-dasharray 1s ease;
}
.circle-progress-red {
  fill: none;
  stroke: #e53935;
  stroke-width: 2;
  stroke-dasharray: 0, 100;
  transform-origin: 50% 50%;
  transition: stroke-dasharray 1s ease;
}

.percentage {
  font-size: 24px;
  margin-top: 8px;
}
.range-bar {
  width: 300px;
  height: 20px;
  background-color: #e5e5e5;
  position: relative;
}

.selected-range {
  background-color: #006400; /* Highlight color for the selected range */
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}
.mobility-display {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Arial", sans-serif;
  font-size: 10px;

}
.circle-holder {
  display: flex;
  justify-content: center; /* Horizontally center-align content */
  align-items: center; 
}
.report-msg {
  display: flex;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 40px;
  font-weight: bold;
  height: 64px;
  text-align: center;
  justify-content: center; /* Horizontally center-align content */
  align-items: center; 
}
.report-msg2 {
  display: flex;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 28px;
  font-weight: bold;
  height: 64px;
  text-align: center;
  justify-content: center; /* Horizontally center-align content */
  align-items: center; 
}

.mobility-item {
  padding: 10px;
}
.lines {
  position: relative;
}

.start-line,
.end-line {
  position: absolute;
  width: 1px;
  background-color: #000;
}

.start-line {
  height: 20px;
  top: -25px;
  left: 100px;
}

.end-line {
  height: 20px;
  top: -25px;
  right: 200;
}
.side-by-side {
  display: flex;
  justify-content: center;
}
.canvas-title {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 16px;
  padding-bottom: 5px;

}
.canvas-title-l0 {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 20px;

}
.hair-container {
  display: flex;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 12px;
  text-align: center;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 200px;
}
.report-text {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 12px;
  text-align: left;
  width: 170px;
}
.report-text-long {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 12px;
  text-align: left;
  width: 350px;
  background-color: #f2f2f2;
  white-space: pre-line;

}
.single-sect-centered-half {
  width: 200px;
  
}
.single-sect-centered {
}
.single-sect {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.report-output {
  display: none;
}
.controller-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.controller-layout-horiz {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2px 2px;
}

.social-sharing-widget {
  display: flex;
  flex-direction: column;
  align-items: center; /* Center horizontally */
  text-align: center; /* Center the header text */
  margin: 20px;
}

.social-sharing-widget a {
  display: inline-block;
  margin-right: 10px;
  font-size: 24px;
  color: #333;
  transition: color 0.2s;
}

.social-sharing-widget a:hover {
  color: #007BFF; /* Change to your desired hover color */
}

.terms-widget {
  display: flex;
  align-items: center; /* Center horizontally */
  text-align: center; /* Center the header text */
  margin: 10px;
}
.terms-widget input[type="checkbox"] {
  margin-right: 10px;
}

.terms-widget label {
  font-size: 14px;
}

.recovery-widget {
  display: flex;
  justify-content: center;
}

.vertical-bar {
  width: 30px;
  height: 105px;
  display: flex;
  flex-direction: column-reverse; /* Reverse the stacking order */
  align-items: flex-start; /* Align items to the top */
  justify-content: center;
}

.bar {
  flex-grow: 1; /* Fill available space */
  background: linear-gradient(to top, green, white, red);
  width: 100%;
}

.pointer {
  width: 0;
  height: 0;
  position: relative;
  top: -15px; /* Position the pointer above the bar */
}
.pointer img {
  margin: 0px;
}

