#shared-charts h1{
	margin:5rem auto;
}

#shared-charts table{
	margin:2rem auto;
}

#shared-charts table thead{
	background: #1f1f1f;
	border-radius: var(--border_radius) 0 0 var(--border_radius);
}

/*#shared-charts table tbody tr:nth-child(even)
{
	background: #1f1f1f44;
}*/

#shared-charts table tbody tr:hover{
	background: #1f1f1f44;

}
#shared-charts img.coin-logo {
    height: 24px;
    width: 24px;
    border-radius: 12px;
    border:none;
    position: relative;
    top: 2px;
}


#shared-charts table span a{
	text-decoration: underline;
	color: rgb(var(--buttons_background));
	font-weight: bold;
}

#shared-charts table tbody tr td{
	padding:1rem;
}

#shared-charts table tbody tr td:nth-child(1)
{
	font-size: 1.5em;
}

#shared-charts img{
	transition: transform .2s; /* Animation */
	max-width: 400px;
/*	border-radius: 100%;*/
	border-radius: var(--border_radius);
	border:2px solid;
	object-fit: cover;
}

#shared-charts img:hover{
	transform: scale(2);
}

@media screen and (max-width: 768px)
{
	#shared-charts td,#shared-charts th{
		display: inline-block;
	}

	#shared-charts img{
		max-width: 100%;
	}
}