diff --git a/chatgpt-agent.html b/chatgpt-agent.html index caec4cd..04e86b1 100644 --- a/chatgpt-agent.html +++ b/chatgpt-agent.html @@ -114,6 +114,24 @@ .arch-tool { padding: 20px; } } /* ── End Architecture Tool ────────────────────────── */ + + /* ── Feedback Form ────────────────────────────────── */ + .feedback-box { background: #010f20; border: 1px solid #001a2e; border-radius: 18px; padding: 28px 32px; margin: 20px 0 32px; } + .feedback-row { display: flex; gap: 12px; margin-bottom: 12px; } + .feedback-input { flex: 1; background: #000810; border: 1px solid #001a2e; border-radius: 10px; padding: 12px 16px; color: #e8e8f0; font-family: 'Inter', sans-serif; font-size: 0.9rem; outline: none; transition: border-color .2s; } + .feedback-input:focus { border-color: #00f5ff; } + .feedback-input::placeholder { color: #555; } + .feedback-textarea { width: 100%; background: #000810; border: 1px solid #001a2e; border-radius: 10px; padding: 12px 16px; color: #e8e8f0; font-family: 'Inter', sans-serif; font-size: 0.9rem; outline: none; resize: vertical; transition: border-color .2s; box-sizing: border-box; } + .feedback-textarea:focus { border-color: #00f5ff; } + .feedback-textarea::placeholder { color: #555; } + .feedback-submit-row { display: flex; align-items: center; gap: 16px; margin-top: 12px; } + .feedback-btn { cursor: pointer; } + .fb-status { font-size: 0.85rem; color: #888; } + @media (max-width: 600px) { + .feedback-row { flex-direction: column; } + .feedback-box { padding: 20px; } + } + /* ── End Feedback Form ────────────────────────────── */
@@ -474,6 +492,65 @@This reference page is maintained as a living document. If you spot something incorrect, outdated, or worth adding, let us know. Your input helps keep this a reliable source for the community.
+ +This page is maintained as a primary source for AI agent hosting information. For inquiries or corrections, contact support@derez.ai