#info26-chat-window {
    position: relative !important;
    width: 100% !important;
    max-width: 400px !important;
    height: 450px !important;
    background: #fff !important;
    border: 1px solid #ddd !important;
    border-radius: 10px !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
    display: flex;
    flex-direction: column;
    overflow: hidden !important;
    margin: 20px 0 !important;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
    clear: both;
}

.info26-chat-header {
    background: #007cba;
    color: #fff;
    padding: 15px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#info26-chat-clear {
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

#info26-chat-clear:hover {
    color: #ffdcdc;
}

#info26-chat-messages {
    flex-grow: 1;
    padding: 15px;
    overflow-y: auto;
    background: #f9f9f9;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.info26-msg {
    max-width: 80%;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.4;
    word-wrap: break-word;
}

.info26-msg a {
    color: #007cba;
    text-decoration: underline;
    word-break: break-all;
}

.info26-msg-user {
    background: #e1f5fe;
    align-self: flex-end;
    border-bottom-right-radius: 2px;
}

.info26-msg-ai {
    background: #fff;
    border: 1px solid #eee;
    align-self: flex-start;
    border-bottom-left-radius: 2px;
}

.info26-msg-error {
    background: #ffebee;
    color: #c62828;
    align-self: center;
    font-size: 12px;
}

.info26-chat-input-area {
    display: flex;
    padding: 10px;
    background: #fff;
    border-top: 1px solid #eee;
}

#info26-chat-input {
    flex-grow: 1;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 8px 15px;
    outline: none;
    font-size: 14px;
}

#info26-chat-send {
    background: #007cba;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    margin-left: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

#info26-chat-email-prompt {
    padding: 20px;
    background: #fff;
    border-top: 1px solid #eee;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info26-prompt-text {
    font-size: 14px;
    margin-bottom: 15px;
    color: #333;
}

#info26-email-input {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.info26-prompt-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.info26-btn-primary {
    background: #007cba;
    color: #fff;
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
}

.info26-btn-secondary {
    background: #eee;
    color: #333;
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
}