.chatbot-container {
    width: 100%;
    max-width: 360px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #ffffff;
    border: 2px solid #0b5ed7;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0,0,0,0.15);
    font-family: 'Arial', sans-serif;
    z-index: 9999;
    overflow: hidden;
}

.chatbot-header {
    background: #0b5ed7;
    color: #fff;
    padding: 10px;
    font-weight: bold;
    text-align: center;
    font-size: 16px;
}

.chatbot-messages {
    height: 300px;
    padding: 10px;
    overflow-y: auto;
    font-size: 14px;
    line-height: 1.4;
}

.chatbot-messages div {
    margin-bottom: 10px;
}

.chatbot-messages .user {
    text-align: right;
    color: #000;
    font-weight: bold;
}

.chatbot-messages .bot {
    text-align: left;
    color: #0b5ed7;
}

.chatbot-input-container {
    display: flex;
    border-top: 1px solid #ddd;
}

.chatbot-input-container input {
    flex: 1;
    border: none;
    padding: 10px;
    font-size: 14px;
    outline: none;
}

.chatbot-input-container button {
    background: #0b5ed7;
    color: #fff;
    border: none;
    padding: 10px 14px;
    cursor: pointer;
    font-size: 16px;
}
