.nav-pills .nav-link.active {
  color: white; /* Warna teks saat tab aktif */
}

.nav-pills .nav-link {
  color: white; /* Warna teks saat tab tidak aktif */
}

.sembunyi {
  display: none;
}

.text-s {
  font-size: 12px;
}

.dipilih {
  transition: all 0.5s ease-in-out;
  transform: scale(1.15);
}

.card:focus {
  transition: all 0.5s ease-in-out;
  transform: scale(1.15);
}

.card:hover {
  transition: all 0.5s ease-in-out;
  transform: scale(1.15);
}

.hover-img {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background-color: rgba(0, 0, 0, 0.4); */
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

body {
  height: 100vh;
  margin: 0;
  overflow: hidden;
}

.tab-content-scroll {
  height: 60vh;
  overflow-y: auto;
}

.full-height {
  height: 100vh;
}