

* {	
	box-sizing: border-box;
	outline: none;	
	font-family:Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	border:0px;

}


#app-body-app {
	margin: 0px; 
	min-width: 0px;
	top: 0px; 
	left: 0px;
	background-color: #ffffff;
	width: 100%;
	height: 100%;
	overflow-x: auto;
	-ms-overflow-style: none;
	padding: 0px;
}


#app-container-app{
	width: 90%;
	height: 100%;
	padding: 0px;
	margin: 30px 5% 0px 5%;
	background-color: #ffffff;
	display: flex;
	justify-content: flex-start;
	align-content: flex-start;
	align-items: flex-start;
	text-align: center;
	flex-direction: column;
}

#app-container-break{
	width: 100%;
	height: 30px;

}



#app-container-inputs{
	width: 100%;
	height: auto;
	padding: 0px;
	margin: 10px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-content: flex-start;
	align-items: flex-start;
	text-align: left;
	background-color: #f9f9fc;
	border: #f3f3f9 1px solid;
	border-radius: 6px;
	position: relative;
	top:20px;
	margin-top: 0px;
	z-index: 100;
	
	border-bottom: #f3f3f9 10px solid;
	

}



#app-container-results{
	width: 100%;
	height: 100%;
	padding: 0px;
	margin: 10px;
	margin-top: 0px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-content: flex-start;
	align-items: flex-start;
	text-align: left;
	background-color: #f9f9fc;
	border: #f3f3f9 1px solid;
	border-radius: 6px;
	z-index: 0;
}



#inputs-head{
	width: auto;
	font-size: 1.2em;
	line-height: 30px;
	padding: 20px 20px 5px 20px;
}


#inputs-text{
	width: auto;
	font-size: 1.1em;
	line-height: 30px;
	padding: 10px 20px 5px 20px;
	color: #666666;
}


.inputs-row{
	width: 100%;
	height: 100%;
	padding: 0px;
	display: flex;
	justify-content: flex-start;
	align-content: flex-start;
	align-items: center;
	text-align: left;
}


#results-head{
	width: 100%;
	font-size: 1.5em;
	font-weight: bold;
	line-height: 40px;
	padding: 20px;
}




.input-input{
	width: 70%;
	height: 40px;
	background-color: #ffffff;
	border: #ceced3 1px solid;
	border-radius: 6px;
	font-size: 1.3em;
	line-height: 40px;
	margin-left: 20px;
	margin-right: 20px;
	color: #666666;
	padding-left: 5px;
}
.input-input:focus{
	border: #666666 1px solid;
	color: #000000;
}

.results-row{
	width: 100%;
	height: 50px;
	padding: 20px;
	display: flex;
	justify-content: flex-start;
	align-content: flex-start;
	align-items: center;
	text-align: left;
	flex-direction: row;
}



table {
	width: 100%;
	border-collapse: collapse;
	margin: 20px 0;
	border-radius: 6px;
}
th, td {
	padding: 10px;
	text-align: center;
	border: 1px solid black;
	min-width: 60px;
}
th {
	background-color: #004488;
	color: white;
}
tr:nth-child(odd) td {
	background-color: #e6f2ff;
}
tr:nth-child(even) td {
	background-color: #cce0ff;
}

/* First cell (top-left) */
.first-cell {
	background-color: rgba(0,0,0,0) !important;
	border: none;
}

        /* First column (header column) */
        .header-col {
            background-color: #99bbff; /* Denser blue for the first column */
            color: black;
            font-weight: bold;
        }

        /* Header row styling */
        .header-row th {
            background-color: #004488;
            color: white;
        }


@media only screen and (max-width:800px) {
#app-container-app{width: 100%; margin: 0px; max-width: 100%;}
#app-container-inputs{width: 100%; margin:0px; border-radius: 0px;max-width: 100%;}
#app-container-results{margin: 10px 0px 0px 0px; border-radius: 0;border:0px;border-top: #f3f3f9 1px solid;border-bottom: #f3f3f9 1px solid;}
#inputs-head{font-size: 1.1em; padding: 10px;}
.input-input{width: 100px;height: 30px;	font-size: 1.1em;line-height: 30px;}
#results-head{font-size: 1.3em;line-height: 30px;padding: 10px;}
#inputs-text{font-size: 0.9em; line-height: 20px; padding: 10px 10px 5px 10px;}
th, td {min-width: 45px;}


}

