#awc-floating-chat {
    position: fixed;
    bottom: 20px;
    left: 50%;
	margin-left:-30px;
    z-index: 10000;
    text-align: center;
}

#awc-chat-button {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #25D366;
    color: #ffffff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s, transform 0.3s;
    cursor: pointer;
    border: none;
    padding: 0;
}

#awc-chat-button:hover {
    background-color: #1da64b;
    transform: scale(1.1);
}

#awc-chat-icon {
    font-size: 24px;
    transition: transform 0.3s ease, color 0.3s ease;
}

#awc-chat-icon.fa-times {
    transform: scale(1.2);
    color: #ffffff;
}

#awc-chat-window {
    display: none;
    position: absolute;
    bottom: 70px;
    left: -200%;
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px 10px 10px;
    width: 300px;
    max-width: 90vw;
    min-width: 250px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#awc-chat-window.awc-visible {
    display: block;
}

#awc-chat-logo {
    max-width: 60px;
    margin: 0 auto 10px;
    display: block;
    opacity: 0.7;
}

#awc-chat-window.awc-pulse {
    animation: pulse 0.4s ease;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0px 4px 12px rgba(0, 255, 0, 0.4);
    }
    100% {
        transform: scale(1);
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    }
}

#awc-chat-message {
    font-size: 14px;
    margin: 0;
    padding: 5px 0;
    text-align: center;
}

#awc-chat-action {
    display: block;
    text-align: center;
    background-color: #25D366;
    color: #ffffff;
    padding: 10px;
    margin-top: 10px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

#awc-chat-action:hover {
    background-color: #1da64b;
}
