#fc-chatbot {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 300px;
    max-height: 400px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 9999;
}

#fc-chatbot-header {
    background: #0073aa;
    color: #fff;
    padding: 10px;
    text-align: center;
    cursor: pointer;
}

#fc-chatbot-messages {
    flex: 1;
    padding: 10px;
    overflow-y: auto;
    background-color: #f9f9f9;
}

.fc-message {
    margin-bottom: 10px;
}

.fc-user-message {
    text-align: right;
    color: #333;
}

.fc-bot-message {
    text-align: left;
    color: #0073aa;
}

#fc-chatbot-input {
    display: flex;
    border-top: 1px solid #ccc;
}

#fc-chatbot-input input {
    flex: 1;
    border: none;
    padding: 10px;
    font-size: 14px;
}

#fc-chatbot-input button {
    background: #0073aa;
    color: #fff;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
}
