.whatsapp-chat {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #25d366;
    padding: 5px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}
.whatsapp-chat:hover {
    transform: scale(1.1);
}
.messenger-chat {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #ffffff;
    padding: 5px;
    box-shadow: 0px 0px 6px 2px rgb(0 0 0 / .2);
    transition: transform .3s;
}
.messenger-chat:hover {
    transform: scale(1.1);
}
.wechat-chat {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #07C160;
    padding: 5px;
    box-shadow: 0px 0px 6px 2px rgb(0 0 0 / .2);
    transition: transform .3s;
}
.wechat-chat:hover {
    transform: scale(1.1);
}
.line-chat {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #00B900;
    padding: 5px;
    box-shadow: 0px 0px 6px 2px rgb(0 0 0 / .2);
    transition: transform .3s;
}
.line-chat:hover {
    transform: scale(1.1);
}
.google-chat {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #ffffff;
    padding: 5px;
    box-shadow: 0px 0px 6px 2px rgb(0 0 0 / .2);
    transition: transform .3s;
}
.google-chat:hover {
    transform: scale(1.1);
}
.chat-popup {
    display: none;
    position: fixed;
    bottom: 120px;
    right: 20px;
    width: 200px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
    padding: 15px;
    z-index: 99999;
    visibility: visible;
    animation-duration: 0.5s;
    animation-name: fadeInUp;
}
.chat-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}
.chat-popup-title {
    font-weight: bold;
    font-size: 14px;
}
.online-badge {
    background: #18a500;
    color: #fff;
    font-size: 10px;
    padding: 0px 5px;
    border-radius: 10px;
    margin-left: 5px;
    font-weight: 600;
}
.chat-buttons-container {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.chat-button-wrapper {
    display: flex;
    align-items: center;
    gap: 7px;
    background: #ededed;
    border-radius: 5px;
    padding: 4px 6px;
}
.chat-button-wrapper:hover {
    background: #d7ffd8;
}
.chat-button-label {
    font-size: 12px;
    font-weight: 500;
}
.toggle-chat-button {
	right: 5px;
    position: fixed;
    bottom: 65px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #fff !important;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 4px rgb(0 0 0 / .2) !important;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25px !important;
    transition: .3s;
}

.toggle-chat-button:hover {
    transform: scale(1.1);
}
.close-icon {
    display: none;
}
.online-badges {
    position: absolute;
    top: 0;
    right: 0;
    width: 15px;
    height: 15px;
    background-color: #4CAF50;
    border: 2px solid #ffffff;
    border-radius: 50%;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}