﻿/* Popup container */
#popupContainer {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

/* Individual popup */
.chat-popup {
    background: #ffffff;
    border-left: 4px solid #25d366; /* WhatsApp green */
    min-width: 260px;
    max-width: 320px;
    padding: 10px 12px;
    margin-top: 10px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    font-size: 13px;
    cursor: pointer;
    animation: slideIn 0.3s ease-out;
}

    /* Sender */
    .chat-popup .sender {
        font-weight: 600;
        margin-bottom: 4px;
        color: #111827;
    }

    /* Message text */
    .chat-popup .text {
        color: #374151;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

/* Animation */
@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}
