body,
html {
  height: 100vh;
  margin: 0;
  padding: 0;
}
h1,
p {
  margin: 0;
}
header {
  height: 10vh;

  color: #000000;

  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.company-name {
  font-size: 1.5em;
}

.logo img {
  height: 8vh;
  width: auto;
  margin-right: 10px;
  object-fit: contain;
}

main {
  height: 85vh;
}
.content {
  padding: 0.25rem;
  height: 100%;
}
footer {
  height: 5vh;

  color: #000000;

  text-align: center;
  line-height: 5vh;
}
.powered-by {
  position: absolute;
  bottom: 0;
  right: 0;
}

.powered-by img {
  height: 30px;

  width: auto;
  vertical-align: middle;
  margin-right: 5px;
}

.loader {
  border: 8px solid #f3f3f3;

  border-top: 8px solid #3498db;

  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 2s linear infinite;
  margin: auto;
}

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

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

.setup-container {
  font-size: 2rem;
  flex-direction: column;
  height: 100%;

  background: #facb70;
  text-align: center;

  align-items: center;
  justify-content: center;
}

.error-container {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  background: #e79d9d;
  text-align: center;
  font-size: 3rem;
}
.announcement {
  border-radius: 8px;
  padding: 10px;
  flex: 1;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px,
    rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}

.innerBox {
  border-radius: 16px;
  padding: 10px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px,
    rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}

.slideshow-container {
  height: 80vh;
  width: 100%;
  display: flex;
  gap: 10px;
}

.innerBoxBorder {
  border-radius: 8px;
  padding: 10px;
  max-width: 4vw;
  min-width: min-content;
  box-shadow: rgb(6 24 44 / 40%) 0px 0px 4px 0px,
    rgb(44 43 122) 0px 11px 2px 0px, rgb(255 255 255 / 8%) 0px -1px 0px inset;
}

.innerBoxBorderRight {
  border-radius: 8px;
  padding: 10px;
  max-width: 4vw;
  min-width: min-content;
  box-shadow: rgb(6 24 44 / 40%) 0px 0px 4px 0px,
    rgb(44 43 122) 10px 0px 2px 0px, rgb(255 255 255 / 8%) 0px -1px 0px inset;
}

.innerChild {
  height: 100%;
  width: 100%;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  justify-content: space-around;
  align-items: center;
}
.smallTableBorder {
  border-radius: 8px;
  padding: 10px;
  display: flex;
  gap: 10px;
  justify-content: space-between;
  /* max-width: 4vw; */
  min-width: min-content;
  box-shadow: rgb(6 24 44 / 40%) 0px 0px 4px 0px, rgb(44 43 122) 0px 3px 2px 0px,
    rgb(255 255 255 / 8%) 0px -1px 0px inset;
}

.table-border {
  border: 0.5px solid #f1f1f1;
}

.tableBody-heading {
  border-right: 2px solid black;
}

.table-heading {
  border-bottom: 2px solid black;
  height: 100px;
  min-width: 100px;
}
