.metaverse-game-scores-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.9em;
	margin: 20px 0;
}

.metaverse-game-scores-table th,
.metaverse-game-scores-table td {
	border: 1px solid #ddd;
	padding: 10px !important;
}

.metaverse-game-scores-table th {

	text-align: left;
}

.milc-gamification.panel {
	background: #0a0b0e;
	padding: 30px;
	width: 90%;
	margin: 0 auto;
}


.tabbed-interface {
	display: flex;
	color: white;
	min-height: 100vh;
}

.tabbed-interface h2 {
	color: white;
	font-size: 24px;

}

.tabbed-interface .lottery-controls {
	margin-top: 20px;
	display: flex;
	gap: 10px;
	flex-direction: column;
}

.tabbed-interface #lottery-button {
	background: #3a3aaf;
	height: 40px;
	border: none;
}

.tabbed-interface #lottery-button,
.tabbed-interface #num-winners,
.tabbed-interface #store,
.tabbed-interface #discard
{
	width: 300px;
}

.tabbed-interface #discard {
	background: #a33a3a;
	height: 40px;
	border: none;
}

.tabbed-interface #store {
	background: #3aa33a;
	height: 40px;
	border: none;
}

.tabbed-interface .results-control {
	display: flex;
	gap: 10px;
}

.tabbed-interface .sidebar {
	width: 20%;
	background-color: #333;
	padding: 30px;
}

.tabbed-interface .sidebar div {
	padding: 10px;
	cursor: pointer;
	font-size: 20px;
}
.tabbed-interface .sidebar div:hover {
	background-color: #555;
}
.tabbed-interface div.active {
	background-color: #555;
}

.tabbed-interface .content {
	padding: 30px;
	width:80%;
	color: white;
	background-color: #555;
	display: none;
}

.tabbed-interface .content.active {
	display: block;
	position: relative;
}

.tabbed-interface .gamification-form {
	display: flex;
	flex-direction: column;
	gap: 10px;
	width: 600px;
}

.tabbed-interface .gamification-form .form-controls {
	display: flex;
	gap: 10px;
	color: white;
	margin: 15px 0;
}



.tabbed-interface .gamification-form input[type="submit"],
.tabbed-interface .gamification-form button {
	cursor: pointer;
	background: #3a3aaf;
	height: 40px;
	border: none;
	color: white;
	padding: 10px;
}

.tabbed-interface .spinner.is-active::before {
	content: "";
	box-sizing: border-box;
	position: absolute;
	width: 20px;
	height: 20px;
	margin-top: -10px;
	margin-left: -10px;
	border-radius: 50%;
	border: 2px solid #ccc;
	border-top-color: #333;
	animation: spinner 0.6s linear infinite;


}

.tabbed-interface .drops-data {
	margin: 20px 0;
}

.tabbed-interface .drops-data table {

	border: 1px solid #ccc;
}

@keyframes spinner {
	to { transform: rotate(360deg); }
}


.spinnerOverlay {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1000;
	display: none;
}


.action-button {
	padding: 0 12px;
	position: relative;
	width: 90px;
	text-align: left;
}
/* Styles for the big full-screen spinner */
.spinnerOverlay .spinner.is-active::before {
	top: 50%;
	left: 50%;
}

.action-button .spinner.is-active {
	display: inline-block;
	width: 16px;
	position: absolute;
	right: 2px;
	height: 16px;
	margin-left: 10px;
	margin-right: 5px;
	top: 1px;
}

/* Styles for the small button spinner in the edit button */
.action-button .spinner.is-active::before {
	width: 100%;
	height: 100%;
	left: 0;
	margin: 0;
}


.milc-leaderboard-widget {
	width: 100%;

}

.milc-leaderboard-widget table {
	width: 100%;
	border-radius: 7px;
	margin: 0;
}

.milc-leaderboard-widget th {
	font-size: 14px;
}

.milc-leaderboard-widget td {
	font-size: 14px;
	border-bottom: none !important;

}

.milc-leaderboard-widget td,
.milc-leaderboard-widget th {
	padding: 5px !important;

}

.milc-leaderboard-widget td a {
	color: white;
	font-weight: bold;
}

.milc-leaderboard-widget td a:hover {
	color: #A10000;

}



.leaderboard-tabs .tabs {
	list-style-type: none;
	padding: 0;
	margin-bottom: 3px;
}

.leaderboard-tabs .tabs li {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;

	text-transform: capitalize;
	padding-bottom: 3px;
	margin-right: 20px;
	cursor: pointer;
	border-bottom: 1px solid transparent;
}
.leaderboard-tabs .tabs li:hover {
	color: var(--bb-primary-color);
}

.leaderboard-tabs .tabs li.current {

	color: #fff;
	border-bottom: 1px solid #ccc;
}
.leaderboard-tabs .tab-content {
	display: none;

}
.leaderboard-tabs .tab-content.current {
	display: block;
}
