| | body {
|
| | font-family: Arial, sans-serif;
|
| | background-color: #f9f9f4;
|
| | padding: 20px;
|
| | }
|
| |
|
| | h2 {
|
| | text-align: center;
|
| | font-size: 45px;
|
| | color: #000;
|
| | font-weight: bold;
|
| | margin-bottom: 20px;
|
| | }
|
| |
|
| | .container {
|
| | display: flex;
|
| | align-items: center;
|
| | justify-content: center;
|
| | flex-direction: column;
|
| | }
|
| |
|
| |
|
| | .app-name {
|
| | color: #FF0000;
|
| | font-weight: bold;
|
| | font-size: 40px;
|
| | }
|
| | .app-info p {
|
| | font-weight: bold;
|
| | color: #050505;
|
| | font-size: 35px;
|
| | }
|
| |
|
| | .prediction p {
|
| | font-weight: bold;
|
| | color: #050505;
|
| | font-size: 35px;
|
| | }
|
| |
|
| | .prediction-text {
|
| | color: #008000;
|
| | font-weight: bold;
|
| | font-size: 40px;
|
| | }
|
| |
|
| | .additional-table-container {
|
| | margin: 20px auto;
|
| | border-collapse: collapse;
|
| | width: 90%;
|
| | }
|
| |
|
| | .additional-table-container th,
|
| | .additional-table-container td {
|
| | padding: 10px;
|
| | border: 1px solid #ddd;
|
| | }
|
| |
|
| | .additional-table-container th {
|
| | background-color: #25efa1;
|
| | color: #333;
|
| | }
|
| | .analysis-container h3 {
|
| | font-size: 34px;
|
| | color: #333;
|
| | margin-bottom: 10px;
|
| | font-weight: bold;
|
| | text-align: left;
|
| | }
|
| |
|
| | .visualization {
|
| | margin: 10px;
|
| | display: flex;
|
| | justify-content: center;
|
| | flex-direction: column;
|
| | align-items: center;
|
| | }
|
| |
|
| | .plot-container {
|
| | margin: 10px;
|
| | }
|
| |
|
| | .row {
|
| | display: flex;
|
| | justify-content: center;
|
| | }
|
| | .plots-container h4 {
|
| | font-size: 34px;
|
| | color: #333;
|
| | margin-bottom: 10px;
|
| | font-weight: bold;
|
| | text-align: left;
|
| | }
|
| |
|
| | .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;
|
| | }
|
| |
|
| | * Container styling */
|
| | .container {
|
| | margin-top: 100px;
|
| | text-align: center;
|
| | }
|
| |
|
| | .container h2 {
|
| | margin-bottom: 20px;
|
| | }
|
| |
|
| |
|
| | .app-info {
|
| | margin-bottom: 20px;
|
| | }
|
| |
|
| | .app-info label {
|
| | margin-right: 10px;
|
| | }
|
| |
|
| | .app-info input[type="text"] {
|
| | padding: 8px;
|
| | border-radius: 5px;
|
| | border: 1px solid #ccc;
|
| | }
|
| |
|
| | .app-info button {
|
| | padding: 8px 20px;
|
| | background-color: #001;
|
| | color: white;
|
| | border: none;
|
| | border-radius: 5px;
|
| | cursor: pointer;
|
| | }
|
| |
|
| | .app-info button:hover {
|
| | background-color: #555;
|
| | }
|
| |
|
| |
|