.bot-2-container {
    width: 100%;
    max-width: 300px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    overflow: hidden;
    font-family: Arial, sans-serif;
    border: 1px solid #ddd;
}
.bot-2-header {
    background-color: #2c2f3b;
    color: white;
    padding: 12px;
    font-weight: bold;
    text-align: center;
}
.bot-2-chat {
    background-color: #fff;
    padding: 16px;
    min-height: 100px;
    font-size: 14px;
}
.bot-2-buttons {
    background-color: #fff;
    padding: 0 16px 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.bot-2-buttons button {
    background-color: #f2f2f2;
    border: none;
    border-radius: 16px;
    padding: 6px 12px;
    cursor: pointer;
    font-size: 13px;
}
.bot-2-input-container {
    background-color: #fff;
    display: flex;
    align-items: center;
    border-top: 1px solid #eee;
    padding: 10px 12px;
}
.bot-2-input-container input {
    flex: 1;
    border: none;
    padding: 8px;
    border-radius: 20px;
    background-color: #f6f6f6;
    font-size: 14px;
}
.bot-2-send-button {
    background: none;
    border: none;
    font-size: 20px;
    margin-left: 8px;
    cursor: pointer;
    color: #333;
}
.bot-2-send-button:hover {
    background: none;
}
@media screen and (max-width: 480px) {
    .bot-2-container {
        max-width: 100%;
        font-size: 14px;
    }
}
