body {
    font-family: Arial, sans-serif;
    background-color: #85CAFD;  }
  .container{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
  }
  
  .dropdown {
    list-style-type: none;
    padding: 0;
    margin: 0;
  }
  
  .dropdown li {
    position: relative;
    margin: 5px 0;
  }
  
  .dropdown li > span {
    cursor: pointer;
    display: flex;
    padding: 8px 12px;
    background: #CDE1FF;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #333;
    transition: background 0.3s ease, color 0.3s ease;
    width: 150px;
    justify-content: space-between;
    gap: 10px;
  }
  
  .dropdown li > span:hover {
    background: #FF7F56;
    color: #fff;
    border: 1px solid #FF7F56;
  }
  
  .dropdown ul {
    list-style-type: none;
    padding-left: 20px;
    margin: 5px 0 0 0;
    /* background-color: #17a2b8; */
    display: none; 
  }
  
  .dropdown li.open > ul {
    display: block; /* Show submenu when parent is open */
  }
  
  .dropdown ul li > span {
    background: #CDE1FF;
    border: 1px solid #ccc;
    width: 210px;
  }
  
  .dropdown ul li > span:hover {
    background: #FF7F56;
    color: white;
  }
  
  .dropdown li.activity > span {
    font-weight: bold;
    background: #CDE1FF;
    color: #495057;
    border: none;
    min-width: 190px;
  }
  
  .dropdown li.activity > span:hover {
    background: #FF7F56;
    color: #212529;
  }
  
  .settingContainer{
    cursor: pointer;
    display: flex;
    padding: 8px 12px;
    background: #CDE1FF;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #333;
    transition: background 0.3s ease, color 0.3s ease;
    width: 150px;
    height: fit-content;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
  }

  .hidden {
    display: none !important;
  }
  .settingMenu {
    list-style-type: none;
    display: flex;
    position: absolute;
    padding-inline: 10px;
    padding-block: 10px;
    top: 50px; 
    right: 9px; 
    height: fit-content;
    width: fit-content;
    justify-content: center;
    align-items: center ;
    border-radius: 4px; 
    background: #CDE1FF; 
    border: 1px solid #ddd; 
    gap: 5px;
  }

  .menuItems {
    list-style-type: none;
    cursor: pointer;
    text-align: center;
  }

  .selectedLang{
    background-color: blue;
  }

  .languageDropdown {
    list-style: none;
    padding: 10px;
    margin: 0;
    background: #CDE1FF;
    border: 1px solid #ddd;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 40px;
    right: 5px;
}

  .languageDropdown li {
    padding: 5px 10px;
    cursor: pointer;
  }

  .languageDropdown li:hover {
    background: #FF7F56;
  }
  .menuItem:hover {
    
  }
  