#chatbot-toggle {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #6176B6;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 24px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    z-index: 9999;
}

#chatbot-box {
    position: fixed;
    bottom: 100px;
    right: 25px;
    width: 320px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    display: none;
    flex-direction: column;
    z-index: 9999;
}

.chatbot-header {
    background: #6176B6;
    color: #fff;
    padding: 15px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
}

.chatbot-messages {
    padding: 15px;
    height: 260px;
    overflow-y: auto;
    font-size: 14px;
}

.bot-msg {
    background: #f1f3f8;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 10px;
}

.user-msg {
    background: #6176B6;
    color: #fff;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 10px;
    text-align: right;
}

.chatbot-input {
    display: flex;
    border-top: 1px solid #eee;
}

.chatbot-input input {
    flex: 1;
    padding: 10px;
    border: none;
    outline: none;
}

.chatbot-input button {
    background: #E5C338;
    border: none;
    padding: 0 15px;
    cursor: pointer;
}
