@import url('https://fonts.googleapis.com/css?family=Tajawal:400,700');

html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}

body,html{
	font-family: 'Tajawal', sans-serif;
}
h1{
	font-size: 25px;
}

.text-right{
	text-align: right;
}

button{
	background: #3565b2;
	color: #fff;
	padding: 10px;
	box-shadow: none;
	border: none;
	border-radius: 4px;
}

header{
	background: #3565b2;
	color: #fff;
	padding: 25px;
	width: 100%;
}

table{
	width: 100%;
	
}
table tr{
	border: 1px solid #ececec;
}
table td,
table th{
	padding: 20px;
	
}
table th{
	font-weight: 700;
	text-align: left;
}
table tr:nth-child(even){
	background: #ececec;
}

#app{
	padding-bottom: 100px;
}

.addconsolebar{
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	height: 100px;
	
}
.addconsolebar input{
	float: left;
	width: 50%;
	padding: 15px;
}

.addconsolebar button{
	width: 100%;
}