
body {
    font-family: 'Segoe UI', sans-serif;
    background: #fff;
    margin: 0;
    padding: 0;
}
#aw-funnel-container {
    max-width: 400px;
    margin: 80px auto;
    background: #f9f9f9;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    padding: 24px;
    text-align: center;
}
.aw-message {
    font-size: 20px;
    margin-bottom: 20px;
}
.aw-step input,
.aw-step select {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border-radius: 8px;
    border: 1px solid #ccc;
    margin-bottom: 16px;
}
.aw-step button {
    padding: 10px 20px;
    background: #36c25a;
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}
.aw-step button:hover {
    background: #2ca64d;
}
.aw-chat-toggle {
    position: fixed;
    bottom: 16px;
    right: 16px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #36c25a;
    background-image: url('../img/avatar.png');
    background-size: cover;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    cursor: pointer;
    z-index: 9999;
}
.aw-chat-window {
    display: none;
    position: fixed;
    bottom: 90px;
    right: 16px;
    width: 300px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    overflow: hidden;
    z-index: 9999;
}
.aw-chat-window.open {
    display: block;
}
.aw-chat-header {
    background: #36c25a;
    color: white;
    padding: 10px;
    font-weight: bold;
}
.aw-chat-body {
    padding: 12px;
    max-height: 200px;
    overflow-y: auto;
}
.aw-chat-input {
    padding: 8px;
    border-top: 1px solid #ddd;
}
.aw-chat-input input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 6px;
}
.aw-bubble {
    background: #efefef;
    padding: 10px 14px;
    border-radius: 16px;
    margin-bottom: 10px;
    display: inline-block;
}
