/*#9FA8DA*/

@import url(table.css);
@import url(input.css);
@import url(elems.css);
@import url(nav.css);
@import url(card.css);
@import url(settings.css);
@import url(log.css);
@import url(animation.css);

:root{
	--primary-color: #9FA8DA;
	--background-color: #121212;
	--card-color: #252525;
}

html {
	color: rgba(255,255,255,0.9);
	background-color: var(--background-color);
	font-family: 'Roboto';
}

body{
	margin: 0;
}

header {
	overflow: hidden;
	text-align: center;
	background-color: var(--card-color);
	box-shadow: 0 0 10px black;
	margin-bottom: 60px;
	z-index: 1;
	position: fixed;
    top: 0;
    width: 100%;
}

header > h1 {
	color: rgba(255,255,255,0.60);
	font-weight: 400;
	user-select: none;
	padding: 0 60px;
}

footer{
	overflow: hidden;
	margin-top: 100px;
	padding: 20px;
	text-align: center;
	background-color: rgba(255,255,255,0.01);
	color: rgba(255,255,255,0.5);
	vertical-align: middle;
}
a{

	color: rgba(255,255,255,0.5);
	text-decoration: none;
	width: fit-content;
	margin: 10px;
}
a:active, a:visited{
	color: rgba(255,255,255,0.5);
}
a:hover{
	color: var(--primary-color);
}

table{
	width: 100%;
    display: table;
    border-collapse: collapse;
    border-spacing: 0;
}
tr {
    border-bottom: 1px solid rgba(0,0,0,0.12);
}
th{
	width: 30%;
}
td {
	word-break: break-all;
}
td, th {
    padding: 15px 10px;
    text-align: left;
    vertical-align: middle;
    border-radius: 2px;
}

section.bottom {
	width: calc(100% - 60px);
    margin: 0 30px;
    padding: 5.5px 0;
    background-color: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.5);
    border-radius: 0 0 4px 4px;
	display: flex;
	justify-content: space-around;
}

.container {
    margin: 180px auto 100px auto;
    max-width: 1280px;
	min-height: calc(100vh - 340px);
    width: 70%;
}
@media only screen and (max-width: 700px){
	.container {
		width: 100%;
	}
}

.badge{
	float: right;
	background-color: var(--primary-color);
	padding: 3px;
	border-radius: 3px;
	color: white !important; 
	font-weight: 300;
}

/* contenitore generale */
.content{
	padding: 15px;
	position: relative;
}

/* SCROLLBAR */

/* width */
::-webkit-scrollbar {
  width: 5px;
}

/* Track */
/* ::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 10px;
} */

/* Handle */
::-webkit-scrollbar-thumb {
  border-radius: 2px;
  background-color: #2c2c2c;
  /*-webkit-box-shadow: 0 0 1px rgba(255, 255, 255, .5);*/
}