/* chatbot.css */
#gemini-chatbox {
    display:none;
    max-height:500px;
    border:1px solid #ccc;
    background:#fff;
    z-index:9999;
    box-shadow:0 0 10px rgba(0,0,0,0.2);
    font-family:Arial, sans-serif;
    bottom:20px;
    position:fixed;
}

.gemini-messages {
    height:400px;
    overflow-y:auto;
    padding:10px;
}

.gemini-input {
    display:flex;
    border-top:1px solid #ccc;
}

.gemini-input input {
    flex:1;
    padding:8px;
    border:none;
    border-right:1px solid #ccc;
}

.gemini-input button {
    padding:8px 12px;
    border:none;
    background:#0073aa;
    color:#fff;
    cursor:pointer;
}

.gemini-input button:hover {
    background:#005177;
}
