@tailwind base;
@tailwind components;
@tailwind utilities;

/* Custom styles */
[x-cloak] {
  display: none !important;
}

.htmx-indicator {
  display: none;
}
.htmx-request .htmx-indicator {
  display: inline;
}
.htmx-request.htmx-indicator {
  display: inline;
}
.htmx-request .htmx-default {
  display: none;
}

/* Golf theme custom styles */
.font-display {
  font-family: 'Montserrat', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

@keyframes swing {
  0% { transform: rotate(0deg); }
  25% { transform: rotate(-5deg); }
  75% { transform: rotate(5deg); }
  100% { transform: rotate(0deg); }
}

.hover\:swing:hover {
  animation: swing 1s ease-in-out;
}