.judul{
  margin: 50px 0;
}

.judul h2{
  color: #1AA1F5;
  font-weight: 600;
  text-align: center;
  margin-bottom: 2px;
}

.judul p{
  text-align: center;
  font-weight: 500;
  color: gray;
  font-size: 18px;
}

.canvas-table{
  background-color: rgb(255, 255, 255);
  border-radius: 5px;
  border: 1px solid rgb(170, 170, 170);
  padding: 40px 20px;
  margin-bottom: 70px;
}

.table thead tr th{
  background-color: #1AA1F5;
  color: #F8F8F8;
  padding: 10px;
}

td.centered,
th.centered {
  vertical-align: middle; /* Vertikal rata tengah */
}

.judul-data a{
  text-decoration: none;
  color: black;
  transition: all ease-in-out .1s;
}

.judul-data a:hover{
  color: #1AA1F5;
}

.search-data{
  margin-bottom: 70px;
  margin-top: 50px;
}

.heading-section{
  color: #1AA1F5;
  font-weight: 500;
  margin-bottom: 10px;
}

.form-search input{
  width: 400px;
  height: 50px;
  border-radius: 50px;
  border: 2px solid #252525;
  padding: 20px;
}

.form-search button{
  background-color: #1AA1F5;
  border: none;
  height: 50px;
  border-radius: 50px;
  color: white;
  width: 100px;
  transition: all ease .3s;
}

.form-search button:hover{
  background-color: #1687cd;
}


/* Animasi */
.fade-in {
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.judul.show{
  opacity: 1;
  transform: translateY(0);
  transition-delay: .0s;
}

.search-data.show{
  opacity: 1;
  transform: translateY(0);
  transition-delay: .0s;
}

.canvas-table.show{
  opacity: 1;
  transform: translateY(0);
  transition-delay: .2s;
}
