html, body {
    background-color: rgb(14, 14, 14);
    margin: 0;
    padding: 0;
}


header {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 50;
    width: 100%;
    text-align: center;
    padding-top: 10px;
}

#oeslogoimage {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 50;
    background-color: rgba(41, 41, 41, 0.63);
    border-radius: 20px;
    height: auto;
    width: 160px;
}


.mouse-clickable {
    cursor: pointer;
}

.removetextdeco {
    text-decoration: none;
}

#oeslogoimage-header {
    position: absolute;
    top: 0;
    left: 0;
    margin: 10px;
    /* transform: translateX(-50%); */
    z-index: 50;
    background-color: rgba(48, 48, 48, 0.63);
    border-radius: 20px;
    height: auto;
    width: 60px;
}

#nav {
    position: absolute;
    width: 100%;
    top: 0px;
    height: 80px;
    background-color: rgb(29, 29, 29);
}

#nav-login-button-div {
    position: absolute;
    right: 0px;
    padding-right: 10px;
    padding-top: 10px;
}


#nav-buttons-div {
    position: absolute;
    height: 80px;
    width: 400px;
    top: 1px;
    left: 90px;
    background-color: #00000000;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 0 10px;
}

.nav-button-style-1 {
    background-color: #333;
    color: rgb(255, 140, 32);
    border: 2px solid transparent;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-family: system-ui, sans-serif;
    font-size: 16px;
    display: inline-block;
    transition: background-color 200ms ease, border-color 200ms ease, color 200ms ease;
    cursor: pointer;
    text-align: center;
  }
  
  .nav-button-style-1:hover {
    background-color: #555;
    color: rgb(255, 140, 32);
  }
  
  .nav-button-style-1:active {
    background-color: #222;
    color: rgb(255, 140, 32);
  }
  
.button-home:hover {
    background-color: #333333;
    text-decoration: none;
    transition-duration: 0.1s;
}

.button-home:active {
    background-color: #292929;
    transition: none 0s;
}


#pfpbody {
    position: absolute;
    right: 10px;
    /* top: -35px; */
}

#user-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    justify-content: flex-start;
    position: relative;
    margin-top: 0px;
    right: 10px;
    top: 10px;
    z-index: 300;
}

#user-info img {
    position: relative;
    width: 50px;
    height: auto;
    border-radius: 100%;
    display: block;
}

#user-name {
    text-align: center;
    margin-top: 47px;
    color: rgb(255, 255, 255);
}



#loggedin_account_mange_buttons {
    position: absolute;
    top: 19px;
    right: 220px;
}




.pfpdropbtn {
    position: relative;
    background-color: #4caf4f00;
    color: orange;
    font-size: 16px;

    border: none;
    cursor: pointer;
  }
  
  .pfpdropdown {
    position: relative;
    display: inline-block;
    top: -87px;
  }
  
  .pfpdropdown-content {
    display: none;
    position: absolute;
    background-color: #333;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    top: 40px;
    right: 10px;
  }
  
  .pfpdropdown-content a {
    color: rgb(255, 140, 32);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }
  
  .pfpdropdown-content a:hover {
    background-color: #292929
  }
  
  .pfpdropdown:hover .pfpdropdown-content {
    display: block;
  }
  
  .pfpdropdown:hover .pfpdropbtn {
    background-color: #3e8e4100;
  }


#change_user_pfp {
  position: relative;
  background-color: #222;
  padding: 10px;
  border-radius: 5px;
}

#change_user_pfp img {
  position: relative;
  width: 50px;
  height: auto;
  border-radius: 100%;
  display: block;
  margin-bottom: 10px;
}


#verification-container {
  position: absolute;
  display: block;
  left: 45%;
  transform: translateX(-50%);
  padding: 20px;
  width: 300px;
  top: 80px;
  background-color: #333;
  color: rgb(255, 140, 32);
  margin: 20px;
  border-radius: 10px;
  overflow-x: auto;
}
