
/* Home.html */
.bg-cover {
    background-size: cover;
  }
.bg-center {
    background-position: center;
  }
.zoom:hover img {
    transform: scale(1.1);
    transition: transform 0.3s ease;
  }
  .line-clamp-5 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 5;
}
/* Navbar.html */
  .dropdown-menu {
    display: none;
  }
  .dropdown:hover .dropdown-menu,
  .dropdown:focus-within .dropdown-menu {
    display: block;
  }

/* Dokumen.html */
.card {
  background-color: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  border-radius: 0.5rem; /* Tailwind class: rounded-lg */
  overflow: hidden;
}

.download-link {
  background-color: rgb(17 24 39); /* Tailwind class: bg-blue-500 */
  color: white;
  margin-top: 1rem; /* Tailwind class: mt-4 */
  padding: 0.5rem 1rem; /* Tailwind class: p-2 */
  border-radius: 0.375rem; /* Tailwind class: rounded-md */
  transition: background-color 0.3s; /* Tailwind class: transition duration-300 */
}

.download-link:hover {
  background-color: rgb(234 179 8); /* Tailwind class: hover:bg-yellow-500 */
}

@keyframes bounce {
  0%, 80%, 100% {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
  }
}
.loading-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
.loading-dots div {
  width: 1rem;
  height: 1rem;
  margin: 0.3rem;
  background-color: black;
  border-radius: 50%;
  animation: bounce 1.4s infinite ease-in-out both;
}
.loading-dots div:nth-child(1) {
  animation-delay: -0.32s;
}
.loading-dots div:nth-child(2) {
  animation-delay: -0.16s;
}
