@import url(https://fonts.googleapis.com/css?family=Raleway);

body {
	font-family: 'Raleway', sans-serif;
	background-color: #f0f0f0;
	color: #444;
	line-height: 1.6;
	margin: 0;
	padding: 0;
}

.container {
	max-width: 800px;
	margin: 20px auto;
	padding: 20px;
	background-color: #fff;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	border-radius: 5px;
}

h1 {
	font-size: 2.5em;
	margin-bottom: 10px;
}

p {
	font-size: 1.2em;
	color: #555;
}

table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 20px;
	margin-bottom: 20px;
}

th,
td {
	padding: 10px;
	text-align: left;
	/* Align text to the left */
}

th {
	font-weight: bold;
}

input[type="number"] {
	-webkit-appearance: textfield;
	-moz-appearance: textfield;
	appearance: textfield;
	width: 100px;
	padding: 8px;
	border: 1px solid #ddd;
	border-radius: 4px;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

#sum {
	font-size: 1.2em;
	margin-bottom: 20px;
}

.result-container {
	display: flex;
	justify-content: space-between;
	margin-top: 20px;
}

.result-box {
	text-align: center;
	width: 48%;
}

#real {
	color: #000;
	background-color: #007bff;
}

#picture {
	color: #000;
	background-color: #28a745;
}