/* Style for the chat button container */
.chat-button-container {
    position: fixed;
    bottom: 100px;
    right: 45px;
    text-align: center;
}

/* Style for the chat button */
.chat-button {
    background-color: #25D366;
    color: white;
    border-radius: 0;
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
    position: relative;
}

    .chat-button:hover {
        transform: scale(1.1);
    }

.chat-button-title {
    color: #25D366;
    font-weight: bold;
    margin-top: 5px;
}

/* Animation */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-15px);
    }

    60% {
        transform: translateY(-7px);
    }
}

.chat-button {
    animation: bounce 2s infinite;
}
