#wlp-whatsapp-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: transparent;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2147483647; /* maximum safe z-index */
}

#wlp-whatsapp-icon:hover {
    transform: scale(1.1);
    transition: 0.2s;
}

#wlp-whatsapp-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#wa-popup {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 320px;
    background: #EDEDE5;
    border-radius: 10px;
    overflow: hidden;
    display: none;
    direction: rtl;
    font-family: Arial;
    z-index: 9999;
}

/* Header */
.wa-header {
    background: #008069;
    color: white;
    display: flex;
    align-items: center;
    padding: 10px;
    position: relative;
}

.wa-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    margin-left: 10px;
}

.wa-header-text {
    flex: 1;
}

.wa-name {
    font-size: 16px;
    font-weight: bold;
}

.wa-status {
    font-size: 12px;
}

#wa-close {
    cursor: pointer;
    font-size: 20px;
}

/* Chat body */
.wa-body {
    padding: 10px;
    max-height: 150px;
    overflow-y: auto;
}

.wa-message {
    background: white;
    padding: 8px 10px;
    border-radius: 10px;
    margin-bottom: 8px;
    font-size: 14px;
}

/* Input */
.wa-input-area {
    display: flex;
    flex-direction: column;
    padding: 10px;
    gap: 6px;
}

.wa-input-area input {
    padding: 8px;
    border: none;
    border-radius: 6px;
}

.wa-input-area button {
    background: #25D366;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 6px;
    cursor: pointer;
}



.wa-credit {
    text-align: center;
    font-size: 11px;
    color: #888;
    margin-top: 5px;
}

.wa-credit a {
    color: #888;
    text-decoration: none;
}

.wa-credit a:hover {
    text-decoration: underline;
}