body {
  margin: 0;
  padding: 0;
  background-color: #f4f7e1;
  color: #333;
  font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background-color: #44672d;
  margin-bottom: 20px;
}

.container {
  display: flex;
  align-items: center;
  background-color: #ffffff;
  border-radius: 10px;
  margin-left: 130px;
}

nav {
  display: flex;
  font-size: 22px;
  font-weight: bold;
  font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

#nav-links {
  list-style-type: none;
  display: flex;
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-left: 70px;
}

.nav-link {
  text-decoration: none;
  color: #f4f7e1;
  padding: 10px;
  border-radius: 5px;
  margin-right: 30px;
}

.nav-link:hover {
  background-color: #e1f5f7;
  color: #44672d;
  cursor:pointer;
}

.active {
  background-color: #c9f1f3;
  color: #44672d;
}

.sign-out {
  margin-left: auto;
}

#signOutButton {
  background-color: #f44336;
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 5px;
  margin-right: 100px;
  font-size: 16px;
}

header img {
  max-width: 150px;
  max-height: 150px;
}

.nav-link.active {
  color: #21440c; /* Text color for active tab */
  border-color: #151bb3; /* Border color for active tab */
  background-color: #cbf0f2;
  border-radius: 5px;
}

button {
  cursor: pointer;
}

::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 7px;
  margin-left: 15px;
  margin-bottom: 0px;
}
::-webkit-scrollbar-thumb {
  border-radius: 4px;
  margin-left: 5px;
  background-color: rgba(0, 0, 0, .5);
  -webkit-box-shadow: 0 0 1px rgba(255, 255, 255, .5);
}