.fbot-wrapper {
    position:fixed;
    bottom:20px;
    right:20px;
    z-index:999;
}

/* Buton (baloncuk) */
#fbot-button {
    width:50px;
    height:50px;
    background:#008069;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    box-shadow:0 4px 10px rgba(0,0,0,0.15);
}

#fbot-button i {
    font-size:28px;
}
.fbot-close {cursor:pointer}
#fbot-box {
    width:350px;
    height:420px;
    background:#fff;
    border-radius:10px;
    box-shadow:0 6px 20px rgba(0,0,0,0.15);
    overflow:hidden;
    position:absolute;
    right:0;
    bottom:-450px;              /* kapalı pozisyon */
    transition:.6s;
    display:flex;
    flex-direction:column;
}

/* Açık olduğunda */
#fbot-box.open {
    bottom:60px;
}

.fbot-header {
    background:#008069;
    color:#fff;
    padding:15px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-weight:600;
}

.fbot-body {
    flex:1;
    padding:10px;
    overflow-y:auto;
	background:#fff url('../img/back.png');background-size:100% 100%;
}

.fbot-footer {
    padding:10px;
    background:#fff url('../img/back.png');
    display:flex;
}

#fbot-input {
    flex:1;
    padding:8px 10px;
    border:1px solid #ccc;
    border-radius:5px;
}

#fbot-send {
    background:#008069;
    color:#fff;
    border:none;
    padding:0 12px;
    margin-left:5px;
    border-radius:5px;
    cursor:pointer;
}

.chat-msg {margin:6px 0; padding:8px 12px; border-radius:10px;color: #111;border-bottom: 2px solid #ccc;font-size: 13px;}
.user-msg {background:#d9fdd3;text-align:right;}
.bot-msg  {background:#fff;text-align:left;}
.error    {background:#ffd9d9;}
