#completion-container {
  /* Position the SVG in the bottom right corner */
  position: fixed;
  /* Position the SVG 20px from the bottom and right edges */
  top: 20px;
  /* Set the width of the SVG */
  right: 20px;
  /* Set the z-index to 1000 to ensure it is on top of other elements */
  z-index: 1000;
  /* Set the text of the SVG */
  font-family: "Roboto", sans-serif;
  /* Set the font size of the SVG */
  font-size: 12px;
  /* Set the text color of the SVG */
  color: #fff;
}

#completion-container circle {
  /* Set the background color of the SVG */
  color: #000;
}

body {
  /* Set the background color */
  background-color: #003569;
  /* Set the background image */
  background-image: url("../img/background.png");
  /* Set the background size to cover the entire page */
  background-size: auto;
  /* Set the background color */
  color: aliceblue;
}

#form-container {
  /* Darken this div against the body background image */
  background-color: rgba(0, 0, 0, 0.75);
  /* Apply gaussian blur */
  backdrop-filter: blur(10px);
  /* Round the corners */
  border-radius: 10px;
}

.traits-list-container {
  /* Darken this div against the body background image */
  background-color: rgba(0, 0, 0, 0.75);
  /* Apply gaussian blur */
  backdrop-filter: blur(10px);
  /* Round the corners */
  border-radius: 10px;
}

.hero-wrapper {
  background-image: linear-gradient(
    to right,
    rgb(47, 42, 119),
    rgba(0, 0, 0, 0.75)
  );
  border-radius: 10px;
}

.custom-modal-content {
  /* Darken this div against the body background image */
  background-color: steelblue;
  /* Apply gaussian blur */
  backdrop-filter: blur(10px);
}

/* Hero banner with id hero-banner */
.hero-banner {
  /* Set the background image */
  background-image: url("../img/hero-banner.png");
  /* Set the background size to cover the entire div */
  background-size: contain;
  background-repeat: no-repeat;
  /* Set the height of the div */
  height: 200px;
  /* Set the width of the div */
  width: 100%;
  /* Set the margin to 0 */
  margin: 0;
  /* Set the padding to 0 */
  padding: 0;
  /* Center the contents of the div */
  display: flex;
  /* Set the flex direction to column */
  flex-direction: column;
  /* Set the justify content to center */
  justify-content: center;
  /* Set the align items to center */
  align-items: center;
}

/* Adjust the stepper container to accommodate the connecting line */
.stepper {
  position: relative;
  /* So that the absolute positioning of the connecting-line works */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* Changed from center to flex-start */
}

/* Individual step */
.step {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  /* Space between steps */
  width: 100%;
  /* Take the full width */
  cursor: pointer;
}

/* New class for the connecting line */
.connecting-line {
  position: absolute;
  width: 10px;
  background-color: lightgray;
  z-index: -1;

  /* Positioning */
  left: 10px;
  /* Adjusted so it's near the circles */
  top: 15px;
  bottom: 30px;
}

/* Circle inside each step */
.circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: lightgray;
  /* Default background */
  display: flex;
  justify-content: center;
  align-items: center;
  color: black;
  /* Text color */
  margin-right: 10px;
  /* Space between circle and label */
  box-shadow: inset 0 0 0 2px #fff, /* Inner border */ inset 0 0 0 4px #000;
  /* Inner border color */
}

/* Vertical bar between steps */
.bar {
  width: 4px;
  /* Width of the bar */
  height: 20px;
  /* Height of the bar */
  background-color: lightgray;
  /* Default background */
  position: absolute;
  z-index: -1;
  /* Behind the circle */
  left: 50%;
  /* Center align */
  top: 30px;
  /* Position below the circle */
}

/* Label for each step */
.label {
  padding: 5px;
  font-size: 16px;
  /* Text size */
}

/* Styles for active and completed steps */
.step.active .circle,
.step.completed .circle {
  background-color: blue;
  /* Active/Completed background */
  color: white;
  /* Active/Completed text color */
}

.step.completed .bar {
  background-color: blue;
  /* Completed bar color */
}

textarea {
  border-radius: 5px;
}

.seamless-iframe {
  width: 100%;
  height: 90vh; /* Adjust height as needed */
  min-height: 90vh; /* Minimum height */
  border: none; /* Remove border */
}

.personailty-traits-iframe {
  height: 100vh;
  width: 100%;
  min-height: 90vh; /* Minimum height */
  border: none;
}
