/* 1. chat-base.css - Shared/Global Styles */

.chat-root {
    position: relative;
    z-index: 5000;
}

.chat-clear {
    background: transparent;
    border: none;
    font-size: 18px;
    cursor: pointer;
    margin-right: 10px;
}

.chat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px;
    border-bottom: 1px solid rgba(0,0,0,.06);
    background: linear-gradient(135deg, #fff7fb, #ffffff);
}

.chat-header-info {
    display: flex;
    gap: 12px;
    align-items: center;
}

.chat-header-name {
    font-size: 15px;
    font-weight: 700;
}

.chat-header-status {
    font-size: 12px;
    color: #10b981;
}

.chat-close {
    background: transparent;
    border: none;
    font-size: 22px;
    cursor: pointer;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: linear-gradient(to bottom, #ffffff, #fff8fb);
    scroll-behavior: smooth;
}

.chat-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 16px;
    background: white;
    border-top: 1px solid rgba(0,0,0,.06);
}