
#john-ofski-chatbot {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 300px;
    max-height: 500px;
    background-color: #fff;
    border: 2px solid #0073e6;
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
    padding: 15px;
    z-index: 9999;
    font-family: Arial, sans-serif;
}

#john-ofski-chat-header {
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
}

#john-ofski-chat-body {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 10px;
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.user-message, .assistant-message {
    margin: 5px 0;
}

.user-message p {
    background-color: #0073e6;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    max-width: 80%;
    margin-left: auto;
}

.assistant-message p {
    background-color: #f0f0f0;
    color: black;
    padding: 5px 10px;
    border-radius: 5px;
    max-width: 80%;
}

#john-ofski-user-input {
    width: calc(100% - 80px);
    padding: 8px;
    border-radius: 5px;
    border: 1px solid #ddd;
    margin-right: 10px;
}

#john-ofski-send-button {
    width: 60px;
    padding: 8px;
    background-color: #0073e6;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#john-ofski-send-button:hover {
    background-color: #005bb5;
}
