 .header__info-user {
     position: relative;
 }

 .user-dropdown {
     display: none;
     position: absolute;
     margin-top: 20px;
     top: 100%;
     left: -100px;
     background-color: white;
     border: 1px solid #ddd;
     padding: 10px;
     width: 200px;
     box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
     z-index: 1000;
 }

 .user-dropdown ul {
     list-style: none;
     padding: 0;
     margin: 0;
 }

 .user-dropdown ul li {
     margin-bottom: 10px;
 }

 .user-dropdown ul li a {
     color: darkblue;
     text-decoration: none;
     font-size: 16px;
 }

 .login-btn {
     background-color: darkblue;
     color: rgb(255, 255, 255);
     padding: 10px;
     text-align: center;
     display: block;
     border-radius: 4px;
 }

 .signup-section {
     margin-top: 20px;
     text-align: center;
 }

 .signup-section a {
     color: darkblue;
     font-weight: bold;
     text-decoration: none;
 }

 /* Show dropdown on icon click */
 .header__info-user.active .user-dropdown {
     display: block;
 }

 .mymargin {
    margin-top: 10px;
    margin-bottom: 10px;;
 }