/* WhatsApp Icon */
#wa-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: #fff;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    cursor: pointer;
    z-index: 5;
    box-shadow: 0 10px 25px rgba(0,0,0,.3);
}

/* Chat Box */
#wa-chat {
    position: fixed;
    bottom: -400px;
    right: 20px;
    width: 320px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,.3);
    z-index: 9999;
    transition: .4s ease;
    overflow: hidden;
}

/* Show Chat */
#wa-chat.show {
    bottom: 90px;
}

/* Header */
.wa-header {
    background: #018291;
    color: #fff;
    padding: 12px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wa-sub {
    font-size: 12px;
    opacity: .9;
}

.wa-close {
    font-size: 22px;
    cursor: pointer;
}

/* Body */
.wa-body {
    padding: 10px;
}

.wa-emp {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 10px;
    cursor: pointer;
    transition: .2s;
    color: black;
}

.wa-emp:hover {
    background: #f1f1f1;
}

.wa-emp img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border:1px #eee solid;
}
