#gemini-chat-wrapper {
    max-width: 400px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
}

#gemini-lead-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#gemini-lead-form input,
#gemini-lead-form button {
    padding: 10px;
    font-size: 14px;
}

#gemini-lead-form button {
    background: #2d6cdf;
    color: #fff;
    border: none;
    cursor: pointer;
}

#gemini-lead-form button:hover {
    background: #1f4da0;
}

/* Chat Area */
#gemini-chat-area {
    display: flex;
    flex-direction: column;
    border: 1px solid #ddd;
    height: 400px;
}

#gemini-chat-messages {
    flex: 1;
    padding: 10px;
    overflow-y: auto;
    background: #fafafa;
}

.gemini-message {
    margin-bottom: 8px;
    padding: 8px;
    border-radius: 5px;
    max-width: 85%;
}

.gemini-user {
    background: #e6f0ff;
    align-self: flex-end;
}

.gemini-bot {
    background: #f1f1f1;
    align-self: flex-start;
}

.typing {
    font-style: italic;
    opacity: 0.8;
}

.typing .dots {
    display: inline-block;
    width: 20px;
}

.gemini-chat-input-area {
    display: flex;
    border-top: 1px solid #ddd;
}

#gemini-chat-input {
    flex: 1;
    padding: 8px;
    border: none;
}

#gemini-chat-send {
    background: #2d6cdf;
    color: white;
    border: none;
    width: 60px;
    cursor: pointer;
}

/* Mobile */
@media screen and (max-width: 600px) {
    #gemini-chat-wrapper {
        width: 100%;
        padding: 0 10px;
    }
}

