
h1{
  font-size: 30px;
  color: #00008B;
  text-transform: uppercase;
  font-weight: 300;
  font-family: New Century Schoolbook, TeX Gyre Schola, serif;
  text-align: center;
  background:#fff;
  width:30%;
  border-radius: 15px;
  margin:15px auto;
  padding:1rem 0;
}

@media screen and (max-width: 999px) {
  h1 {
    width: 90%;
  }
}

table{
  width:100%;
  table-layout: fixed;
}
.tbl-header{
  background-color: #8B0000;
  color:#fff;
 }
.tbl-content{
  min-height:70vh;
  overflow-x:auto;
  margin-top: 0px;
  background: rgb(0, 0, 0, 0.8);
  margin-bottom: 1rem;
  border: 1px solid #8b0000;
}
th{
  padding: 20px 15px;
  text-align: center;
  font-weight: 500;
  font-size: 17px;
  color: #fff;
  text-transform: uppercase;
}
td{
  padding: 15px;
  text-align: center;
  vertical-align:middle;
  font-weight: 300;
  font-size: 14px;
  color: #fff;
  border-bottom: solid 2px #8B0000;
}
section{
  margin: 50px;
}

::-webkit-scrollbar {
    width: 6px;
} 
::-webkit-scrollbar-track {
    -webkit-box-shadow: #006400 0px 3px 6px, #00008B 0px 3px 6px;
} 
::-webkit-scrollbar-thumb {
    -webkit-box-shadow: #006400 0px 3px 6px, #00008B 0px 3px 6px;
}

section {
  overflow-x:hidden;
}
.slideInRight {
  animation-name: slideInRight;
} 
.slideInDown {
  animation-name: slideInDown;
}
.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInDown {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@media screen and (max-width: 900px) {
  section{
    margin: 10px;
  }
  th{
    padding: 8px 2px;
    font-size: 11px;
  }
  td{
    padding: 8px;
    font-size: 10px;
  }
  h1 {
    font-size: 18px;
  }
}

.logo{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.header_logo{
  width:60px;
  height:50px;
  box-sizing: border-box;
}

.header_logo img{
  width:100%;
  height:100%;
  object-fit: contain;
}
