@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");
#test-detail-modal {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 3000;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  animation: fadeIn 0.2s ease-out;
  padding: 0 10px 0 10px;
}
#test-detail-modal .modal-content {
  background-color: white;
  max-width: 600px;
  padding: 20px;
  border-radius: 8px;
}
#test-detail-modal .modal-content .panel-title-container {
  flex-shrink: 0;
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
}
#test-detail-modal .modal-content .panel-title-container .panel-title .title-text {
  font-family: "Sunflower";
  font-weight: 700;
  color: #004b93;
  font-size: 30px;
  user-select: none;
}
#test-detail-modal .modal-content .panel-title-container .panel-title .title-underline-container {
  height: 3px;
  padding: 0px 16px;
  box-sizing: border-box;
}
#test-detail-modal .modal-content .panel-title-container .panel-title .title-underline-container .title-underline {
  background-color: #fe0000;
  width: 100%;
  height: 100%;
  border-radius: 2px;
}
#test-detail-modal .modal-content .test-details {
  padding: 10px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 450px;
  overflow-y: auto;
  background-color: rgba(226, 226, 226, 0.4);
  border-radius: 6px;
}
#test-detail-modal .modal-content .test-details p {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: "DM Sans", sans-serif;
  color: rgba(37, 37, 37, 0.6);
}
#test-detail-modal .modal-content .test-details p strong {
  font-size: 14px;
  color: rgba(0, 75, 147, 0.8);
}
#test-detail-modal .modal-content .test-details p span {
  font-size: 14px;
  font-weight: 500;
}
#test-detail-modal .modal-content .modal-actions {
  flex-shrink: 0;
  text-align: right;
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 20px 0 0 0;
}
#test-detail-modal .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: white;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #004b93;
  border: 0;
  transition: 0.2s;
  width: fit-content;
}
#test-detail-modal .modal-content .modal-actions .panel-button:hover {
  transform: scale(1.05);
  background-color: #e2e2e2;
  color: #00396e;
  text-decoration: underline;
}

.modal-content.animate-modal {
  animation: enlargeIn 0.2s ease-out;
  transform-origin: center;
}

@keyframes enlargeIn {
  0% {
    transform: scale(0.9);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}/*# sourceMappingURL=test-details-modal.css.map */