Spaces:
Running
Running
| body { | |
| font-family: Arial, sans-serif; | |
| background-color: #f0f0f0; | |
| margin: 0; | |
| padding: 200px; | |
| } | |
| .container { | |
| max-width: 600px; | |
| margin: 0 auto; | |
| align-items: center; | |
| background-color: #fff; | |
| padding: 20px; | |
| border-radius: 5px; | |
| box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); | |
| } | |
| .btn { | |
| padding: 10px 200px; | |
| } | |
| h1 { | |
| text-align: center; | |
| color: #333; | |
| } | |
| form { | |
| display: flex; | |
| flex-direction: column; | |
| } | |
| input[type="file"] { | |
| margin-bottom: 10px; | |
| } | |
| button { | |
| padding: 10px 20px; | |
| background-color: #007bff; | |
| color: #fff; | |
| border: none; | |
| cursor: pointer; | |
| } | |
| button:hover { | |
| background-color: #0056b3; | |
| } | |
| .hidden { | |
| display: none; | |
| } | |
| #processingMsg { | |
| text-align: center; | |
| } | |