#cw-chat-icons {
    position: fixed;
    bottom: 10px;
    right: 10px;
    display: flex;
    gap: 10px;
}

.cw-chat-icon img {
    width: 50px;
    cursor: pointer;
    position: relative;
    bottom: 45px;
    border-radius: 50%; /* Make it circular */
    animation: pulseBorder 2s infinite;
    right:15px;
}

.cw-chat-form {
    display: none;
    position: fixed;
    bottom: 80px;
    right: 70px;
    background-color: #25d366;
    padding: 15px;
    border-radius: 5px;
    color: #fff;
    z-index: 99; /* Ensure it is above other elements */
}

#cw-chat-user-text {
    width: 80%;
    margin-right: 10px;
}

#cw-chat-send {
    background-color: #128C7E;
    color: #fff;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
}
.cw-chat-form, .cw-chat-form1 {
    display: none;
    transition: all 0.3s ease;
}
/* Style for the chat icons container */
#cw-chat-icons {
    display: flex;
    flex-direction: column; /* Align items vertically */
    position: fixed; /* Make the icons fixed to the screen */
    bottom: 30px; /* Adjust the position from the bottom */
    right: 1px; /* Adjust the position from the right */
    z-index: 99; /* Ensure it is above other elements */
}

/* General button styling */
.cw-chat-form .btn, .cw-chat-form1 button {
    border-radius: 5px; /* Rounded corners */
    padding: 10px 15px; /* Padding */
    font-size: 14px; /* Font size */
    cursor: pointer; /* Pointer cursor on hover */
    border: none; /* Remove default border */
    color: #fff; /* Text color */
}

/* WhatsApp button styling */
#cw-chat-wa-send {
    background-color: #25D366; /* WhatsApp green */
    border: 1px solid #1EBEA5; /* Border color */
}

#cw-chat-wa-send:hover {
    background-color: #1EBEA5; /* Darker green on hover */
}

/* Telegram button styling */
#cw-chat-tg-send {
    background-color: #0088cc; /* Telegram blue */
    border: 1px solid #007ab8; /* Border color */
}

#cw-chat-tg-send:hover {
    background-color: #007ab8; /* Darker blue on hover */
}

.cw-chat-intro {
    font-weight: bold; /* Bold intro text */
    margin-bottom: 10px; /* Space below intro text */
}

textarea {
    width: 100%; /* Full width text area */
    border-radius: 5px; /* Rounded corners */
    border: 1px solid #ddd; /* Light border */
    padding: 10px; /* Padding inside text area */
}


@keyframes pulseBorder {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% { 
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Close button styling */
.cw-chat-close {
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
    color: #fff;
}

#cw-chat-wa-send {
    background-color: #25D366; /* WhatsApp green */
    border: 1px solid #FFF; /* Border color */
    border-radius: 20px;
    float: right; /* Align the button to the right */
    margin-top: 10px; /* Add some space above the button */
    padding: 5px 10px; /* Button padding */
    cursor: pointer; /* Pointer cursor on hover */
    color: #fff; /* Text color */
    border-radius: 5px; /* Rounded corners */
}

.cw-chat-form::after {
    content: "";
    display: table;
    clear: both;
}
