#la-chat-widget { font-family: inherit; }
.la-chat-toggle {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 99999;
    background: #2e7d32;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 12px 24px;
    font-size: 15px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,.2);
}
.la-chat-panel {
    position: fixed;
    bottom: 80px;
    right: 24px;
    width: 340px;
    max-height: 520px;
    z-index: 99998;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,.15);
    display: flex;
    flex-direction: column;
}
.la-chat-header {
    padding: 12px 16px;
    background: #2e7d32;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 8px 8px 0 0;
}
.la-chat-header button { background: none; border: none; color: #fff; font-size: 22px; cursor: pointer; }
.la-chat-guest-form { padding: 10px 12px; border-bottom: 1px solid #eee; display: flex; flex-direction: column; gap: 6px; }
.la-chat-body { flex: 1; overflow-y: auto; padding: 12px; min-height: 220px; max-height: 300px; }
.la-chat-body .msg { margin-bottom: 8px; padding: 8px 10px; border-radius: 6px; font-size: 13px; line-height: 1.4; white-space: pre-wrap; }
.la-chat-body .msg.client, .la-chat-body .msg.guest { background: #e3f2fd; color: #000000; margin-left: 12%; }
.la-chat-body .msg.ai { background: #f1f8e9; margin-right: 8%; color: #000000; }
.la-chat-body .msg.admin { background: #fff3e0; }
.la-chat-footer { padding: 10px; border-top: 1px solid #eee; display: flex; gap: 8px; }
.la-chat-footer input { flex: 1; padding: 8px; border: 1px solid #ccc; border-radius: 4px; }
.la-chat-footer button { padding: 8px 14px; background: #2e7d32; color: #fff; border: none; border-radius: 4px; cursor: pointer; }
