.chatlink{
    display: inline-flex;
    align-items: center;

    text-decoration: none;   /* เอาเส้นใต้ link ออก */
    color: #e2e5e9;          /* สีไอคอน/ข้อความ */
    font-weight: 600;


    transition: all .2s ease;
    cursor: pointer;
}

/* hover effect */
.chatlink:hover{
    background: rgba(255,149,0,0.15);
    color: #ffffff;
}

/* active (ตอนกด) */
.chatlink:active{
    transform: scale(0.95);
}

/* icon ใน link */
.chatlink i,
.chatlink img{
    font-size: 16px;
    width: 18px;
    height: 18px;
}