/* Floating Chat Button */
#mmms-chatbot-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #00d4ff, #7c3aed);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    cursor: pointer;
    font-size: 30px;
    z-index: 9999;
    box-shadow: 0 0 20px rgba(0,212,255,0.4);
    transition: .3s;
}
#mmms-chatbot-btn:hover {
    transform: scale(1.1);
}

/* Chat Window */
#mmms-chatbot-window {
    width: 350px;
    height: 500px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.2);
    position: fixed;
    bottom: 100px;
    right: 25px;
    z-index: 99999;
    display: none;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0,212,255,0.5);
}

/* Header */
.chat-header {
    background: linear-gradient(135deg, #00d4ff, #7c3aed);
    padding: 15px;
    color: white;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Chat Area */
#mmms-chat-area {
    height: 370px;
    padding: 15px;
    overflow-y: auto;
    color: white;
}

/* Input box */
.chat-input-box {
    display: flex;
    padding: 10px;
    background: rgba(255,255,255,0.05);
}

.chat-input-box input {
    flex: 1;
    padding: 8px 12px;
    border-radius: 10px;
    border: none;
    background: rgba(255,255,255,0.1);
    color: white;
}

.chat-input-box button {
    width: 45px;
    margin-left: 8px;
    border-radius: 10px;
    border: none;
    background: linear-gradient(135deg, #00d4ff, #7c3aed);
    color: white;
}

/* Message Styles */
.msg-user, .msg-bot {
    padding: 10px 12px;
    border-radius: 12px;
    margin-bottom: 10px;
    max-width: 85%;
}

.msg-user {
    background: #00d4ff;
    margin-left: auto;
    color: #000;
}

.msg-bot {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.2);
}
/* Close Button */
#closeChat {
    cursor: pointer;
    font-size: 22px;
    font-weight: bold;
    background: rgba(255,255,255,0.2);
    padding: 5px 12px;
    border-radius: 10px;
    transition: .3s;
}

#closeChat:hover {
    background: rgba(255,255,255,0.35);
}


