#woo-ai-chat-box.waic-box {
    position: fixed;
    left: 50px;
    bottom: 20px;
    width: 340px;
    z-index: 99999;
    font-family: Arial, sans-serif;
}

.waic-inner {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
    position: relative;
    z-index: 99999;
}

.waic-header {
    background: #0073aa;
    color: #fff;
    padding: 12px 14px;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.waic-messages {
    height: 440px;
    overflow: auto;
    padding: 14px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    background: #fafafa;
    position: relative;
    z-index: 2;
    pointer-events: auto;
}

.waic-row {
    margin-bottom: 10px;
    line-height: 1.5;
    position: relative;
    z-index: 3;
}

.waic-row span,
.waic-row strong {
    position: relative;
    z-index: 3;
}

.waic-chat-link {
    color: #0073aa;
    text-decoration: underline;
    pointer-events: auto;
    position: relative;
    z-index: 999999;
    cursor: pointer;
}

.waic-form {
    display: flex;
    gap: 8px;
    padding: 12px;
    position: relative;
    z-index: 2;
}

.waic-input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
}

.waic-button {
    background: #0073aa;
    color: #fff;
    border: 0;
    padding: 10px 14px;
    border-radius: 8px;
    cursor: pointer;
}