@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    animation: fadeInUp 1s ease-in-out forwards;
}

#whatsapp-button img {
    width: 60px;
    height: 60px;
}

#whatsapp-popup {
    display: none;
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 325px;
    background: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    z-index: 1000;
}

.popup-header, .popup-footer {
    padding: 10px;
    background: #25D366;
    color: white;
    display: flex;
    align-items: center;
}

.popup-header {
    border-radius: 7.5px 7.5px 0px 0px;
    padding: 10px 15px;
    /* padding-bottom: 2px; */
}

.popup-header img {
    width: 50px; /* Adjust the width to maintain aspect ratio */
    height: auto; /* Ensure height adjusts based on width */
    border-radius: 50%;
    margin-right: 10px;
    object-fit: cover; /* Ensure the image covers the area without distortion */
}

.popup-title h3 {
    margin: 0;
    font-size: 17px;
    font-weight: bold;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

.popup-title p {
    margin: 0;
    font-size: 0.8em;
    color: #d0f5d9;
}

.popup-body {
    padding: 10px;
}

.popup-body p {
    background: #DCF8C6;
    padding: 8px 12px;
    font-size: 14px;
    border-radius: 0px 7.5px 7.5px 7.5px;
    line-height: 22px !important;
}

.message-meta {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 5px;
    font-size: 12px;
    color: #999;
}

.timestamp {
    margin-right: 5px;
}

.checkmarks {
    color: #34B7F1;
}

.popup-footer {
    display: flex;
    align-items: center;
    background: #EFEFEF !important;
    border-radius: 0px 0px 7.5px 7.5px;
}

.popup-footer input {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 25px !important;
    font-size: 15px;
    margin-right: 10px;
}

.popup-footer button {
    background: none;
    border: none;
    color: white;
    font-size: 1.2em;
    cursor: pointer;
}

.popup-footer button:hover {
    color: #d0f5d9;
}

#whatsapp-send-button {
    background: transparent;
}

#whatsapp-send-button:hover {
    background: transparent;
}

#whatsapp-send-button i {
    color: #949A9C;
}

.popup-title {
    position: relative;
    top: 2px;
}

.popup-title h3 {
    margin: 0;
    font-size: 17px;
    font-weight: bold;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif !important;
    color: white;
    line-height: 15px;
}

.popup-title p{
    line-height: 24px !important;
}