@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@600&display=swap");

:root {
  --ui-color: #fbad20;
}

body {
  padding: 0;
  margin: 0 auto;
  box-sizing: border-box;
  font-family: "Poppins";
  font-weight: 600;
}

#tools {
  margin: 0 auto;
  text-align: center;
  font-family: "Poppins";
  font-weight: 600;
}

#mosaic-container {
  height: calc(100vh - 82px);
}

#input-container {
  display: none;
}

#search {
  border-color: var(--ui-color);
  border-radius: 2em 0 0 2em;
  /* text-align: center;
  height: 100%;
  border-style: none;
  border: none;
  */
}

#btn-container {
  display: none;
}

#btn-search {
  background-color: var(--ui-color);
  color: #ffffff !important;
  border-radius: 0 2em 2em 0;
  /* box-sizing: content-box;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
  height: 100%;
  border-color: #00b9e4;
  border-style: none;
  border: none; */
}

#search-results {
  position: fixed;
  width: auto;
  top: 75px;
  left: 50%;
  height: auto;
  max-height: 300px;
  transform: translateX(-50%);
  background-color: rgb(0, 0, 0); /* Fallback color */
  background-color: rgba(255, 255, 255, 0.7); /* Black w/ opacity */
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  display: grid;
  overflow: auto;
  margin-bottom: 5px;
  z-index: 1;
}

#search-results img {
  margin-left: 10px;
  margin-top: 5px;
  margin-bottom: 5px;
  border: solid 1px white;
  width: 64px;
  height: 64px;
}

.openseadragon-container :focus {
  outline: none;
}

div[title="Toggle full page"] {
  display: none !important;
}

div[title="Zoom in"] img {
  display: none !important;
}

div[title="Zoom out"] img {
  display: none !important;
}

div[title="Go home"] img {
  display: none !important;
}

#zoom-tools {
  margin: 0 auto;
}

#toolbar {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
  z-index: 1;
  width: 112px;
  padding: 0;
  height: 30px;
}

.btn-zoom-in,
.btn-zoom-out,
.btn-home {
  color: var(--ui-color);
}

#card {
  padding: 0;
  margin: 0 auto;
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100vw; /* Full width */
  height: 100vh; /* Full height */
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.9);
}

#messageText {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  max-width: 80%;
  line-height: 150%;
  word-wrap: break-word;
}

/* Card content */
#cardContent {
  border-radius: 8px;
  border: solid 6px var(--ui-color);
  background-color: white;
  position: relative;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  overflow-y: none !important;
  width: 90vw;
  height: 90vw;
  max-height: 600px;
  max-width: 600px;
}

#etlogo {
  margin-top: 20px;
  width: 200px;
}

#nameText {
  font-weight: bold;
}

#cardcontent p {
  font-weight: bold;
  width: 70%;
  word-wrap: break-word;
}

#rawImg {
  max-width: 90%;
}

#btn-close {
  width: 16px;
  height: 16px;
  position: fixed;
  top: 0px;
  right: 2px;
  z-index: 1;
}

#selection-overlay {
  background-color: "transparent" !important;
  border: "solid 4px blue" !important;
  opacity: 0.5 !important;
}
#tile-overlay {
  background-color: "tomato" !important;
  opacity: 0.5 !important;
}

#selection-overlay {
  background-color: "green";
  border: "solid 4px blue";
  /* opacity: 0.5; */
}
