@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");
body {
  margin: 0;
}

#lab-test-index-panel {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}
#lab-test-index-panel .panel-header {
  display: flex;
}
#lab-test-index-panel .panel-header input[type=text] {
  padding: 10px 14px;
  font-size: 0.95rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  width: 100%;
}
#lab-test-index-panel .panel-header .search-button {
  margin-left: 0;
  padding: 6px 12px;
  background-color: white;
  color: #004b93;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
}
#lab-test-index-panel .panel-header .search-button:hover {
  background-color: rgba(226, 226, 226, 0.4);
}
#lab-test-index-panel .test-list {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  overflow: hidden;
  margin-top: 10px;
  min-height: 0;
}
#lab-test-index-panel .test-list .test-table-container {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
}
#lab-test-index-panel .test-list .test-table-container table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
#lab-test-index-panel .test-list .test-table-container #test-table-header thead {
  background-color: #e2e2e2;
  color: rgba(37, 37, 37, 0.8);
  position: sticky;
  top: 0;
  z-index: 1;
  border-radius: 6px 0 0 6px;
}
#lab-test-index-panel .test-list .test-table-container #test-table-header thead th {
  padding: 6px 12px;
  text-align: left;
  font-family: "Sunflower";
  font-size: 14px;
  font-weight: 500;
  display: flex;
  justify-content: center;
}
#lab-test-index-panel .test-list .test-table-container .tbody-fade-wrapper {
  transition: opacity 0.3s ease, height 0.3s ease;
  opacity: 1;
  overflow-y: auto;
  overflow-x: hidden;
  border: 1px solid #e2e2e2;
  border-radius: 0 6px 6px 0;
  flex: 1 1 auto;
  min-height: 0;
}
#lab-test-index-panel .test-list .test-table-container .tbody-fade-wrapper #test-table-body-wrapper {
  width: 100%;
  border-collapse: collapse;
}
#lab-test-index-panel .test-list .test-table-container .tbody-fade-wrapper #test-table-body-wrapper tbody {
  background-color: white;
}
#lab-test-index-panel .test-list .test-table-container .tbody-fade-wrapper #test-table-body-wrapper tbody tr {
  cursor: pointer;
  transition: background-color 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
#lab-test-index-panel .test-list .test-table-container .tbody-fade-wrapper #test-table-body-wrapper tbody tr:hover {
  background-color: #f1f1f1;
}
#lab-test-index-panel .test-list .test-table-container .tbody-fade-wrapper #test-table-body-wrapper tbody tr td {
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  padding: 12px;
  transition: 0.3s;
  border-radius: 4px;
  color: rgba(37, 37, 37, 0.6);
  font-weight: 500;
}
#lab-test-index-panel .test-list .test-table-container .tbody-fade-wrapper #test-table-body-wrapper tbody tr td:hover {
  background-color: rgba(0, 75, 147, 0.1019607843);
  text-decoration: underline;
  color: #004b93;
}
#lab-test-index-panel .test-list .test-table-container .not-found-message {
  font-family: "DM Sans", sans-serif;
  padding: 1rem;
  color: #737373;
  text-align: center;
}

.pagination-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
  padding: 1rem;
  background-color: #f9f9f9;
  border-radius: 8px;
  flex-wrap: wrap;
  gap: 1rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.pagination {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.pagination a,
.pagination-link {
  text-decoration: none;
  color: #004b93;
  padding: 0.4rem 0.8rem;
  border: 1px solid #004b93;
  font-weight: 500;
  transition: all 0.2s ease;
  border-radius: 10px;
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
}

.pagination-link.disabled {
  pointer-events: none;
  color: #aaa;
  opacity: 0.6;
  text-decoration: none;
  cursor: default;
}

.pagination a:hover {
  background-color: #004b93;
  color: #ffffff;
}

.current-page {
  padding: 0.4rem 0.8rem;
  background-color: #004b93;
  color: #ffffff;
  border-radius: 10px;
  font-weight: bold;
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  border: 1px solid #004b93;
}

.items-per-page {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: #252525;
}
.items-per-page label, .items-per-page span {
  font-weight: 500;
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
}

#items-per-page-select {
  padding: 0.3rem 0.6rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: white;
  font-size: 0.95rem;
  color: #252525;
}

#test-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 2500;
}
#test-modal .modal-content {
  background: white;
  padding: 20px;
  border-radius: 12px;
  width: 80%;
  max-height: 80%;
  overflow-y: auto;
}
#test-modal .modal-actions {
  margin-top: 20px;
  text-align: right;
}
#test-modal .modal-actions .panel-button {
  background-color: #004B93;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}
#test-modal .modal-actions .panel-button:hover {
  background-color: #003b78;
}/*# sourceMappingURL=lab-test-index.css.map */