#chatbot-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
}

#chatbot-btn {
    background-color: #232324;
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 20px;
    cursor: pointer;
}

#chat-window {
    display: none;
    width: 300px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    position: absolute;
    bottom: 60px;
    right: 0;
}

#chat-header {
    background: #232324;
    color: white;
    padding: 10px;
    text-align: center;
    border-radius: 10px 10px 0 0;
}

#chat-body {
    height: 300px;
    overflow-y: auto;
    padding: 10px;
}

#chat-footer {
    display: flex;
    padding: 10px;
}

#user-input {
    flex: 1;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#send-btn {
    background: white;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    margin-left: 5px;
}
