﻿/* Button */
.chat-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 50%;
    cursor: pointer !important;
    z-index: 9999;
}
    .chat-btn img{
        width:50px;
    }
    /* Chat Box */
    .chat {
        position: fixed;
        bottom: 80px;
        right: 20px;
        width: 360px;
        height: 520px;
        background: #fff;
        border-radius: 20px;
        display: none;
        flex-direction: column;
        box-shadow: 0 20px 60px rgba(0,0,0,0.25);
        z-index: 9999;
    }

.chat-header {
    background: #604696;
    color: #fff;
    padding: 12px;
    display: flex;
    justify-content: space-between;
}

.cbody {
   /* flex: 1;*/
    overflow-y: auto;
    padding: 15px;
    background: #f6f7fb;
}

/* Messages */
.msg {
    padding: 10px;
    margin: 6px 0;
    border-radius: 12px;
    max-width: 75%;
}

.bot {
    background: #fff;
    border: 1px solid #eee;
}

.chat-user {
    background: #604696;
    color: #fff;
    margin-left: auto;
}

/* Options */
.options {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.option {
    padding: 6px 12px;
    border: 1px solid #604696;
    border-radius: 20px;
    cursor: pointer;
}

    .option:hover {
        background: #604696;
        color: #fff;
    }

/* Form */
.form-box input {
    width: 100%;
    padding: 10px;
    margin: 6px 0;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.form-box button {
    width: 100%;
    padding: 10px;
    background: #604696;
    color: #fff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}
