/* css styles */



/* Make navbar background light yellow */
.navbar {
  background-color: #650015 !important;
  border-bottom: none !important;
}

/* Make navbar text dark (since background is light) */
.navbar-brand,
.navbar-nav .nav-link {
  color: #F7F7F9 !important;
}

/* Remove gray horizontal rules (if any) */
hr {
  border: none;
}

/* Optional: remove bottom borders under headers, etc. */
.page-title, .title {
  border-bottom: none !important;
}

/* Optional: remove other unnecessary borders */
.main {
  border: none !important;
  box-shadow: none !important;
}


.navbar .navbar-brand::after {
  content: none !important;
  border: none !important;
}



body {
  background-color: #F7F7F9 !important;
  font-family: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 
               Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* Optional: also ensure the main content area is white */
main {
  background-color: #F7F7F9 !important;
}





/* Normal hyperlink */
a {
  color: #4e6ba6 ; /* Change to your desired color (e.g. blue) */
  text-decoration: none;
}

/* Hover state */
a:hover {
  color: #779ecb; /* Change to hover color (e.g. orange) */
  text-decoration: underline;
}


.container {
  max-width: 100%;
  width: auto;
}





