.aibot-header {
    background-color: #1d0d44;
    color: white;
    padding: 12px 16px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
	border-radius: 5px;
}


/* Chat Body */
.aibot-body {
    max-height: 70vh;
    overflow-y: auto;
    padding: 10px;
}

.aibot-message {
    margin-bottom: 12px;
    padding: 10px 14px;
    border-radius: 18px;
    max-width: 80%;
    clear: both;
    line-height: 1.4;
}

.aibot-message.user {
    background-color: #1d0d441a;
    margin-left: auto;
    text-align: right;
    width: fit-content; 
}

.aibot-message.bot {
    background-color: #eeeeee;
    margin-right: auto;
    text-align: left;
    width: fit-content;
}

/* Input */
.aibot-input {
    display: flex;
    border: 1px solid #222;
	border-radius: 5px;
	align-items: center;
}

#aibot-user-message {
    flex: 1;
    border: none;
    padding: 12px;
    font-size: 14px;
}

#aibot-user-message:focus {
    outline: none;
}

#aibot-send-message {
    background-color: #1d0d44;
    color: white;
    border: none;
    padding: 12px 16px;
    cursor: pointer;
    font-size: 16px;
}

#aibot-send-message:hover {
    background-color: #1d0d44b3;
}

/* Order List */
.aibot-order-list {
    padding: 5px 0;
}

.aibot-order-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

.aibot-order-img img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #eee;
}

.aibot-order-details {
    flex-grow: 1;
    font-size: 14px;
    color: #333;
    line-height: 1.4;
}

.aibot-order-details .status {
    color: #27ae60;
    font-weight: bold;
}

.aibot-order-details .meta {
    font-size: 12px;
    color: #888;
}

/* Order Block */
.aibot-order-block {
    background: #fdfdfd;
    border-left: 4px solid #1d0d44;
    padding: 12px;
    margin-bottom: 14px;
    border-radius: 8px;
    box-shadow: 0 1px 5px rgba(0,0,0,0.05);
}

/* Cancel Button */
.aibot-order-action {
    margin-top: 10px;
    text-align: right;
}

.aibot-cancel-btn {
    background-color: #1d0d44;
    color: #fff;
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.aibot-cancel-btn:hover {
    background-color: #c0392b;
}

.aibot-cancel-btn.disabled {
    background-color: #ccc;
    color: #1d0d44;
    cursor: not-allowed;
    border: 1px solid #1d0d44;
}

.aibot-btn {
    background-color: #e0e0e0;
    border: none;
    padding: 6px 12px;
    margin: 4px 4px 0 0;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    display: inline-block;
}
.aibot-btn:hover {
    background-color: #d4d4d4;
}

img.aibot-support-logo {
    width: 40px;
    height: 40px !important;
    object-fit: cover;
    border-radius: 100px !important;
}

