main .main-content {
  width: auto;
}

main .page-content {
  margin: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.progress-container {
  width: 80%;
  margin: 0.5rem auto;
}



.progress-bar {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: relative;
}

.progress-line {
  width: 15%;
  height: 2px;
  background-color: #dadada;
  top: 50%;
  transform: translateY(-50%);
}

.progress-step {
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: center;
  position: relative;
  color: #9c9c9c;
}

.progress-step i {
  color: #e0e0e0;
  font-size: 2rem;
  margin: 0 auto 10px;
}

.progress-bar .progress-line.done {
  width: 15%;
  height: 2px;
  background-color: #fec322;
  top: 50%;
  transform: translateY(-50%);
}

.progress-step.done i {
  color: #fec322;
  font-size: 2rem;
  margin: 0 auto 10px;
}

.page-content .profile-text {
  text-wrap: pretty;
  margin-bottom:30px;
  font-weight:600;
}

.page-content .section {
  background-color: #fff;
  width: 100%;
  border: solid;
  border-color: #d9d7d8;
  border-radius: 1rem;
  border-width: 0.1rem;
  padding: 1rem;
  display: flex;
  flex-direction: row;
  gap: 1rem;
  margin-bottom: 40px;
}

.section .left {
  display: flex;
  flex-direction: column;
  justify-content: start;
  width: 40%;
  gap: 1rem;
}

.section .left .icon {
  background-color: #fff3bf;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.section .left .icon i {
  color: #b68500;
  font-size: 1.5rem;
}

.section .left .section-title {
  font-size: 1.3rem;
  text-wrap: pretty;
  text-align: left;
  margin-left: 0.5rem;
  font-weight:800 !important;
}

.section .right {
  margin-left: 1rem;
  width: 55%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: start;
  gap: 1rem;
}

.section .right .question {
  font-weight: 600;
  max-width:450px;
}

.section .right .answer-section {
  color: #333333;
  font-weight: 500;
  margin-bottom:8px;
}

/* Styling for the text.section .right input */
.section .right input {
  width: 100%; /* Adjust width as needed */
  padding: 10px; /* Adjust padding as needed */
  border-radius: 5px; /* Border radius */
  font-size: 0.7rem; /* Font size */
  outline: none; /* Remove default focus outline */
}





/* Styling for placeholder text */
.section .right input::placeholder {
  color: #999; /* Placeholder text color */
}

/* Optional: Styling for disabled state */
.section .right input:disabled {
  background-color: #f5f5f5; /* Background color when disabled */
  cursor: not-allowed; /* Cursor style when disabled */
}

/* MEDIA QUERY */
@media screen and (max-width: 768px) {
  main .main-content {
    width: 100%;
    margin: 0rem;
    padding: 1rem;
  }

  main .page-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .progress-container {
    width: 80%;
    margin: 2.4rem auto;
  }

  .progress-container .progress-bar {
    font-size: 0.7rem;
    text-wrap: pretty;
  }

  .progress-step i {
    color: #e0e0e0;
    font-size: 1rem;
    margin: 0 auto 10px;
  }

  .progress-step.done i {
    color: #fec322;
    font-size: 1rem;
    margin: 0 auto 10px;
  }

  .page-content .section {
    display: flex;
    flex-direction: column;
  }

  .section .left .section-title {
    font-size: 1.3rem;
    text-wrap: pretty;
    text-align: left;
    margin-left: 0rem;
   
  }

  .section .right {
    margin-left: 0rem;
    width: 55%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: start;
    gap: 1rem;
  }

  .progress-line {
    display: none;
  }
}
