.wacp-floating-button {
    position: fixed;
    z-index: 9999;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.wacp-floating-button:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.wacp-widget {
    position: fixed;
    z-index: 9998;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    padding: 20px;
    max-width: 300px;
    transition: all 0.3s ease;
}

.wacp-widget-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.wacp-widget-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #25D366;
}

.wacp-widget-title {
    font-weight: bold;
    margin: 0 0 5px 0;
}

.wacp-widget-description {
    font-size: 12px;
    color: #666;
    margin: 0;
}

.wacp-widget-body {
    margin-bottom: 15px;
}

.wacp-widget-response {
    font-size: 12px;
    color: #25D366;
    margin: 0 0 10px 0;
}

.wacp-widget-message {
    width: 100%;
    min-height: 80px;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px;
    font-family: inherit;
    resize: vertical;
    margin-bottom: 10px;
}

.wacp-widget-footer {
    text-align: right;
}

.wacp-chat-button {
    display: inline-block;
    background: #25D366;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
}

.wacp-chat-button:hover {
    background: #128C7E;
    color: white;
}

.wacp-offline-message {
    color: #888;
    font-style: italic;
    margin-bottom: 10px;
}