@import "/UI/Styles/Theme.scss";

DeveloperMenu
{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	font-weight: bold;
	padding: 64px;
	opacity: 0;
	pointer-events: none;
	z-index: 9999;
	justify-content: center;
	align-items: center;

	.options
	{
		border-radius: 10px;
		gap: 8px;
		flex-direction: row;
		justify-content: flex-start;
		align-items: flex-start;
		padding: 32px;
		backdrop-filter: $blur;
		background-color: rgba( black, 0.5 );
		flex-wrap: wrap;

		.group
		{
			padding: 16px;
			gap: 8px;
			flex-direction: column;
		}
	}

	&.active
	{
		pointer-events: all;
		opacity: 1;
	}

	.title
	{
		font-size: 25px;
		font-family: $main-font;
		color: #fff;
		text-shadow: 2px 2px 2px rgba( black, 0.5 );
	}

	.button
	{
		min-width: 256px;
		font-size: 18px;
		min-height: 48px;
		font-family: $main-font;
		color: #fff;
		background-color: rgba( black, 0.5 );
		height: 48px;
		align-items: center;
		padding-left: 16px;

		label
		{
			text-shadow: 2px 1px 0px rgba( black, 0.5 );
		}

		&:hover
		{
			cursor: pointer;
			background-color: rgba( black, 0.7 );
			transform: scale( 1.02 );
		}
	}
}