.header {
  background-color: #fe3130; /* Red color from original logo */
  color: white;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo img {
  height: 32px;
  width: auto;
}

.nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav li {
  margin-left: 1.5rem;
}

.nav a, .nav Link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s;
}

.nav a:hover, .nav Link:hover {
  opacity: 0.8;
}

.hamburger-button {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 24px;
  justify-content: space-between;
}

.hamburger-button span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger-button:hover span {
  background-color: rgba(255, 255, 255, 0.8);
}

.logout-button {
  background: none;
  border: none;
  color: white;
  font-weight: 500;
  cursor: pointer;
  padding: 0;
  font-size: inherit;
  transition: opacity 0.3s;
}

.logout-button:hover {
  opacity: 0.8;
}

@media (max-width: 768px) {
  .logout-button {
    display: block;
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s;
    text-align: left;
    width: 100%;
  }

  .logout-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
    opacity: 1;
  }
}

/* Mobile responsive styles */
@media (max-width: 768px) {
  .header {
    flex-direction: row;
    padding: 1rem;
    gap: 0;
    justify-content: space-between;
    position: relative;
  }

  .hamburger-button {
    display: flex;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fe3130;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 1000;
  }

  .nav.nav-open {
    max-height: 500px;
  }

  .nav ul {
    flex-direction: column;
    padding: 1rem 0;
    gap: 0;
  }

  .nav li {
    margin-left: 0;
    width: 100%;
  }

  .nav a, .nav Link {
    display: block;
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s;
  }

  .nav a:hover, .nav Link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    opacity: 1;
  }

  .logo {
    text-align: left;
    font-size: 1.3rem;
  }

  .logout-button {
    display: block;
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s;
    text-align: left;
    width: 100%;
  }

  .logout-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
    opacity: 1;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 1.2rem;
  }
}

  
