/* Custom styles that supplement Tailwind CSS */

/* Smooth transitions */
.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

/* Additional custom styles if needed */
.hover-grow {
  transition: transform 0.3s ease;
}

.hover-grow:hover {
  transform: scale(1.05);
}

/* Custom focus styles */
input:focus, 
textarea:focus, 
select:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.5);
}

/* Flash message animation */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.flash-message {
  animation: fadeIn 0.5s ease-in-out;
}

/* Ensure full footer push to bottom */
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}
