.chatbot-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.chatbot-button {
    width: 60px;
    height: 60px;
    background: #1e88e5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: all 0.3s;
}

.chatbot-button:hover {
    background: #1565c0;
    transform: scale(1.1);
}

.chatbot-button i {
    color: white;
    font-size: 24px;
}

.chatbot-window {
    width: 350px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.2);
    overflow: hidden;
    display: none;
    position: absolute;
    bottom: 70px;
    right: 0;
}

.chatbot-header {
    background: #0d47a1;
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-body {
    padding: 15px;
    height: 200px;
    overflow-y: auto;
}

.chatbot-footer {
    padding: 15px;
    border-top: 1px solid #eee;
}

.chatbot-footer textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    resize: none;
}

.chatbot-footer button {
    background: #1e88e5;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    margin-top: 10px;
    cursor: pointer;
}

@media (max-width: 480px) {
    .chatbot-window {
        width: 280px;
    }
}
