@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
  font-family: 'Inter', sans-serif;
}


/* Update the global site container to 1440px */
.container {
  max-width: 1440px !important;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}


/* global.css */

/* 1. Base State: Light Blue Border and Text */
.btn-outline-primary {
  --bs-btn-color: #1577BB;
  --bs-btn-border-color: #A2E2FF;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #1577BB;
  --bs-btn-hover-border-color: #1577BB;
  --bs-btn-active-bg: #042969;
  
  /* Customizing the NSSC specific look */
  border-width: 2px;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
}

/* 2. Overriding the Hover State explicitly if variables don't take */
.btn-outline-primary:hover {
  background-color: #1577BB;
  border-color: #1577BB;
  color: #ffffff;
}






