    #content {
        width: 100%;
        height: auto;
    }

#instructions {
    display: flex;
    justify-content: center; 
    margin-left: 55px; 
    margin-bottom: 20px;
    color: #b7bcc6;
}

.block2-loading-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    color: white; 
    font-size: 30px;
    text-align: center;
    line-height: 100vh;
    z-index: 1000;
}

    #downloadModel {
      display: flex;
      justify-content: center;
      margin: 10px auto;    
    }

    #uploadModel {
      display: flex;
      justify-content: center;
      margin: 10px auto;    
    }

    #trainingMode {
      display: flex;
      flex-direction: column;  
      font-size: 90%; 
    }

    #RadiotrainingMode {
      display: flex;
      flex-direction: row;  
      width: 250px;
      gap: 10px;   
    }

    #missingValueHandlingBlock {
      display: flex;
      flex-direction: column;  
      align-items: center; 
      margin: 20px auto;
      justify-content: center; 
      font-size: 90%;
    }

    #missingValue {
      display: flex;
      flex-direction: row;  
      align-items: center; 
      justify-content: center;
      gap: 10px;
    }

    #columnNames {
      margin: 5px auto;
      max-width: 300px;
      width: 94%; 
    }

    #classCountsText {
      margin: 5px auto;
      max-width: 300px;
      width: 94%; 
    }

    #mlRegressionSummary, #regressionSummary, #predictorsStatsDisplay {
      margin: 5px auto;
      max-width: 400px;
      width: 98%; 
    }

    #mlRegressionSummary table, #regressionSummary table, #predictorsStatsDisplay table {
      color: #e1e3e8;
    }

    #RegressionSummary th, #RegressionSummary td, #mlRegressionSummary th, #regressionSummary td, #predictorsStatsDisplay th, #predictorsStatsDisplay td {
      padding: 5px;
    }

    table {
      width: 100%;
      max-width: 400px;
      border-collapse: collapse;
      font-size: 90%;     
    }
    table, th, td {
      border: 1px solid #e1e3e8;
      padding: 10px;
      text-align: left;
      font-size: 90%;
    }

    .status {
      font-size: 120%;
      text-align: center;
      font-weight: bold;
      color: #e1e3e8;
      margin: 20px auto;
    }
    .error {
      font-size: 120%;
      text-align: center;
      font-weight: bold;
      color: red;
      margin: 10px auto;
    }

    #trainingParams {
      display: flex;
      flex-direction: column;
      gap: 2px;
      margin: 10px auto;
      width: 165px;
      align-items: center;
      justify-content: center;	
    }

    #learning {
      display: flex;
      margin-top: 10px;
      margin-bottom: 30px;
      flex-direction: column;
      width: auto;
    }

    #learning input {
      color: #283040;
    }

    #learningMode {
      display: flex;
      margin-top: 10px;
      margin-bottom: 30px;
      flex-direction: row;
      align-items: center;
      width: auto;
      font-size: 85%;
    }


    .button-container {
      display: flex;
      align-items: center
    }
  
    #predictionInput {
      display: flex;
      flex-direction: column;
      gap: 2px;
      margin: 30px auto;
      width: 165px;
      justify-content: center;
      align-items: center;
    }

    #predictionInput input {
      color: #283040;
    }

    #inputFields {
      display: flex;
      flex-direction: column;
      gap: 2px;
      margin: 20px auto;

    }

    .radio-label {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
    }

    .radio-label input {
        order: -1;
	margin-right: 8px;
    }

    .checkbox-label {
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

    .checkbox-label input {
        order: -1;
        margin-right: 8px;
    }

    #outcomeForm {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

     .css-1dwmjn.css-q2ki5z.visor {
        width: 25%;
     }


    h4 {
      text-align: center;
      color: #e1e3e8;
      line-height: 150%;
    }

    h5 {
      text-align: center;
      line-height: 130%;

    }

    #newPredictorInputs {
      display: flex;
      flex-direction: column;
      width: 94%;
      max-width: 300px; 
    }

    #newDataInput {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    #newDataInput table {
      width: 94%;
      max-width: 600px;
      border-collapse: collapse;
      margin: 20px auto;
      color: #e1e3e8;
    }

    #newDataInput th, #newDataInput td {
      border: 1px solid #e1e3e8;
      padding: 10px;
      text-align: left;
    }


    #newDataInput input[type="number"] {
      width: 100%;
      box-sizing: border-box;
      padding: 5px;
      color: #283040;
    }

    #newDataForm {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin: 1px auto;
      align-items: center;
    }

    #newDataForm label {
      font-size: 16px;
      color: #e1e3e8;
    }

    #newDataForm input, #newDataForm select {
      color: #283040;
      padding: 5px;
    }


    #newOutcomeInput {
      width: 94%;
    }

