* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
    padding: 10px 20px;
}

.logo a {
    color: #fff;
    font-size: 24px;
    text-decoration: none;
    font-weight: bold;
}

.search-bar {
    display: flex;
    flex: 1;
    justify-content: center;
    margin-left: 20px;
}

.search-bar input {
    width: 300px;
    padding: 8px;
    border: none;
    border-radius: 4px;
}

.search-bar .search-btn {
    padding: 8px 16px;
    border: none;
    background-color: #ff9800;
    color: white;
    border-radius: 4px;
    cursor: pointer;
    margin-left: 5px;
}

.search-bar .search-btn:hover {
    background-color: #e68900;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
}

.nav-links li {
    margin: 0 10px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    padding: 8px 16px;
    transition: background-color 0.3s;
}

.nav-links a:hover {
    background-color: #575757;
    border-radius: 4px;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 160px;
    box-shadow: 0px 8px 16px white;
    z-index: 1;
}

.dropdown-content a {
    color: skyblue;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #ddd;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.auth-options {
    display: flex;
    align-items: center;
}

.auth-options button {
    background-color: #ff9800;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    margin-left: 10px;
    transition: background-color 0.3s;
}

.auth-options button:hover {
    background-color: #e68900;
}
nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 10px;
  }
  nav ul {
    display: flex;
    flex-wrap: wrap;
  }
  nav li {
    margin: 5px;
  }
  @media (max-width: 768px) {
    nav ul {
      flex-direction: column;
    }
  }
  
