/* MyCoach Montreux — calculateur santé (design original) */
body {
	background-color: #000;
	color: #000;
	font-family: Arial, sans-serif;
	text-align: center;
	padding: 20px;
	margin: 0;
}

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

h1 {
	color: #3498db;
	font-size: 40px;
	font-weight: bold;
	margin-top: 10px;
}

h2,
h3 {
	color: #3498db;
	font-size: 40px;
	font-weight: bold;
	margin-top: 10px;
}

h5 {
	color: #3498db;
	font-size: 14px;
	font-weight: bold;
	margin: 8px 0;
}

h5 a {
	color: #3498db;
	text-decoration: none;
}

h5 a:hover {
	text-decoration: underline;
}

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

button {
	width: 100%;
	padding: 10px;
	background-color: #3498db;
	color: #fff;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}

button:hover {
	background-color: #2980b9;
}

#result,
#comment,
#maxHeartRate,
#burnFatRange,
#programResult,
#forceProgramResult,
#adaptationResult {
	font-size: 18px;
	font-weight: bold;
	margin-top: 10px;
	color: #000;
}

#comment,
#adaptationInstructions {
	font-style: italic;
}

#takehome,
#takeAppointment {
	width: 100%;
	padding: 10px;
	background-color: #2ecc71;
	color: #fff;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	margin-bottom: 20px;
}

#takehome:hover,
#takeAppointment:hover {
	background-color: #27ae60;
}

.copyright {
	margin-top: 20px;
	font-size: 12px;
	color: #666;
}

@media only screen and (max-width: 820px) {
	h1 {
		font-size: 30px;
	}
}
