@charset "utf-8";
/* CSS Document */
.container { 
			margin: 5px auto; 
			width: 200px; 
			background-color: #f1f1f1; 
			padding: 5px; 
			border-radius: 5px; 
			box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); 
		} 

		h1 { 
			text-align: left; 
			margin-bottom: 20px; 
		} 

		input[type="number"] { 
			width: 100%; 
			padding: 10px; 
			margin-bottom: 10px; 
			box-sizing: border-box; 
		} 

		select { 
			width: 100%; 
			padding: 10px; 
			margin-bottom: 10px; 
			box-sizing: border-box; 
		} 

		p { 
			text-align: center; 
			margin-top: 10px; 
			font-weight: bold; 
			font-size: 20px; 
		}
