#agriglance-chat-toggle {

    position: fixed;
    bottom: 100px;
    right: 20px;

    width: 65px;
    height: 65px;

    border-radius: 50%;
    border: none;

    background: #0073aa;
    color: #ffffff;

    cursor: pointer;

    box-shadow: 0 0 15px rgba(0,0,0,0.2);

    z-index: 1000001;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 28px;

    overflow: hidden;

}

#agriglance-chat-toggle span {

    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    font-size: 10px;
    font-weight: bold;

    color: #ffffff;

    background: rgba(0,0,0,0.25);

    padding: 2px 5px;

    border-radius: 8px;

}

#agriglance-ai-chat {

    position: fixed;

    bottom: 170px;
    right: 20px;

    width: 350px;

    background: #ffffff;

    border: 1px solid #ddd;

    border-radius: 12px;

    box-shadow: 0 0 15px rgba(0,0,0,0.15);

    padding: 15px;

    z-index: 1000000;

    display: none;

}

#agriglance-response {

    max-height: 300px;

    overflow-y: auto;

    margin-top: 15px;

}

#agriglance-send-btn {

    cursor: pointer;

    padding: 8px 15px;

}

#agriglance-message {

    width: 100%;

    min-height: 120px;

}

@media (max-width: 768px) {

    #agriglance-ai-chat {

        width: calc(100% - 30px);

        right: 15px;

        bottom: 140px;

    }

    #agriglance-chat-toggle {

        right: 15px;

        bottom: 80px;

    }

}