#whatsapp-chat-container {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    left: auto !important;
    z-index: 1000;
}

#whatsapp-btn {
    width: 60px;
    height: 60px;
    background-color: #128c7e;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: relative;
}

#whatsapp-btn img {
    width: 40px;
    height: 40px;
}

.notification-dot {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 12px;
    height: 12px;
    background: red;
    border-radius: 50%;
}

#whatsapp-popup {
    display: none;
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 280px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.chat-header {
    background: #128c7e;
    padding: 10px;
    color: white;
    display: flex;
    align-items: center;
}

.chat-header .profile-pic {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.chat-header .header-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.chat-header .header-text strong {
    font-size: 14px;
    line-height: 1.2;
}

.chat-header .header-text span {
    font-size: 12px;
    opacity: 0.8;
}

.chat-body {
    padding: 20px;
    font-size: 14px;
    background: #fafafa;
}

.chat-footer {
    background: #f1f1f1!important;
    padding: 20px;
    text-align: center;
}

.chat-footer a {
    background: #128c7e;
    color: white!important;
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 5px;
}
