| body {
|
| font-family: Arial, sans-serif;
|
| background-color: #f9f9f4;
|
| padding: 20px;
|
| }
|
|
|
| h1 {
|
| text-align: left;
|
| font-size: 50px;
|
| color: #000;
|
| font-weight: bold;
|
| }
|
|
|
| .container {
|
| display: flex;
|
| align-items: center;
|
| flex-direction: column;
|
| }
|
|
|
| .result-container {
|
| text-align: center;
|
| margin-top: 30px;
|
| }
|
|
|
| .prediction {
|
| font-size: 40px;
|
| font-weight: bold;
|
| color: #008000;
|
| text-align: center;
|
| margin-top: -20px;
|
| }
|
|
|
| .prediction-container {
|
| text-align: center;
|
| }
|
|
|
| .visualization {
|
| margin: 10px;
|
| display: flex;
|
| justify-content: center;
|
| flex-direction: column;
|
| align-items: center;
|
| }
|
|
|
| .plot-container {
|
| margin: 10px;
|
| }
|
|
|
| .row {
|
| display: flex;
|
| justify-content: center;
|
| }
|
|
|
| .buttons {
|
| text-align: center;
|
| margin-top: 10px;
|
| }
|
|
|
| .buttons button {
|
| padding: 15px 30px;
|
| font-size: 18px;
|
| margin: 0 20px;
|
| border: none;
|
| border-radius: 15px;
|
| background-color: rgb(134, 4, 4);
|
| color: white;
|
| cursor: pointer;
|
| transition: background-color 0.3s;
|
| }
|
|
|
| .buttons button:hover {
|
| background-color: #001;
|
| }
|
|
|
|
|