@import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@200;400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Space+Mono&display=swap');

* {
  font-family: 'Urbanist';
}

.title {
  font-size: 26pt;
}

.btn1 {
  font-size: 14pt;
  color: white;
  background-color: black;
  border-width: 1px;
  border-color: black;
  border-radius: 5px;
  padding: 10px 16px;
}

.btn1:hover {
  cursor: pointer;
}

.btn1:active {
  color: black;
  background-color: white;
  border-width: 1px;
  border-color: black;
}

#epview {
  min-height: fit-content;
  max-height: fit-content;
  margin-left: 10px;
  margin-right: 10px;
  display: flex;
  justify-content: center;
}

.valuebox {
  min-width: 0px;
  width: 0px;
  display: flex;
  flex-grow: 1;
  font-size: 12pt;
  font-family: 'Space Mono';
  color: #555555;
  background-color: lightgray;
  margin: 10px 4px;
  border-radius: 5px;
  border-width: 0px;
  padding: 8px 12px;
  overflow: scroll;
  text-align: left;
  white-space: nowrap;
  scrollbar-width: none;  /* Firefox */
  -ms-overflow-style: none;  /* IE and Edge */
}

.valuebox::-webkit-scrollbar { /* Chrome & Chromium */
  display: none;
}

.iconbtn {
  overflow: auto;
  max-width: 40px;
  min-width: 40px;
  color: #555555;
  background-color: lightgray;
  margin: 10px 4px;
  border-radius: 5px;
  border-width: 0px;
  padding: 8px;
  text-align: center;
}

.iconbtn:hover {
  cursor: pointer;
}

.iconbtn:active {
  background-color: darkgray;
}

.fa-copy {
  font-size: 16pt;
  color: #555555;
}

.loader {
  margin: 0px auto;
  border: 6px solid #f3f3f3; /* Light grey */
  border-top: 6px solid #000; /* Blue */
  border-radius: 50%;
  width: 30px;
  height: 30px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
