/* Semua tombol */
button,
.btn {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Efek hover */
button:hover,
.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
