
#whatsapp-container p{
    margin : none;
    font-family: Arial, sans-serif;
}

.whatsapp-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: rgb(0, 98, 137);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10000;
}

.nameTitle p {
    color: white;
}

.whatsapp-icon img {
    width: 30px;
    height: 30px;
}

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

.whatsapp-popup {
    display: none;
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 300px;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    z-index: 10000;
}

.popup-header {
    display: flex;
    align-items: center;
    padding: 10px;
    background-color: rgb(0, 98, 137);
    color: white;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.popup-header p {
    margin : 5px;
}

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

.popup-body {
    padding: 10px;
}

.popup-footer {
    padding: 10px;
    text-align: center;
}

.whatsapp-button {
    display: flex;
    flex-flow: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
    padding: 10px 20px;
    background-color: #25D366;
    color: white;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
}

.whatsapp-button img {
    width: 25px;
    margin-right: 10px;
}

.chat-bubble {
    background-color: rgb(245, 245, 247);
    color: black;
    border-radius: 20px;
    padding: 10px 20px;
    max-width: 200px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.13);
    position: relative;
}

.chat-time {
    display: block;
    font-size: 0.75em;
    color: grey;
    text-align: right;
    position: absolute;
    bottom: 5px;
    right: 10px;
}