@import url("https://fonts.googleapis.com/css2?family=Sunflower:wght@300;500;700&&display=swap");
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap");
#see-lab-index {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: start;
  z-index: 2000;
  padding: 40px;
}
#see-lab-index .modal-content {
  background-color: #fff;
  width: 80%;
  max-width: 900px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.3s ease, transform 0.3s ease;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  transition: 0.3s;
}
#see-lab-index .modal-content .panel-title-container {
  flex-shrink: 0;
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
}
#see-lab-index .modal-content .panel-title-container .panel-title .title-text {
  font-family: "Sunflower";
  font-weight: 700;
  color: #004b93;
  font-size: 30px;
  user-select: none;
}
#see-lab-index .modal-content .panel-title-container .panel-title .title-underline-container {
  height: 3px;
  padding: 0px 16px;
  box-sizing: border-box;
}
#see-lab-index .modal-content .panel-title-container .panel-title .title-underline-container .title-underline {
  background-color: #fe0000;
  width: 100%;
  height: 100%;
  border-radius: 2px;
}
#see-lab-index .modal-content .modal-actions {
  flex-shrink: 0;
  text-align: right;
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 20px 0 0 0;
}
#see-lab-index .modal-content .modal-actions .panel-button {
  display: flex;
  padding: 10px 16px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  background-color: #004b93;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: white;
  border: 0;
  transition: 0.2s;
  width: fit-content;
}
#see-lab-index .modal-content .modal-actions .panel-button:hover {
  transform: scale(1.05);
  background-color: #00396e;
}
#see-lab-index .modal-content .modal-actions .cancel-btn {
  display: flex;
  padding: 10px 16px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  background-color: white;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #004b93;
  border: 0;
  transition: 0.2s;
  width: fit-content;
}
#see-lab-index .modal-content .modal-actions .cancel-btn:hover, #see-lab-index .modal-content .modal-actions .cancel-btn:active {
  transform: scale(1.05);
  background-color: #e2e2e2;
  color: #00396e;
  text-decoration: underline;
}
#see-lab-index .modal-appear {
  opacity: 1;
  transform: scale(1);
}
#see-lab-index .modal-disappear {
  opacity: 0;
  transform: scale(0.8);
}/*# sourceMappingURL=see-lab-test-index.css.map */