/* === Navbar Styling === */
.navbar {
  background-color: white !important; /* White background */
  border-bottom: 2px solid #E6142D;    /* Optional: red underline for branding */
}


.navbar-brand img {
  height: 160px !important;
  width: auto !important;
  max-height: none !important;
  object-fit: contain;
}


.navbar a,
.navbar a:hover,
.navbar-brand,
.navbar-text {
  color: #E6142D !important; /* Sciences Po red for text */
}

/* === Body Styling === */
body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.6;
  font-size: 16px;
  background-color: #f9f9f9;
}

/* === Headings === */
h1, h2, h3, h4 {
  color: #E6142D;
}

/* === Centered Logos on Homepage === */
.center img {
  margin: 10px;
  max-height: 120px;
}

/* === Table Styling === */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1em;
}

th, td {
  border: 1px solid #ddd;
  padding: 8px;
}

th {
  background-color: #E6142D;
  color: white;
}

/* === Links === */
a {
  color: #E6142D;
}

a:hover {
  text-decoration: underline;
}