/*
 * 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.
 */

:root {
  --brand: #4f46e5;
  --brand-dark: #4338ca;
  --surface: #f7f7fb;
}

body {
  background-color: var(--surface);
}

main {
  min-height: calc(100vh - 9rem);
}

.navbar-brand {
  font-weight: 700;
  letter-spacing: -0.02em;
}

.btn-primary {
  --bs-btn-bg: var(--brand);
  --bs-btn-border-color: var(--brand);
  --bs-btn-hover-bg: var(--brand-dark);
  --bs-btn-hover-border-color: var(--brand-dark);
  --bs-btn-active-bg: var(--brand-dark);
  --bs-btn-active-border-color: var(--brand-dark);
}

.card {
  transition: box-shadow 0.15s ease-in-out, transform 0.15s ease-in-out;
}

.card.card-hover:hover {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.app-footer {
  color: #6c757d;
  font-size: 0.875rem;
}
