* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	text-decoration: none;
	color: black;
}

body {
	font-family: Arial, Helvetica, sans-serif;
	min-height: 100vh;
}

.stepper {
	position: fixed;
	left: 30px;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	z-index: 10;
}

.step {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
}

.step-circle {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	font-size: 1rem;
}

.step.active .step-circle {
	background: linear-gradient(135deg, #a8d5b5, #4a9e6b);
	color: white;
}

.step.inactive .step-circle {
	background: #e5e5e5;
	color: #aaa;
}

.step.active span {
	color: #4a9e6b;
	font-weight: bold;
	font-size: 0.75rem;
}

.step.inactive span {
	color: #aaa;
	font-size: 0.75rem;
}

.step-line {
	width: 3px;
	height: 40px;
	background: #e5e5e5;
}

.step-line.done {
	background: linear-gradient(to bottom, #a8d5b5, #4a9e6b);
}

main {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	margin: 0 15%;
	padding: 50px 0;
}

h1,
main > p {
	text-align: center;
}

h1 {
	margin-bottom: 20px;
}

p {
	margin-bottom: 50px;
}

a {
	transition: transform 0.3s;
}

a:hover {
	transform: scale(1.05);
}

.container {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
	width: 100%;
}

.container div.card {
	overflow: hidden;
	min-height: 300px;
	border-radius: 25px;
	padding: 25px;
	display: flex;
	flex-direction: column;
	box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.05);
}

.container div.card:hover {
	box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
}

.container div.stat {
	border-radius: 25px;
	padding: 15px;
	display: flex;
	flex-direction: column;
	margin-bottom: 20px;
}

.container div.stat-vert {
	background: linear-gradient(135deg, #d4edda, #a8d5b5);
}

.container div.stat-orange {
	background: linear-gradient(135deg, #fde8c8, #f8c97a);
}

.container div.stat-rouge {
	background: linear-gradient(135deg, #fcd5d5, #f4a0a0);
}

.container div.ssp-rcp {
	border-top: 1px solid #e5e5e5;
	padding-top: 10px;
}

.container span.ssp-rcp {
	color: #b9b9b9;
}

.type-scenario {
	margin-bottom: 20px;
}

.degres {
	font-size: 2rem;
}

.degres-vert {
	color: #2d7a3a;
}
.degres-orange {
	color: #b85c00;
}
.degres-rouge {
	color: #c0392b;
}

.vert {
	border: 2px solid #a8d5b5;
}
.orange {
	border: 2px solid #f8c97a;
}
.rouge {
	border: 2px solid #f4a0a0;
}

.container div {
	position: relative;
}

.container div .thermo {
	position: absolute;
	top: 15px;
	right: 15px;
	width: 19px;
	height: auto;
}

.rechauffement {
	font-weight: lighter;
	font-size: 1rem;
	margin-bottom: 5px;
	opacity: 0.5;
}

.retour {
	margin-top: 25px;
	padding: 15px;
	border-radius: 25px;
	border: 1.5px solid #e5e5e5;
	align-self: flex-start;
	color: #7f7f7f;
}
