/* Navigation Bar Styles */
nav {
  background-color: #333;
  color: #fff;
  padding: 10px;
}

nav div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo Styles */
nav div div:first-child {
  font-size: 24px;
  font-weight: bold;
}

/* Toggle Icon Styles */
#navbar-toggle {
  cursor: pointer;
  display: none; /* Hide toggle icon by default on larger screens */
}

#navbar-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #fff;
  margin: 5px 0;
}

/* Responsive Styles - Show Toggle Icon on smaller screens */
@media only screen and (max-width: 768px) {
  #navbar-toggle {
    display: block;
  }

  nav div div:last-child {
    display: none; /* Hide right-side menu items by default on smaller screens */
  }
}

/* Navigation Links Styles */
ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

ul li {
  margin: 0 10px;
}

ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
}

/* Cart Notification Styles */
#notify {
  background-color: #4caf50;
  color: #fff;
  border-radius: 50%;
  padding: 3px 6px;
  font-size: 12px;
  position: relative;
  top: -8px;
  margin-left: 5px;
}

/* Logout Button Styles */
ul li.red a {
  color: #e74c3c; /* Red color for logout button */
}

/* Hover Styles */
ul li a:hover {
  text-decoration: underline;
}