
.language-dropdown {
  display: flex;
  justify-content: center;
  height: auto;
}


.language-button {
  display: flex;
  align-items: center;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 16px;
  padding: 5px;
  color: black;
}

.language-button img {
  margin-right: 8px;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 150px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1;
  border-radius: 5px;
  margin-top: 5px;
}

.dropdown-content a {
  color: black;
  padding: 10px;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.dropdown-content a:hover {
  background-color: #ddd;
  border-radius: 5px;
}

.dropdown-content img {
  margin-right: 8px;
}

.language-dropdown:hover .dropdown-content {
  display: block;
}


nav ul {
  width: 100%;
  list-style: none;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

nav li {
  height: 70px;
}

nav a {
  height: 100%;
  padding: 0 30px;
  text-decoration: none;
  display: flex;
  align-items: center;
  color: black;
}

nav a:hover {
  background-color: aliceblue;
}

.sidebar {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 250px;
  z-index: 999;
  background-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.menu-button {
  display: none;
}

.sidebar li {
  width: 100%;
}

.sidebar a {
  width: 100%;
}

.navbar {
  width: 100%;
  height: 80px;
  background: rgba(0, 0, 0, 0.8);
  position: sticky;
  top: 0;
  z-index: 110;
}

nav{
  background-color: white;
  position: sticky;
  top: 0;
  width: 100%; 
  z-index: 1000;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.menu-button{
  display: none;
}

.sidebar li{
  width: 100%;
}

.sidebar a{
  width: 100%;
}

.navbar a.active {
  color: #fff;  /* White text */
  background-color: #007bff;  /* Blue background */
}

@media(max-width: 800px){
  .hideOnMobile{
      display: none;
  }
  .menu-button{
      display: block;
  }
}

@media(max-width: 450px){
  .sidebar{
      width: 100%;
  }
}