    @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

    .profile-container {
        position: fixed;
        top: 20px;
        right: auto;
        background: rgba(255, 255, 255, 0.8);
        padding: 15px;
        border-radius: 12px;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
        display: flex;
        align-items: center;
        gap: 10px;
        cursor: pointer;
        opacity: 0;
        transform: translateX(100%);
        transition: all 0.4s ease-in-out;
        font-family: 'Roboto', sans-serif;
    }

    .profile-container.show {
        opacity: 1;
        transform: translateX(0%);
    }

    .avatar {
        border-radius: 50%;
        width: 60px;
        height: 60px;
        object-fit: cover;
        transition: transform 0.2s ease-in-out;
    }

    .avatar:hover {
        transform: scale(1.1);
    }

    .user-name {
        font-size: 16px;
        font-weight: bold;
        color: #333;
    }
    
    
    
    
    
    
    
    
    
    
    
    
    
        .profile-dropdown {
        position: absolute;
        top: 60px;
        right: 20px;
        background-color: #111;
        color: white;
        border-radius: 10px;
        padding: 15px;
        width: 240px;
        box-shadow: 0 0 20px rgba(0,0,0,0.5);
        display: none;
        z-index: 1000;
    }

    .profile-dropdown h3 {
        margin: 0 0 5px;
        font-size: 18px;
    }

    .profile-dropdown p {
        font-size: 12px;
        margin-bottom: 12px;
        color: #aaa;
    }

    .profile-dropdown a {
        display: block;
        padding: 6px 0;
        color: white;
        text-decoration: none;
        font-size: 14px;
        border-bottom: 1px solid #333;
    }

    .profile-dropdown a:last-child {
        border-bottom: none;
    }

    .profile-dropdown a:hover {
        color: #ffc107;
    }