GPT Tester
GPT Chat Interface
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #f0f0f0;
}
.chat-container {
width: 80%;
max-width: 600px;
background-color: white;
border: 1px solid #ddd;
border-radius: 5px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
overflow: hidden;
}
.chat-box {
height: 400px;
overflow-y: scroll;
border-bottom: 1px solid #ddd;
padding: 20px;
background-color: #fafafa;
}
#user-input {
width: calc(100% - 90px);
border: none;
padding: 10px;
font-size: 16px;
border-top: 1px solid #ddd;
}
#send-button {
width: 90px;
border: none;
background-color: #007bff;
color: white;
padding: 10px;
font-size: 16px;
cursor: pointer;
border-top: 1px solid #ddd;
}
#send-button:hover {
background-color: #0056b3;
}