/* Typography */
body {
  font-family: 'Source Sans Pro', sans-serif;
  color: #333;
  font-size: 17px;
  line-height: 1.6;
  background-color: #fff;
}

/* Headings */
h1, h2, h3 {
  color: #2c3e50;
  font-weight: 600;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
}

/* Navbar */
.navbar {
  background-color: #2c3e50;
}

.navbar a {
  color: #ffffff !important;
}

.navbar a:hover {
  color: #18bc9c !important;
}

/* Links */
a {
  color: #18bc9c;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Page content spacing */
main {
  padding-top: 2em;
  padding-bottom: 2em;
}

/* Footer */
.page-footer, .footer {
  background-color: #f8f9fa;
  padding: 15px 10px;
  text-align: center;
  font-size: 14px;
  color: #777;
  border-top: 1px solid #ddd;
  margin-top: 3em;
}
/* Dropdown menu background and text color */
.navbar .dropdown-menu {
  background-color: #2c3e50;
}

.navbar .dropdown-menu a {
  color: #ffffff !important;
}

.navbar .dropdown-menu a:hover {
  background-color: #18bc9c;
  color: #ffffff !important;
}
/* Force dark background for all dropdown menus */
.dropdown-menu {
  background-color: #2c3e50 !important;
  border: none !important;
}

/* Set text color to white */
.dropdown-menu .dropdown-item {
  color: #ffffff !important;
}

/* Hover effect */
.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus {
  background-color: #18bc9c !important;
  color: #ffffff !important;
}
