diff --git a/dsRag/static/ai.html b/dsRag/static/ai.html index 9a3e58a7..1bdf7990 100644 --- a/dsRag/static/ai.html +++ b/dsRag/static/ai.html @@ -16,6 +16,7 @@ .container { background: white; padding: 30px; + margin-right: 20px; border-radius: 8px; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); } @@ -33,7 +34,7 @@ min-height: 300px; max-height: 400px; min-width: 600px; /* Added to ensure sufficient width */ - width: 100%; /* Ensure it takes full available width */ + width: calc(100% - 20px); /* Ensure it takes full available width minus margin */ overflow-y: auto; background-color: #f8f9fa; font-family: 'Courier New', monospace; @@ -43,6 +44,7 @@ word-wrap: break-word; overflow-wrap: break-word; margin-bottom: 20px; + margin-right: 20px; } .input-area { @@ -138,7 +140,7 @@