/* Chatbot Widget Styles */
#opsminer-chatbot {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

#chatbot-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #1bb1dc;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s;
}

#chatbot-button:hover {
    transform: scale(1.1);
}

#chatbot-button i {
    color: #fff;
    font-size: 28px;
}

#chatbot-window {
    width: 350px;
    height: 500px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
    position: absolute;
    bottom: 80px;
    right: 0;
    display: none;
    flex-direction: column;
    overflow: hidden;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.chatbot-header {
    background: #1bb1dc;
    padding: 15px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-header h5 {
    margin: 0;
    font-weight: 600;
}

.chatbot-header #close-chatbot {
    cursor: pointer;
}

.chatbot-messages {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    background: #f9f9f9;
}

.chat-bubble {
    padding: 10px 15px;
    border-radius: 15px;
    margin-bottom: 10px;
    max-width: 80%;
    font-size: 14px;
    line-height: 1.4;
}

.chat-bubble.bot {
    background: #eee;
    color: #333;
    align-self: flex-start;
}

.chat-bubble.user {
    background: #1bb1dc;
    color: #fff;
    align-self: flex-end;
    margin-left: auto;
}

.chatbot-input {
    padding: 15px;
    border-top: 1px solid #eee;
    display: flex;
    gap: 10px;
}

.chatbot-input input {
    flex: 1;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 8px 15px;
    font-size: 14px;
    outline: none;
}

.chatbot-input input:focus {
    border-color: #1bb1dc;
}

.chatbot-input button {
    background: #1bb1dc;
    border: none;
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot-input button:disabled {
    background: #ccc;
}

/* Steps Indicator */
.chat-steps {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 10px;
}

.step-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
}

.step-dot.active {
    background: #1bb1dc;
}