/* CHAT LAUNCHER BUTTON */
#aiwcpro-launcher{
    position: fixed;
    bottom: 20px;
    right: 20px; /* вляво */
    background: #d37b24;
    color: white;
    font-size: 28px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    z-index: 999999999 !important; /* най-отгоре */
}

/* POPUP WINDOW */
#aiwcpro-popup{
    position: fixed;
    bottom: 110px;
    right: 20px;
    width: 360px;
    height: 520px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 6px 30px rgba(0,0,0,0.35);
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 999999999 !important;
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen,Ubuntu,Cantarell,"Open Sans","Helvetica Neue",sans-serif;
}

/* When opened */
#aiwcpro-popup.open{
    display: flex;
}

/* HEADER */
#aiwcpro-header{
    background: #d37b24;
    color: #ffffff;
    padding: 14px;
    font-size: 18px;
    font-weight: 600;
}

/* MESSAGES AREA */
#aiwcpro-messages{
    flex: 1;
    overflow-y: auto;
    padding: 12px;
    font-size: 15px;
    background: #f5f6fa;
}

/* USER MESSAGE */
#aiwcpro-messages .user{
    background: #fff;
    padding: 10px 12px;
    margin: 6px 0;
    border-radius: 8px;
    align-self: flex-end;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

/* BOT MESSAGE */
#aiwcpro-messages .bot{
    background: #ddebd9;
    padding: 10px 12px;
    margin: 6px 0;
    border-radius: 8px;
    align-self: flex-start;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

/* TEXTAREA */
#aiwcpro-input{
    width: 100%;
    padding: 12px;
    border: none;
    border-top: 1px solid #ddd;
    resize: none;
    min-height: 60px;
    box-sizing: border-box;
    font-size: 14px;
    font-family:"montserrat";
}

/* SEND BUTTON */
#aiwcpro-send{
    width: 100%;
    padding: 12px;
    border: none;
    background: #d37b24;
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
    font-weight: 600;
}

#aiwcpro-send:hover{
    background: #4a3030;
}
