.custom-avatar img {
    margin-top: -3px;
    height: 45px !important;
    width: auto;
    border-radius: 50%;
    margin-bottom: -10px;
    transition: transform 0.3s ease;
}
.custom-avatar img:hover {
    cursor: pointer;
}
.custom-avatar {
    position: relative;
    display: inline-block;
}
.custom-avatar .tooltip-text {
    visibility: hidden;
    width: 140px;
    background-color: #fff;
    color: #54595F;
    text-align: left;
    border-radius: 6px;
    padding: 5px 10px 0px 7px;
    font-family: "Century Gothic", Sans-serif;
    font-size: 14px;
    font-weight: 500;
    position: absolute;
    z-index: 1;
    top: 130%;
    left: 50%;
    margin-left: -80px;
    opacity: 0;
    border: none;
    transition: opacity 0.3s, visibility 0.3s linear 0.3s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    line-height: 25px;
    padding-bottom: 5px;
}
.custom-avatar:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
    transition-delay: 0s;
}
.custom-avatar a {
    color: #54595F;
}
.custom-avatar a:hover {
    color: #8B8B8B;
}
