/*
 * Custom CSS
 */

:root {
  --bs-body-bg: var(--bs-gray-100);
}

.spinner {
  width: 64px;
  height: 64px;
  border: 8px solid;
  border-color: #3d5af1 transparent #3d5af1 transparent;
  border-radius: 50%;
  animation: spin-anim 1.2s linear infinite;
}

@keyframes spin-anim {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

h3 {
  margin-left: 50px;
  margin-top: 10px;
}


body {
  font-family: Arial, Helvetica, sans-serif;
  margin: 0px;
}

table,
th,
td {
  border: 1px solid black;
  border-collapse: collapse;
  padding: 5px;
  text-align: center;
  width: 90vw;
  font-size: larger;
  margin: 20px;
}

th {
  background-color: lightgrey;
  font-size: small;
}

.updated-timestamp {
  font-size: small;
  color: #666;
}