
     .profile-container {
        position: relative;
        margin-left: 30px;
    }
    
    .profile-circle {
        width: 35px;
        height: 35px;
        border-radius: 50%;
      
        cursor: pointer;
    }
    
    .dropdown {
        display: none;
        position: absolute;
        right: -20px;
        top: 50px;
        
        background-color: white;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
        border-radius: 5px;
        width: 150px;
        z-index: 1;
    }
    
    .dropdown ul {
        list-style: none;
        margin: 0;
        display: flex;
        flex-direction: column;
        padding: 10px 0;
    }
    
    .dropdown li {
        padding: 10px;
    }
    
    .dropdown li a {
        text-decoration: none;
        color: #333;
    }
    
    /* Hover effect */
    .dropdown li:hover {
        background-color: #f1f1f1;
    }
    .hide{
        display:none;
        position:absolute;
        top:25px;
        right:25px;
       
    }
    @media(max-width:1024px){
        .hide{
            display: block;
        }
        .profile-container{
            display: none;
        }
        
    }
