/* FLOATING AVATAR */

#mira-launcher{

    position:fixed !important;

    bottom:25px !important;

    right:25px !important;

    width:120px;

    height:120px;

    z-index:999999999;

    cursor:pointer;

    background:transparent !important;

    overflow:hidden;
}

/* ANIMATION */

#mira-avatar{

    width:100%;

    height:100%;
}

/* CHAT WINDOW */

#chatbot-window{

    position:fixed !important;

    bottom:140px !important;

    right:20px !important;

    width:370px;

    max-width:95%;

    height:550px;

    background:#ffffff;

    border-radius:20px;

    z-index:999999999;

    overflow:hidden;

    display:flex;

    flex-direction:column;

    box-shadow:
    0 10px 45px rgba(0,0,0,0.25);
}

/* HIDDEN */

.hidden{

    display:none !important;
}

/* HEADER */

.chat-header{

    background:#0b57d0;

    color:#fff;

    padding:16px;

    font-size:18px;

    font-weight:600;
}

/* CHAT AREA */

#chat-messages{

    flex:1;

    overflow-y:auto;

    padding:15px;

    background:#f4f7fb;
}

/* MESSAGES */

.message{

    padding:12px 14px;

    border-radius:14px;

    margin-bottom:14px;

    line-height:1.5;

    font-size:14px;

    max-width:85%;
}

/* USER */

.user-message{

    background:#0b57d0;

    color:#fff;

    margin-left:auto;
}

/* BOT */

.bot-message{

    background:#e7edf7;

    color:#222;
}

/* INPUT AREA */

.chat-input-wrapper{

    display:flex;

    border-top:1px solid #ddd;

    background:#fff;
}

/* INPUT */

#chat-input{

    flex:1;

    border:none;

    padding:15px;

    font-size:14px;

    outline:none;
}

/* BUTTONS */

#send-btn,
#voice-btn{

    border:none;

    background:#0b57d0;

    color:#fff;

    padding:0 18px;

    cursor:pointer;

    font-size:15px;
}

/* HEADER ALIGNMENT */

.chat-header{

    display:flex;

    justify-content:space-between;

    align-items:center;
}

/* MUTE BUTTON */

#mute-btn{

    background:transparent;

    border:none;

    color:#fff;

    font-size:20px;

    cursor:pointer;

    margin-left:10px;

    pointer-events:auto !important;

    position:relative;

    z-index:999999999 !important;
}

#mute-btn:hover{

    transform:scale(1.1);
}

/* PREVENT OVERLAY ISSUES */

.chat-header{

    position:relative;

    z-index:999999;
}
