/* Basic Style CSS */

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

body {
    background-color: #393E46;
  	color: #EEEEEE;
	font-family: 'Roboto', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    color: #EEEEEE;
}

table {
    width: 90%;
  	margin: 0 auto;
}

table thead {

}

table thead tr th {
	font-size: 20px;
  	border-bottom: 1px solid #EEEEEE;
}

table tbody tr {

}

table tbody tr:hover {
	background-color: #222831;
}


table tbody tr td {
 	height: 50px;
  	padding: 10px;
}

table tbody tr td img {
  	padding-left: 5px;
}

.btn {
  	width: 100px;
    height: 39px;
    border: 1px solid #EEEEEE;
    border-radius: 5px;
    padding: 0px;
    margin-left: 3px;
    margin-right: 3px;
  	text-transform: uppercase;
  	background-color: #EEEEEE;
}

.btn:hover {
	background-color: #393E46;
  	border: 1px solid #222831;
  	color: #EEEEEE;
}

.btn:active {
	background-color: #EEEEEE;
}

.btn2 {
	width: 310px;
    height: 40px;
    border: none;
    padding: 0px;
  	margin-left: 3px;
    margin-right: 3px;
}

.btn-bg {
	background: rgba(0, 0, 0, 0.5);
    background-image: url(blueprint_import.svg);
    background-repeat: no-repeat;
    background-position-y: center;
    background-size: 310px auto;
}

.btn-bg:hover {
	background: rgba(0, 0, 0, 0.5);
    background-image: url(blueprint_import_inverted.svg);
    background-repeat: no-repeat;
    background-position-y: center;
    background-size: 310px auto;
}

.btn-bg:active {
	background: rgba(0, 0, 0, 0.5);
    background-image: url(blueprint_import.svg);
    background-repeat: no-repeat;
    background-position-y: center;
    background-size: 310px auto;
}

footer {
  	background-color: #222831;
    position: fixed;
    width: 100%;
    bottom: 0;
  	left: 0;
    box-sizing: border-box;
  	height: 50px;
}

footer p {
	 text-align: center;
}
