#ces-chat-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #0073aa;
    color: #fff;
    border: none;
    font-size: 16px;
    cursor: pointer;
    z-index: 9999;
}

#ces-chat-widget {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 320px;
    height: 420px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 9999;
}

#ces-chat-header {
    background: #0073aa;
    color: #fff;
    padding: 12px;
    font-weight: bold;
}

#ces-chat-body {
    flex: 1;
    padding: 10px;
    overflow-y: auto;
    font-size: 14px;
}

.ces-msg {
    margin: 8px 0;
    display: flex;
}

.ces-msg.bot {
    justify-content: flex-start;
}

.ces-msg.user {
    justify-content: flex-end;
}

.ces-bubble {
    max-width: 75%;
    padding: 10px;
    border-radius: 10px;
}

.bot .ces-bubble {
    background: #f1f1f1;
}

.user .ces-bubble {
    background: #0073aa;
    color: #fff;
}

#ces-chat-input {
    border: none;
    border-top: 1px solid #ddd;
    padding: 10px;
    width: 100%;
    outline: none;
}
#ces-chat-header {
    background: #0073aa;
    color: #fff;
    padding: 12px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#ces-chat-close {
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
}
.ces-header-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ces-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.ces-title {
    font-weight: bold;
    font-size: 14px;
}

.ces-status {
    font-size: 12px;
    color: #c8f7c5;
}

.ces-quick-actions {
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ces-quick-btn {
    padding: 10px;
    border: none;
    border-radius: 8px;
    background: #f1f1f1;
    cursor: pointer;
    text-align: left;
    font-size: 14px;
    color:#fff;
}

.ces-quick-btn:hover {
    background: #e0e0e0;
}
.ces-dropdown {
    width: 100%;
    padding: 8px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 14px;
    margin-bottom: 8px;
}

.ces-confirm-btn {
    padding: 8px 10px;
    border: none;
    background: #0073aa;
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
}

.ces-confirm-btn:hover {
    background: #005f8d;
}