| body { | |
| display: flex; | |
| justify-content: center; | |
| align-items: center; | |
| height: 100vh; | |
| margin: 0; | |
| background-color: #f0f0f0; /* Optional: Change the background color */ | |
| } | |
| .gradio-container { | |
| max-width: 600px; /* Optional: Set a max width for the interface */ | |
| width: 100%; | |
| background: white; /* Optional: Set a background color for the container */ | |
| padding: 20px; /* Optional: Add some padding */ | |
| border-radius: 10px; /* Optional: Add rounded corners */ | |
| box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional: Add a shadow */ | |
| } | |