        .block1-body {
            font-family: 'Arial', sans-serif;
            margin: 2em;
            text-align: center;
            font-size: 16px;
        }
        .block1-h4 {
            color: #e1e3e8;
        }
        .block1-input {
            display: inline-block;
            margin: 10px auto;
            margin-left: 5px;
            color: #283040;
        }

        .block1-input[type="file"] {
            color: #e1e3e8;
        }

.block1-button {
    padding: 10px;
    margin: 5px 3px;
    background-color: #5175c3;
    border: 1px solid #6392f8;
    border-radius: 8px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.block1-button:hover {
    opacity: 0.8;
}

.blocks-button {
    display: flex;
    justify-content: center;
    width: 70%;
    padding: 30px;
    margin: 40px auto;
    background-color: #5175c3;
    border: 1px solid #6392f8;
    border-radius: 8px;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.blocks-button:hover {
    opacity: 0.8;
}
#block1-startButton {
    width: 600px;
    max-width: 90%;
}

.blocki-button {
    display: flex;
    justify-content: center;
    margin: 40px auto;
    padding: 10px 20px;
    background-color: #5175c3;
    border: 1px solid #6392f8;
    border-radius: 8px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.blocki-button:hover {
    opacity: 0.8;
}

        .block1-status {
            font-size: 150%;
            text-align: center;
            color: #6392F8;
            font-weight: bold;
        }
        .block1-img {
            display: block;
            margin: 10px auto;
            width: 224px;
            height: 224px;
            object-fit: fill;
        }
        .block1-hidden {
            display: none;
        }
        .block1-presets {
            display: flex;
            align-items: flex-end;
            flex-direction: column;
            width: 350px;
            margin: 20px auto;          
            font-size: 80%;
        }
        #augmentationOptions {
            margin: 20px auto;
            text-align: left;
        }

 
       .block1-training-type {
	    margin: 30px auto;
            width: fit-content;		
        }
       #block1-uploadSection {
            display: flex;
            flex-direction: column;
        }
       .block1-upload-container {
            display: flex;
            margin: 10px auto;
            flex-direction: row;
        }
        .block1-upload-container span {
            font-size: 16px;
            font-weight: bold;
            color: #6392F8;
            display: flex;
            margin-right: 5px;
            align-items: center;
            width: 150px;
            justify-content: flex-end;
        }
        .block1-upload-label {
            display: flex;
            align-items: center;
        }
        .block1-content-container {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }
        .block1-loading-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            font-size: 2em;
            color: white;
        }
        .block1-log-container {
            width: auto;
            display: flex;
            justify-content: center;
            max-width: 800px;
            margin: 0px auto;
        }
        .block1-confusion-matrix-container {
            width: auto;
            display: flex;
            justify-content: center;
            margin-top: 20px;
            max-width: 800px;
            margin: 0px auto;
        }

       #block1-deployModel {
            display: none;
        }

        .block1-log {
            max-width: 60%;
            width: 100%;
	    border-radius: 10px;
	    margin: 5px auto;
        }
        .block1-confusion-matrix {
            max-width: 60%;
            width: 100%;
            border-radius: 10px;
        }

	.block1-metrics-container {
   	   max-width: 400px;
    	   margin: 20px auto;
    	   text-align: center;
    	   width: 98%;
	}

	.block1-metrics-container table {
    	   width: 100%;
    	   border-collapse: collapse;
    	   font-size: 16px;
	}

	.block1-metrics-container th, .block1-metrics-container td {
    	   border: 1px solid #e1e3e8;
    	   padding: 8px;
    	   color: #e1e3e8;
	}

	.block1-metrics-container th {
    	   background-color: #6392F8;
    	   color: #e1e3e8;
	}


        @media (max-width: 600px) {
            .block1-h4 {
                font-size: 1.5em;
            }
            .block1-input {
                display: flex;
                margin: 2px auto;
                text-align: center;
                font-size: 14px;
		margin-left: 5px;
            }
            .block1-button {
                width: 98%;
                padding: 8px;
                margin: 10px auto;
            }
            .block1-presets {
                margin-bottom: 20px;
                align-items: center;
            }

            .block1-content-container {
                max-width: 100%;
            }
            .block1-log-container {
                flex-direction: column;
                width: 100%;
                overflow: auto;
                display: flex;
                justify-content: center;
                margin: 0.5em 0;
                align-items: center;
            }
            .block1-log {
                max-width: 90%;
                width: 100%;
            }
            .block1-confusion-matrix {
                width: 90%;
                max-width: 100%;
            }
	    .block1-metrics-container table {
                font-size: 75%;
            }
	   .block1-metrics-container th, .block1-metrics-container td {
    		padding: 1px;
	   }
        }