html { 
	width:100%; 
	height:100%;
	overflow-y:hidden;
	overflow-x:hidden;
	margin:0; 
	padding:0; 
	border:0;
	box-sizing: border-box;
	font-size:15px;
	font-family:"Roboto",sans-serif;
	background-color:#EFEFEF;	
	-webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after {
    box-sizing: inherit;
}
body { 
	margin:0; 
	padding:0; 
	/* Ensure the body inherits the 15px base for 1rem calculations */
    font-size: 1rem; 
    line-height: 1.5;
    color: #424242; /* Standard Material text color */
    -webkit-font-smoothing: antialiased;
}

.loading-panel { display: flex; flex-direction: column; justify-content: center; align-items: center; 
    	margin: 100px auto; padding: 10px 10px 20px 10px; width:250px;  background-color:white; 
    	border: 1px solid #ccc; border-radius:3px;
    	box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16), 0 2px 10px 0 rgba(0,0,0,0.12); }    
.loading-panel label { font-family:'Roboto', sans-serif; font-size:1.2rem; color:#424242; margin-bottom:10px; }

input, textarea, select, button {	
	background-color: transparent;
    border: none;
    border-radius: 2px;
    font-size: 1rem;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
}
/* Remove the browser's default focus ring */
input:focus, textarea:focus, select:focus, button:focus {
    outline: none !important;
}

/* Re-apply a subtle Material-style bottom border or shadow instead */
input[type=text]:focus, 
input[type=password]:focus, 
input[type=number]:focus, 
textarea:focus {
    border: none; /* Your primary blue */
    box-shadow: none;
}
