/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * Custom styles to complement TailwindCSS
 */

/* Base font and line height (Tailwind handled in body) */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}

button {
  cursor: pointer;
}

/* Custom hover effects for equipment cards */
.equipment-card {
  transition: transform 0.2s ease-in-out;
}

.equipment-card:hover {
  transform: translateY(-2px);
}

/* Google Places Autocomplete z-index fix */
.pac-container {
  z-index: 9999 !important;
}

/* Custom spinner animation for loading states */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Fix for white text in form inputs */
input[type="text"], 
input[type="email"], 
input[type="tel"], 
input[type="date"], 
input[type="time"] {
  color: #374151 !important; /* gray-700 */
  background-color: white !important;
}

input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="tel"]::placeholder {
  color: #9CA3AF !important; /* gray-400 */
}
