html, body {
	margin: 0;
	font-family: 'Roboto Mono', monospace;
	font-weight: bold;
	user-select: none;
}

.container {
	display: flex;
	justify-content: center;
	flex-direction: column;
    align-items: center;
}

#ecran {
	display: flex;
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

td {
	overflow-wrap: anywhere;
}

.border {
	padding: 25px;
	background: #EEEEEE;
}

.command-line {
	font-size: 11pt;
	width: 99%;
	resize: none;
}

a:hover {
	cursor: pointer;
}

li {
	list-style: none;
	border-left: solid black 1px;
	margin: 0;
	padding-left: 15px;
	margin-bottom: 5px;
}

li:hover {
	cursor: pointer;
}

#sql1-child {
	display: block;
}

#list-sql {
	background: white;
}

.liste {
	display: flex;
	flex-direction: column;
	margin-left: 20px;
	margin-top: 10px;
}

span {
	vertical-align: text-bottom;
}

.liste > * {
	background: rgba(0, 0, 0, 0.1);
	margin-bottom: 5px;
	border-left: solid black 1px;
	padding-left: 5px;
}

.icone {
	vertical-align: top;
	padding-left: 5px;
	padding-right: 5px;
}

tr, td {
	margin: 0;
	padding: 3px;
	background: white;
}

td {
	border:  solid grey 1px;
}

.header > td {
	background: #EEEEEE;
	border: solid black 1px;
}

.d-none {
	display: none;
}

.selected {
	display: block;
}

.tab {
	margin-bottom: 10px;
}

.tab > a {
	border:  solid black 1px;
	border-bottom: none;
	padding: 5px;
	border-radius: 5px 5px 0 0;
}

button {
	margin: 10px;
	width: 100%;
	padding:  10px;
	border: none;
	background: rgba(0, 0, 0, 0.05);
	transition: all 0.1s;
}

button:hover {
	cursor: pointer;
	background: rgba(0, 0, 0, 0.1);
	transition: all 0.1s;
}

#error {
	margin-top: 10px;
}

.m-500 {
	min-width: 500px;
	max-width: 750px;
}

#exercice {
	text-align: center;
	max-width: 50%;
	font-size: 15pt;
	background: rgba(0, 0, 0, 0.1);
}

#result-screen {
	opacity: 0;
	position: fixed;
	display: none;
	flex-direction: column;
	width: 100%;
	height: 100%;
	justify-content: center;
	align-items: center;
	background: rgba(0, 0, 0, 0.3);
	transition: all 0.3s;
}

#result-screen > div {
	text-align: center;
	background: white;
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
	padding: 25px;
	border-radius: 15px;
}

#verify-btn {
	transition: all 0.2s;
}

.normal {
	transition: all 0.2s;
	border: none;
}

.correct {
	transition: all 0.2s;
	background: #00D26A !important;
	border: none;
	color: white;
	font-weight: bold;
	font-size: 15pt;
}

.roboto {
	font-family: 'Roboto Mono', monospace;
	font-weight: bold;
}

.incorrect {
	transition: all 0.2s;
	background: #F92F60 !important;
	border: none;
	color: white;
	font-weight: bold;
	font-size: 15pt;
}

#exercice-list > li {
	border: solid grey 1px;
	padding: 10px;
	border-radius: 5px;
}

#exercice-list {
	padding: 0;
}

.list {
	display: flex;
    align-items: center;
    justify-content: space-between;
}

.list > span {
	margin-left: 20px;
}

#command-line > input {
	margin-right: 5px;
	padding: 5px;
	margin-bottom: 5px;
}

form {
	margin-bottom: 25px;
	margin-top: 20px;
}

#progress {
	width: 250px;
	height: 25px;
	background: rgba(0, 0, 0, 0.1);
	margin-bottom:  25px;
	border-radius: 5px;
}

#progress-bar {
	height: 25px;
	background: #00D26A;
	transition: all 0.5s;
	width: 0;
	border-radius: 5px;
}
.code-text {
	font-style: italic;
}

#command-line > a {
	margin: 0px 5px 0px 5px;
}

#send-btn {
	width: 75%;
}

#help-btn {
	width: 25%;
	background: #36C3D6;
	color: white;
}

#help-btn:hover {
	background: #27B4C7;
}

.alignement {
	display: flex;
}

#content-empty {
	padding: 10px;
}