 body {
	font-family: 'Segoe UI', sans-serif;
	background: #f4f6f8;
	color: #333;
	padding: 2rem;
	margin: 0;
}
h1 {
	text-align: center;
	color: #222;
}

h2{
	text-align:center;
}

h3{
	font-weight:500;
	text-align:center;
	margin-top:3rem;
}

a{
	color:#8b8b8b;
}

#top a{
	display: block;
    text-align: center;
    color: #333333;
    text-decoration: none;
}

form {
	background: white;
	padding: 1.5rem;
	border-radius: 12px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.container{
	width: 700px;
	max-width: 100%;
	margin: 2rem auto;
}

.big_container{
	width: 1400px;
	max-width: 100%;
	margin: 2rem auto;
}

.results{
	padding: 0;
	margin-top:5rem;
}

input[type="text"] {
	width: 94%;
	padding: 1rem;
	font-size: 1rem;
	border: 1px solid #ccc;
	border-radius: 8px;
	margin-bottom: 1rem;
}
button {
	background: #0073e6;
	color: white;
	padding: 0.8rem 1.5rem;
	font-size: 1rem;
	border: none;
	border-radius: 8px;
	cursor: pointer;
}
.output {
	margin: 1rem auto;
	background: #fff;
	border-radius: 12px;
	padding: 1.5rem;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
	padding: 0.8rem;
	border-bottom: 1px solid #eee;
	cursor: pointer;
	font-size:20px;
}

.padd_top{
   margin-top:10rem;
}

.little_padd_top{
   margin-top:5rem;
}

table{
	font-size:14px;
}

.flex{
	display:flex;
}

#container_fonts .flex > div{
	flex:5;
}

#container_fonts .flex{
	justify-content: space-between;
}

.center{
	text-align:center;
}

.table_container {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch; /* pour un scroll fluide sur iOS */
}

.table_container table {
  width: max-content; /* ou min-width: 100%; selon le rendu voulu */
  border-collapse: collapse;
}

@media only screen and (max-width: 768px) {
	.flex{
		display:block;
	}
	
	input[type="text"] {
		width: 90%;
	}
	
	button{
		margin: auto;
		display: block;
	}
	
	big_container{
		margin:0;
	}
}