
/* Lightweight custom tweaks layered on top of Tailwind */
.glass {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.7);
}
@media (prefers-color-scheme: dark) {
  .glass {
    background: rgba(30, 41, 59, 0.6);
  }
}
#addressForm {
  margin-bottom: 24px;
}