
#mibot-bubble {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    padding: 15px;
    border-radius: 50%;
    cursor: pointer;
    color: white;
    font-size: 22px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
#mibot-window {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 320px;
    height: 420px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
}
.hidden { display: none; }

#mibot-messages {
    flex: 1;
    padding: 10px;
    overflow-y: auto;
    font-family: sans-serif;
}

.bot-msg {
    background: #e1ffc7;
    padding: 8px;
    margin: 5px;
    border-radius: 8px;
    max-width: 85%;
}
.user-msg {
    background: #dcf8c6;
    padding: 8px;
    margin: 5px;
    border-radius: 8px;
    margin-left: auto;
    max-width: 85%;
}

.quick button {
    background: #25d366;
    border: none;
    color: white;
    padding: 6px 10px;
    margin: 4px;
    border-radius: 6px;
    cursor: pointer;
}

#mibot-input {
    padding: 10px;
    border-top: 1px solid #ccc;
    display: flex;
}
#mibot-input input {
    flex: 1;
    padding: 7px;
    border-radius: 5px;
    border: 1px solid #ccc;
}
#mibot-input button {
    margin-left: 5px;
    padding: 7px 12px;
    background: #25d366;
    color: white;
    border: none;
    border-radius: 5px;
}
