/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */

/* ============================================
   CONSISTENT BUTTON STYLES - Blue/Green Theme
   ============================================ */

/* Primary CTA buttons - consistent blue with green hover */
.btn-primary {
  background: #3b82f6 !important;
  color: #ffffff !important;
  border: none;
  padding: 1rem 2.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-primary:hover {
  background: #22c55e !important;
  transform: translateY(-2px);
}
.light-theme .btn-primary {
  background: #3b82f6 !important;
  color: #ffffff !important;
}
.light-theme .btn-primary:hover {
  background: #22c55e !important;
  color: #ffffff !important;
}

/* Navigation CTA button - consistent blue with green hover */
.nav-cta {
  background: #3b82f6 !important;
  color: #ffffff !important;
  border: 2px solid #3b82f6 !important;
  padding: 0.6rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}
.nav-cta:hover {
  background: #22c55e !important;
  border-color: #22c55e !important;
  color: #ffffff !important;
}
.light-theme .nav-cta {
  background: #3b82f6 !important;
  color: #ffffff !important;
  border-color: #3b82f6 !important;
}
.light-theme .nav-cta:hover {
  background: #22c55e !important;
  border-color: #22c55e !important;
  color: #ffffff !important;
}
