.user {
    position: relative;
    display: inline-block;
    margin: 10px 0 5px 0;
    
}
.user a{
    color: #fa1e1e;
}

.user-info {
    display: none;
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-20%);
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
    width: auto;
}

.info-content {
    white-space: nowrap;   
    overflow: hidden; 
    text-overflow: ellipsis;
}

.user:hover .user-info {
    display: flex;
    flex-direction: row; 
    justify-content: center;

}
.chat a{ 
    text-decoration: underline;
}

.chat-content{
    margin: 5px 3px 10px 3px;
}