/* Robot maskotu butonu */
.chatbot-toggle {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background: #612271;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2em;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
    cursor: pointer;
    z-index: 10001;
    transition: background 0.3s, transform 0.2s;
}
.chatbot-toggle:hover {
    background: #43174F;
    transform: scale(1.08);
}

/* Chatbot kutusu sol altta */
#chatbot {
    position: fixed;
    left: 20px;
    right: auto;
    bottom: 90px;
    width: 300px;
    max-height: 500px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
    display: none;
    flex-direction: column;
    overflow: hidden;
    font-family: 'Arial', sans-serif;
    z-index: 9999;
}

/* Chatbot aktifken göster */
#chatbot.active {
    display: flex;
}

#chatbox {
    flex: 1;
    padding: 10px;
    overflow-y: auto;
    font-size: 14px;
}

#chatbox .user {
    text-align: right;
    margin: 5px 0;
    padding: 8px 10px;
    background: #dcf8c6;
    border-radius: 15px 15px 0 15px;
    display: inline-block;
}

#chatbox .bot {
    text-align: left;
    margin: 5px 0;
    padding: 8px 10px;
    background: #f1f0f0;
    border-radius: 15px 15px 15px 0;
    display: inline-block;
}

#user_input {
    border: none;
    padding: 10px;
    width: 100%;
    border-top: 1px solid #ccc;
    outline: none;
    font-size: 14px;
    box-sizing: border-box;
}

#chatbot button {
    background: #007bff;
    color: #fff;
    border: none;
    padding: 10px;
    width: 100%;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s;
}

#chatbot button:hover {
    background: #0056b3;
}