/* BUTTONS BUTTONS BUTTONS BUTTONS BUTTONS BUTTONS */
#startButton {
    display:flex;
    justify-content: center;
    width: 600px;
    max-width: 90%;
    padding: 30px;
    margin: 40px auto;
    background-color: #606f90;
    border: 1px solid #6392f8;
    border-radius: 8px;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
#startButton:hover {
    opacity: 0.8;
}

#restartButton {
    display: none;
    justify-content: center;
    margin: 40px auto; 
    padding: 10px 20px;
    background-color: #606f90;
    border: 1px solid #6392f8;
    border-radius: 4px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
#restartButton:hover {
    opacity: 0.8;
}

#uploadModel button {
    padding: 10px;
    margin: 5px 3px;
    background-color: #606f90;
    border: 1px solid #6392f8;
    border-radius: 4px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
#uploadModel button:hover {
    opacity: 0.8;
}

#trainButton {
    display: flex;
    margin: 20px auto;
    align-items: center;
    margin: 5px 5px;
    background-color: #606f90;
    border: 1px solid #6392f8;
    border-radius: 4px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    height: 120px;
    padding: 8px;
}

#trainButton:hover {
    opacity: 0.8;
}

#makePredictionButton {
    display: flex;
    align-items: center;
    margin: 5px 3px;
    background-color: #606f90;
    border: 1px solid #6392f8;
    border-radius: 4px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    height: 120px;
    padding: 2px;
}

#makePredictionButton:hover {
    opacity: 0.8;
}

#addNewDataButton {
    margin: 5px 3px;
    background-color: #606f90;
    border: 1px solid #6392f8;
    border-radius: 4px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    padding: 10px;
}

#addNewDataButton:hover {
    opacity: 0.8;
}

#retrainWithNewDataButton {
    margin: 5px 3px;
    background-color: #606f90;
    border: 1px solid #6392f8;
    border-radius: 4px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    padding: 10px;
}

#retrainWithNewDataButton:hover {
    opacity: 0.8;
}

#outcomeForm button {
    margin: 5px 3px;
    background-color: #606f90;
    border: 1px solid #6392f8;
    border-radius: 4px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    padding: 10px;
}

#outcomeForm button:hover {
    opacity: 0.8;
}

#predictorForm button {
    margin: 5px 3px;
    background-color: #606f90;
    border: 1px solid #6392f8;
    border-radius: 4px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    padding: 10px;
}

#predictorForm button:hover {
    opacity: 0.8;
}

#saveModelButton {
    margin: 5px 3px;
    background-color: #606f90;
    border: 1px solid #6392f8;
    border-radius: 4px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    padding: 10px;
}

#saveModelButton:hover {
    opacity: 0.8;
}

#deployButton {
    display: none;
    justify-content: center;
    margin: 10px auto;
    padding: 10px;
    background-color: #606f90;
    border: 1px solid #6392f8;
    border-radius: 4px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
#deployButton:hover {
    opacity: 0.8;
}

/* BUTTONS BUTTONS BUTTONS BUTTONS BUTTONS BUTTONS */

.css-1dwmjn.css-q2ki5z.visor {
    color: black;
}
.css-z4oixg, [data-css-z4oixg] {
    font-size: 18px;
}

@media screen and (max-width: 600px) {
    #RegressionSummary th, #RegressionSummary td, #mlRegressionSummary th, #regressionSummary td {
            padding: 1px;
    }

    .css-1dwmjn.css-q2ki5z.visor {
        width: 20%;
    }

    table, th, td {
        font-size: 75%;
    }

}