
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: #7bc6d6; /* Optional: adds a light background to the header */
}

.logo {
    /* Adjust as needed */

    background-color: #51b2f2;
}


.logo-img {
    max-height: 50px; /* Adjust based on your logo size */
    width: auto;
}

.companyname {
    font-size: 1em;
    /* width: 50px; */
    display: flex;
    flex-direction: column;
}  

.avata-img {
    max-height: 50px;
float:left
}
.dropbtn {
    background-color: #3498DB;
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;

  }
  
  .dropbtn:hover, .dropbtn:focus {
    background-color: #2980B9;
  }
  
  .dropdown {
    /* position: relative; */
    position: absolute;
    display: inline-block;
    right: 20px;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    overflow: auto;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    right: 0; /* Align dropdown to the right */
    left: auto; /* Ensure left is unset */
  }
  
  .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }
  
  .dropdown a:hover {background-color: #ddd;}
  
  .show {display: block;}