Spaces:
Runtime error
Runtime error
body { | |
font-family: Arial, sans-serif; | |
background-color: #f0f0f0; | |
padding: 20px; | |
margin: 0; | |
} | |
#chatbot-container, #voice-container { | |
margin-bottom: 20px; | |
} | |
input[type="text"], input[type="file"] { | |
padding: 10px; | |
width: 300px; | |
margin-right: 10px; | |
} | |
button { | |
padding: 10px; | |
background-color: #007bff; | |
color: white; | |
border: none; | |
cursor: pointer; | |
} | |
button:hover { | |
background-color: #0056b3; | |
} | |
#chat-history, #voice-response { | |
background-color: white; | |
padding: 10px; | |
border-radius: 5px; | |
margin-bottom: 10px; | |
} | |