#oc-chat-widget {
    position: fixed; bottom: 20px; right: 20px; width: 320px;
    background: #fff; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    display: none; flex-direction: column; z-index: 9999;
}
#oc-chat-header {
    background: #007cba; color: #fff; padding: 15px; border-radius: 10px 10px 0 0;
    font-weight: bold; cursor: pointer; display: flex; justify-content: space-between;
}
#oc-chat-body {
    height: 300px; padding: 15px; overflow-y: auto; background: #f9f9f9;
}
.oc-message {
    margin-bottom: 10px; padding: 10px; border-radius: 8px; max-width: 80%;
}
.oc-ai { background: #e1f5fe; align-self: flex-start; color: #000; }
.oc-user { background: #007cba; color: #fff; align-self: flex-end; margin-left: auto; }
#oc-chat-input {
    display: flex; padding: 10px; border-top: 1px solid #ddd;
}
#oc-chat-input input {
    flex: 1; padding: 8px; border: 1px solid #ccc; border-radius: 4px; outline: none;
}
#oc-chat-input button {
    margin-left: 8px; padding: 8px 12px; background: #007cba; color: #fff; border: none; border-radius: 4px; cursor: pointer;
}
#oc-chat-toggle {
    position: fixed; bottom: 20px; right: 20px; background: #007cba; color: #fff;
    padding: 15px 20px; border-radius: 30px; cursor: pointer; z-index: 9998; box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* FAQ and Reset Buttons */
.oc-faq-container {
    padding: 5px 15px 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.oc-faq-chip {
    background: #eaeaea;
    color: #111;
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #ddd;
}
.oc-faq-chip:hover {
    background: #111;
    color: #fff;
    border-color: #111;
}
#oc-chat-reset {
    font-size: 14px;
    opacity: 0.8;
    transition: transform 0.3s;
    display: inline-block;
}
#oc-chat-reset:hover {
    opacity: 1;
    transform: rotate(180deg);
}

/* Additional override for chat header specifically */
#oc-chat-header {
    background-color: #ffffff !important;
    color: #e53935 !important;
    border-bottom: 1px solid #eaeaea !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
/* Ensure the close and reset icons look good on white bg */
#oc-chat-header span {
    color: #e53935 !important;
}
