body {
  font-family: "Segoe UI";
  margin: 0;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  height: 100vh;
  gap: 3rem;
}

.right {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.container {
  /* border: 1px solid black; */
  min-width: 40vw;
  margin: auto;
  /* margin-top: 5%; */
  /* margin-bottom: 5%; */
  padding: 40px;
  border-radius: 45px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.members {
  /* border: 1px solid #4caf50;
  background-color: #93e195; */
  background-color: #f9dee2; /* Pastel pink for background */
  border: 2px solid #f4acb7; /* Light pink for border */
  max-height: 60px;
  padding-top: 0px;
  color: #555;
}

.steps {
  background-color: #fef2cd; /* Pastel orange-yellow for background */
  border: 2px solid #ffdc7e; /* Light orange-yellow for border */
}

.header {
  display: flex;
  justify-content: space-between;
}

h2 {
  margin-top: 0;
  color: #333;
}

label {
  font-weight: bold;
  color: #333;
}

input[type="text"] {
  margin-top: 2%;
  width: 100%;
  padding: 3%;
  margin-bottom: 20px;
  border-radius: 8px;
  border: none;
  background-color: #f9f9f9;
  box-sizing: border-box;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

input[type="text"]:focus {
  border-color: #4caf50;
}

button {
  /* background-color: #294622; */

  background-color: #e6f1e0; /* Pastel green for background */
  border: 2px solid #badbcc; /* Light green for border */

  /* color: white; */
  /* border: none; */
  padding: 14px 20px;
  margin: 8px 0;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #89caad;
}

/* Progress bar */
.progress-bar-container {
  width: 100%;
  background-color: #ddd;
  border-radius: 8px;
  margin-bottom: 20px;
}

.progress-bar {
  height: 20px;
  background-color: #4caf50;
  border-radius: 8px;
  width: 0;
  transition: width 0.3s ease;
}

.recommendations {
  margin-top: 20px;
}

.recommendation {
  cursor: pointer;
  padding: 10px;
  border-radius: 8px;
  background-color: #f0f0f0;
  margin-bottom: 10px;
  transition: background-color 0.3s ease;
}

.recommendation:hover {
  background-color: #e0e0e0;
}

/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: #2196f3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196f3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

input[type="text"].disabled {
  border: 2px solid #f1f1f1;
  cursor: not-allowed;
}

#steps {
  font-size: 11px;
}

#download-btn {
  background-color: #bbb;
  border: 2px solid #999;
  display: none;
}

#download-btn:hover {
  background-color: #333;
}
