/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

/* Common button styles */
.btn {
  @apply inline-flex items-center justify-center px-6 py-3 rounded-lg font-medium transition-all duration-200 transform hover:scale-105 shadow-md;
}

.btn-primary {
  @apply bg-black text-white hover:bg-gray-800;
}

.btn-secondary {
  @apply bg-gray-200 text-gray-900 hover:bg-gray-300;
}

/* Card styles */
.card {
  @apply bg-white p-6 rounded-lg shadow-md;
}

/* Input styles */
.input {
  @apply w-full px-4 py-2 border-2 border-gray-300 rounded-lg focus:border-black focus:ring-2 focus:ring-black focus:ring-opacity-20 transition-all;
}

/* Typography */
h1 {
  @apply text-4xl font-bold mb-6;
}

h2 {
  @apply text-3xl font-bold mb-4;
}

h3 {
  @apply text-2xl font-bold mb-3;
}

/* Flash message alerts */
.alert {
  @apply mb-6 p-4 rounded-lg border-2;
}

.alert-info {
  @apply bg-blue-50 border-blue-300 text-blue-800;
}

.alert-error {
  @apply bg-red-50 border-red-300 text-red-800;
}
