body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #e8f5e9, #bbdefb);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu-box {
  background: rgba(255, 255, 255, 0.35);
  border-radius: 18px;
  backdrop-filter: blur(10px);
  padding: 35px;
  height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.menu-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
}

.menu-box-kehadiran {
  background: rgba(33, 150, 243, 0.2);
  border: 1px solid rgba(33, 150, 243, 0.4);
}

.menu-title {
  font-size: 1.6rem;
  font-weight: 600;
  margin-top: 12px;
  color: #2e7d32;
}

.menu-icon {
  font-size: 45px;
  color: #2e7d32;
}

.menu-box-kehadiran .menu-title,
.menu-box-kehadiran .menu-icon {
  color: #0d47a1;
}

a {
  text-decoration: none;
}
