/* Chatbot Bubble Styles */
.chatbot-bubble {
    position: fixed;
    bottom: 155px;
    right: 20px;
    background-color: rgba(255, 94, 20, 0.7);
    border-radius: 10px;
    padding: 5px 10px;
    padding-right: 10px;
    box-shadow: 0 4px 20px rgba(255, 94, 20, 0.3);
    min-width: 160px;
    z-index: 9999;
    animation: slideIn 0.3s ease;

}

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

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

.chatbot-close {
    position: absolute;
    top: 6px;
    right: 8px;
    background: transparent;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
    opacity: 0.8;
}

.chatbot-close:hover {
    transform: rotate(90deg);
    opacity: 1;
}

.chatbot-text {
    color: white;
}

.chatbot-title {
    font-size: 14px;
    font-weight: 600;
    color: white;
}

.chatbot-subtitle {
    font-size: 12px;
    font-weight: 400;
    color: white;
}

@media (max-width: 768px) {
    .chatbot-bubble {
        bottom: 145px;
        padding: 8px 12px;
        padding-right: 26px;
        min-width: 150px;
    }

    .chatbot-title {
        font-size: 13px;
    }

    .chatbot-subtitle {
        font-size: 11px;
    }
}
