body {
	background-color: #1b1b1b;
	color: #fff;
	font-family: "Arial", sans-serif;
	text-align: center;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	overflow-x: hidden;
}

main {
	flex: 1 0 auto;
	padding-top: 60px;
}

#scrolltable {
	overflow-x: auto;
}

#main-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 5px;
	background-color: #000;
	top: 0;
	width: 100vw;
}

.navbar a {
	color: #fff;
	text-decoration: none;
}

table {
	width: 100%;
}

.left-section {
	display: flex;
	align-items: center;
	padding-left: 10px;
}

.left-section img {
	height: 50px;
	margin-right: 15px;
}

.right-section {
	display: flex;
	align-items: center;
	padding-right: 50px;
}

.right-section nav ul {
	display: flex;
	gap: 20px;
}

.right-section img {
	height: 15px;
	margin-right: 5px;
}

.styled-table {
	width: 80%;
	margin: 50px auto;
	border-spacing: 0;
	overflow: hidden;
	border-radius: 10px;
}

.styled-table thead tr:first-child th:first-child {
	border-top-left-radius: 10px;
}

.styled-table thead tr:first-child th:last-child {
	border-top-right-radius: 10px;
}

.styled-table tbody tr:last-child td:first-child {
	border-bottom-left-radius: 10px;
}

.styled-table tbody tr:last-child td:last-child {
	border-bottom-right-radius: 10px;
}

.styled-table thead tr {
	background-color: #000000;
	color: #fff;
}

.styled-table th,
.styled-table td {
	padding: 15px;
	border: 1px solid #444444;
}

.tooltip {
	position: relative;
	cursor: pointer;
}

.tooltip::after {
	content: attr(data);
	position: absolute;
	left: 0;
	top: 100%;
	min-width: 150px;
	padding: 5px;
	border: 1px solid #333;
	border-radius: 10px;
	background-color: black;
	color: #fff;
	font-size: 0.8em;
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.2s ease-in-out;
	box-shadow: 2px 2px 10px 5px rgba(0, 0, 0, 0.5);
	z-index: 1;
}

.tooltip:hover::after {
	opacity: 1;
}

.asterisk {
	margin-top: -35px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	width: 80%;
	padding-bottom: 15px;
}

footer {
	background-color: #000;
	color: #fff;
	padding: 0px;
	left: 0;
	bottom: 0;
	width: 100%;
	flex-shrink: 0;
	z-index: 100;
}

footer a {
	text-decoration: none;
	color: rgb(100, 0, 231);
}

@media (max-width: 600px) {
	styled-table {
		width: 100%;
		overflow-x: auto;
		display: block;
	}

	styled-table thead {
		display: none;
	}

	styled-table tr {
		margin-bottom: 10px;
		display: block;
		border-bottom: 2px solid #ddd;
	}

	styled-table td {
		display: block;
		text-align: right;
		font-size: 13px;
		border-bottom: 1px dotted #ccc;
	}

	styled-table td:last-child {
		border-bottom: 0;
	}

	styled-table td:before {
		content: attr(data-label);
		float: left;
		text-transform: uppercase;
		font-weight: bold;
	}
}

#premium {
	background: linear-gradient(to right,
			#7551bb 20%,
			#b500fd 30%,
			#740074 70%,
			#764ada 80%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	text-fill-color: transparent;
	background-size: 500% auto;
	animation: textShine 5s ease-in-out infinite alternate;
}

@keyframes textShine {
	0% {
		background-position: 0% 50%;
	}

	100% {
		background-position: 100% 50%;
	}
}