#aisc-chat{
    position:fixed;
    right: 10px;
    bottom:5%;
    width: 300px;
    height: 430px;
    background:#fff;
    border:1px solid #ddd;
    z-index:999999;
    padding: 10px;
    border-radius: 10px;
}

#aisc-header{
    background:#222;
    color:#fff;
    padding:12px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

#aisc-header h3{
    font-size:18px;
    margin:0;
}

.close-btn{
    cursor:pointer;
    font-size:20px;
    line-height:1;
}

.aisc-header-actions{
    display:flex;
    align-items:center;
    gap:8px;
}
div#aisc-chat-off {
    position: fixed;
    right: 10px;
    bottom: 5%;
    background: #fff;
    border: 1px solid #ddd;
    z-index: 999999;
    padding: 6px;
    border-radius: 10px;
}

#aisc-clear-history{
    border:0;
    background:#444;
    color:#fff;
    padding:6px 10px;
    border-radius:6px;
    cursor:pointer;
    font-size:12px;
}

#aisc-clear-history:hover{
    background:#666;
}

.aisc-hidden{
    display:none;
}

#aisc-messages{
    height:300px;
    overflow:auto;
    padding:10px;
}

.aisc-user{
    text-align:right;
    margin:10px 0;
}

.aisc-bot{
    text-align:left;
    margin:10px 0;
}

#aisc-footer{
    display:flex;
}

#aisc-input{
    flex:1;
    padding:10px;
}

#aisc-send{
    width:80px;
}