/*
.navbar {
  background-color: #333;
  color: #fff;
}

.menu-toggle {
  display: none;
  cursor: pointer;
}

.menu-icon {
  display: block;
  width: 20px;
  height: 2px;
  background-color: #fff;
  margin-bottom: 4px;
}

.menu {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-end;
}

.menu > li {
  position: relative;
  margin-left: 10px;
}

.menu > li > a {
  display: block;
  padding: 10px;
  color: #fff;
  text-decoration: none;
}

.menu .submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #333;
  padding: 10px;
  min-width: 200px;
}

.menu .submenu li {
  margin-bottom: 5px;
}

.menu .submenu a {
  display: block;
  padding: 5px;
  color: #fff;
  text-decoration: none;
}

/* Media query for responsive behavior */
/*
@media (max-width: 768px) {
  .menu {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px;
  }

  .menu-toggle {
    display: block;
  }

  .menu > li {
    margin-left: 0;
    margin-bottom: 10px;
  }

  .menu .submenu {
    position: static;
    display: none;
  }

  .menu-toggle:checked ~ .menu .submenu {
    display: block;
  }
}

*/
.btn-primary {
    background-color: #be1e2d; /* New primary color */
    border-color: #be1e2d;     /* Optional: Change border to match */
}

.btn-primary:hover {
    background-color: #000; /* Darken color on hover */
    border-color: #000;
	color:#fff;
}