<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Enhanced CSS for Chatbot */

/* Basic chat popup styles */
.chat-popup {
    display: none;
    position: fixed;
    bottom: 0;
    right: 25px;
    border: 3px solid #f1f1f1;
    z-index: 9999; /* Ensure chatbot popup is on top */
    max-width: 350px;
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    transition: max-height 0.3s ease, transform 0.3s ease, bottom 0.3s ease; /* Added bottom transition */
}

.chat-popup.minimized {
    max-height: 50px;
    overflow: hidden;
    bottom: 20px; /* Adjusted to move chatbot to bottom of screen */
    right: 30px; /* Adjusted right position */
    margin-right: 30px; /* Added margin-right for spacing */
    display: none; /* Hide when minimized */
}

/* Container for form elements */
.form-container {
    padding: 15px;
    background-color: #ffffff;
    max-width: 100%;
}

/* Chat header styling */
.chat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    color: #007bff;
    font-size: 24px;
}

/* Header buttons for minimize/maximize/close */
.header-buttons {
    display: flex;
    gap: 10px;
}

.header-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #007bff;
    font-size: 20px;
    transition: color 0.3s ease;
}

.header-btn:hover {
    color: #0056b3;
}

/* Styling for the chat message display area */
.chat-box {
    height: 300px;
    overflow-y: auto;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f9f9f9;
}

/* Input container for message input and send button */
.input-container {
    display: flex;
    margin-top: 10px;
    right: 50px; /* Adjusted right position */
    margin-right: 50px; /* Added margin-right for spacing */
   
}

.input-container input[type=text] {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-right: 10px;
    background: #f1f1f1;
    transition: background-color 0.3s ease;
}

.input-container input[type=text]:focus {
    background-color: #e0e0e0;
    outline: none;
}

.send-btn {
    background-color: #007bff;
    color: white;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.send-btn:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}

/* Styling for the open chat button */
.open-button {
    background-color: #007bff;
    color: white;
    padding: 15px 20px;
    border: none;
    cursor: pointer;
    position: fixed;
    bottom: 30px;
    right: 15px;
    border-radius: 50px;
    box-shadow: 0 0 10px #111212;
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999; /* Ensure chat button is on top */
}

.open-button i {
    font-size: 24px;
}

.open-button:hover {
    background-color: #0056b3;
    transform: scale(1.1);
}

/* Message styling */
.message {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.message.user {
    justify-content: flex-end;
}

.message.bot {
    justify-content: flex-start;
}

.message i {
    margin-right: 10px;
    font-size: 18px;
}

.message .message-content {
    padding: 10px;
    border-radius: 10px;
    max-width: 70%;
    word-wrap: break-word;
}

.message.bot .message-content {
    background-color: #e0e0e0;
    color: #000000;
}

.message.user .message-content {
    background-color: #007bff;
    color: #ffffff;
}

.timestamp {
    font-size: 12px;
    color: #888888;
    margin-top: 5px;
}
</pre></body></html>