.formWrapper {
  position: absolute;
  padding: 1%;
  font-family: "Roboto";
  display: flex;
  flex-direction: column;
  width: 900px;
  border: 2px solid black;
  gap: 20px;
  border-radius: 15px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.input__wrapper {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.form__fields {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.form__title {
  font-size: 20px;
}

.form__button {
  background-color: #63c816;
  color: white;
  padding: 10px;
  width: 12%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  font-size: 18px;
  margin: 0 auto;
  cursor: pointer;
}

.item__wrapper {
  display: flex;
  gap: 10px;
  justify-content: start;
  align-items: start;
}

.item__wrapper input {
  accent-color: #2196f3;
}

.record-info {
  width: 45%;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 10px;
  overflow-y: auto;
}

.recordItem {
  margin-bottom: 15px;
  background: #f0f0f0;
  border-radius: 4px;
  padding: 10px;
}

.recordItem h4 {
  margin: 0 0 5px 0;
  font-size: 16px;
}

.recordItem ul {
  padding-left: 20px;
}

.recordItem li {
  margin-bottom: 3px;
}

.masterIdPrompt {
  display: flex;
  width: 500px;
}

[class*="__button"] {
  background-color: #63c816;
  color: white;
  padding: 10px;
  width: 12%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  font-size: 18px;
  margin: 0 auto;
  cursor: pointer;
}

[class*="__title"] {
  font-size: 20px;
}

.masterIdPrompt__input {
  font-size: 20px;
}

@media (max-width: 1200px) {
  .formWrapper {
    width: 80%;
  }
}

@media (max-width: 900px) {
  .formWrapper {
    width: 90%;
  }

  .form__fields {
    align-items: stretch;
  }

  .calendarContainer,
  .record-info {
    width: 100% !important;
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .formWrapper {
    width: 95%;
    padding: 2%;
  }

  .form__title {
    font-size: 18px;
    text-align: center;
  }

  .form__button {
    width: auto;
    min-width: 120px;
    font-size: 16px;
  }

  .masterIdPrompt__input {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .formWrapper {
    padding: 3%;
  }

  .masterIdPrompt {
    flex-direction: column;
    width: 90%;
    gap: 10px;
  }

  .masterIdPrompt__title {
    text-align: center;
  }
}
