/* Chatbot Icon */
.chatbot-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #F29100;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    z-index: 1000;
}

.chatbot-icon i {
    font-size: 24px;
}

.chatbot-container {
    position: fixed;
    bottom: 0;
    right: 20px;
    width: 300px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    background: white;
    border-radius: 10px 10px 0 0;
    display: none;
    z-index: 1000;
}

.chatbot-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-chatbot {
    border: none;
    background: none;
    font-size: 1.5rem;
    line-height: 1;
}
