#container {
    max-width: 800px;
    margin: 0 auto;
    padding: 50px;
    
}

  
#buttons {
    display: flex;
    justify-content: space-around;
    margin-top: 50px;
    align-items: center;
    
}
section{
    margin-left: 700px;
}
header {
    border: 1px black solid;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    padding: 0 5%;
  }
  
  header nav a {
    text-decoration: none;
    color: black;
    font-size: 20px;
    font-weight: 600;
    border-radius: 99px;
    padding: 10px;
  }
  header nav a.active {
    color: white;
    background-color: black;
  }
  header nav a:hover {
    color: white;
    background-color: black;
  }
  
  header nav:hover > a:not(:hover) {
    color: black;
    background-color: white;
  }
  /* Profile Dropdown Style */
.profile-dropdown {
    position: relative;
    display: inline-block;
    margin-left: 15px;
  }
  
  .profile-icon {
    width: 30px;
    height: 30px;
    cursor: pointer;
    border-radius: 60%;
    
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: #f9f9f9;
    min-width: 120px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 5px;
  }
  
  .dropdown-content p {
    margin: 0;
    padding: 10px;
    font-size: 14px;
    color: #333;
  }
  
  .logout-button {
    display: block;
    padding: 10px;
    text-decoration: none;
    color: #333;
    background-color: #f9f9f9;
    text-align: center;
    border-top: 1px solid #ddd;
    border-radius: 0 0 5px 5px;
  }
  
  .logout-button:hover {
    background-color: #ddd;
  }
  
  .profile-dropdown:hover .dropdown-content {
    display: block;
  }
  