#chatgpt-chat-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #005fa3;
    color: white;
    padding: 15px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 9999;
}

#chatgpt-chat-box {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 300px;
    background: white;
    border: 1px solid #ccc;
    padding: 10px;
    z-index: 9999;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

#chatgpt-messages {
    max-height: 200px;
    overflow-y: auto;
    margin-bottom: 10px;
}

.user-msg {
    text-align: right;
    background: #e0f7fa;
    margin: 5px 0;
    padding: 5px;
    border-radius: 5px;
}

.bot-msg {
    text-align: left;
    background: #f1f8e9;
    margin: 5px 0;
    padding: 5px;
    border-radius: 5px;
}

#chatgpt-input {
    width: 100%;
    height: 40px;
}

#chatgpt-send {
    width: 100%;
    background: #005fa3;
    color: white;
    border: none;
    padding: 10px;
    margin-top: 5px;
}
