.container {
  /* display:flex; */
  min-height: 80vh;
  padding-bottom: 2.5rem;
}

.search-bar-container {
  display: grid;
  grid-template-columns: auto 1fr 5rem;
  align-items: center;

  gap: 1rem;

  padding-left: 1rem;

  height: 3rem;
  margin: 1.5rem 0.2rem 0;

  background-color: white;
  box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%), 0 6px 20px 0 rgb(0 0 0 / 19%);
}

.search-bar-container input {
  height: 100%;
  background: none;
  border: none;
  outline: none;
  font-size: 1rem;
  padding-left: 1rem;
}
.search-bar-container input:disabled {
  color: #aaa;
}

.search-bar-container button {
  height: 100%;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;

  display: flex;
  justify-content: center;
  align-items: center;

  transition: all 0.2s ease-in-out;
  background-color: #eee;
}

.search-bar-container button:hover {
  background-color: #ddd;
}

.search-bar-container button img {
  height: 1.5rem;
  transition: all 0.2s ease-in-out;
}

.search-bar-container button:hover img {
  height: 1.75rem;
}

#error-container {
  display: none; /* flex; */
  flex-direction: column;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
  margin-top: 1.5rem;
}

#loading-container {
  display: none; /* flex; */
  /* flex-direction: column; */
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
  margin-top: 1.5rem;
}

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

.spinner {
  -webkit-animation: rotation 1.35s linear infinite;
  animation: rotation 1.35s linear infinite;
  stroke: #000;
}

@-webkit-keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
  }
}

@keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
  }
}

.circle {
  stroke-dasharray: 180;
  stroke-dashoffset: 0;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  -webkit-animation: turn 1.35s ease-in-out infinite;
  animation: turn 1.35s ease-in-out infinite;
}

@-webkit-keyframes turn {
  0% {
    stroke-dashoffset: 180;
  }

  50% {
    stroke-dashoffset: 45;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }

  100% {
    stroke-dashoffset: 180;
    -webkit-transform: rotate(450deg);
    transform: rotate(450deg);
  }
}

@keyframes turn {
  0% {
    stroke-dashoffset: 180;
  }

  50% {
    stroke-dashoffset: 45;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }

  100% {
    stroke-dashoffset: 180;
    -webkit-transform: rotate(450deg);
    transform: rotate(450deg);
  }
}

#info span {
  color: #0c526e;
}

#SideFilter {
  max-height: 90vh;
  overflow-y: auto;
}
#ResultTable {
  border-style: solid 1px;
  width: 100%;
  font-size: 17px;
  table-layout: fixed;
  text-align: center;
  color: #0c526e;
  border-collapse: collapse;
  margin-bottom: 10px;
}

#ResultTable td {
  word-wrap: break-word;
  padding: 5px;
  border: solid #0c526e;
}

#ResultTable td a {
  color: #0c526e;
}

#ResultTable tr:nth-child(even) {
  background-color: #d3e3fc;
}
#ResultTable tr:nth-child(odd) {
  background-color: #123c69c4;
  color: #b1a9a5;
}

#ResultTable tr:nth-child(odd) a {
  color: #b1a9a5;
}

#ResultTable th {
  word-wrap: break-word;
  font-size: 15px;
  padding-top: 5px;
  padding-bottom: 5px;
  background-color: #fb9902;
  color: rgb(109, 104, 104);
  border: solid #0c526e;
}

/* for information section */

.card-type2 {
  font-size: 75%;
  padding: 0.5%;
  background-color: rgb(245 246 247 / 69%);
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

#info {
  width: 80vw;
  margin: 25px 2px;
  font-size: 80%;
  padding: 1%;
}

/* Style the button that is used to open the sidepanel */
.openbtn {
  position: fixed;
  font-size: 20px;
  cursor: pointer;
  background-color: rgba(62, 62, 63, 0.548);
  color: white;
  padding: 10px 15px;
  border: none;
  right: 0;
  transition: 0.5s;
}

.openbtn:hover {
  background-color: #444;
  position: fixed;
}

#dataInfo {
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
}

#DownloadQueryData {
  box-sizing: border-box;
  width: 100px;
  height: 50px;
  margin: 15px;
}

#DownloadQueryData a {
  text-decoration: none;
  color: green;
}

#getCSV {
  box-sizing: border-box;
  margin-top: 35px;
  margin-left: 35px;
  font-size: 30px;
}
.tr {
  height: 50px;
}
.dwnld-btn {
  box-sizing: border-box;
  margin-top: 35px;
  margin-left: 35px;
  font-size: 30px;
}
