#ssai-chat-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    background: #111;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    cursor: pointer;
    z-index: 999999;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

#ssai-chat-container {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 340px;
    height: 460px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #ddd;
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 999999;
    font-family: Arial, sans-serif;
}

.ssai-header {
    background: #111;
    color: #fff;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ssai-title {
    font-size: 14px;
    font-weight: bold;
}

#ssai-close-chat {
    cursor: pointer;
}

#ssai-chat-messages {
    flex: 1;
    padding: 10px;
    overflow-y: auto;
    font-size: 14px;
}

.ssai-message {
    margin-bottom: 10px;
    padding: 8px;
    border-radius: 8px;
}

.ssai-message.bot {
    background: #f1f1f1;
    color: #000;
    text-align: left;
}

.ssai-message.user {
    background: #0073aa;
    color: #fff;
    text-align: right;
}

.ssai-input-area {
    display: flex;
    border-top: 1px solid #ddd;
}

#ssai-user-input {
    flex: 1;
    padding: 10px;
    border: none;
    outline: none;
}

#ssai-send-btn {
    background: #111;
    color: #fff;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
}

#ssai-chat-container{
    display:none;
    flex-direction:column;
    width:340px;
    height:460px;
    background:#fff;
    position:fixed;
    bottom:90px;
    right:20px;
    z-index:99999999;
}