.menu-pokedex-pokemon-container {
	position: absolute;
	top: 8.5px;
	left: 18.5px;
	right: 10px;
	bottom: 8.5px;
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	overflow-y: scroll;
}

.menu-pokedex-pokemon-container::-webkit-scrollbar {display: none;}

.menu-pokedex-pokemon-unseen {
	position: relative;
	width: 22px;
	height: 22px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	filter: brightness(0);
}

.menu-pokedex-pokemon-seen {
	position: relative;
	width: 22px;
	height: 22px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	filter: grayscale(100%);
}

.menu-pokedex-pokemon-catched {
	position: relative;
	width: 22px;
	height: 22px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

.menu-pokedex-completed {
	position: absolute;
	bottom: 4px;
	right: 10px;
	color: var(--red);
	font-size: 13px;
	width: 100px;
	text-align: center;
	background-color: var(--white);
	padding: 8px 5px 5px 5px;
}

.menu-pokedex-pokemon-top-container {
	position: absolute;
	top: 45px;
	width: 100%;
	text-align: center;
	height: 30px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.menu-pokedex-pokemon-arrow {
	position: relative;
	width: auto;
	text-align: center;
	color: var(--white);
	cursor: url('../assets/images/misc/cursor-pointer.png') 0 0, pointer;
}

.menu-pokedex-pokemon-arrow:hover {
	filter: brightness(1.2);
}

.menu-pokedex-pokemon-name {
	position: relative;
	width: 300px;
	text-align: center;
	color: #1b1b19;
}

.menu-pokedex-pokemon-sprite {
	position: absolute;
	top: 60px;
	right: 30px;
	height: 120px;
	width: 120px;
	background-size: 100%;
	background-repeat: no-repeat;
}

.menu-pokedex-pokemon-type {
	position: absolute;
	top: 165px;
	right: 30px;
	height: 120px;
	width: 120px;
	text-align: center;
}

.menu-pokedex-pokemon-stat-container {
	position: absolute;
	bottom: 170px;
	top: 80px;
	left: 25px;
	width: 280px;
	color: #1b1b19;
}

.menu-pokedex-pokemon-stat-row {
	position: relative;
	width: 100%;
	height: calc(100%/6);
	display: flex;
	flex-wrap: wrap;
	line-height: 20px;
	font-size: 12px;
}

.menu-pokedex-pokemon-stat-label {
	position: relative;
	width: 20%;
	height: 100%;
}

.menu-pokedex-pokemon-stat-value {
	position: relative;
	top: 20%;
	width: 75%;
	height: 70%;
	background-color: var(--blue);
	outline: 1px solid black;
}

.menu-pokedex-pokemon-move-title {
	position: absolute;
	bottom: 130px;
	left: 10px;
	right: 10px;
	height: 25px;
	line-height: 28px;
	background-color: var(--red);
	outline: 1px solid black;
	padding-left: 10px;
	color: var(--white);
	font-size: 14px;
}

.menu-pokedex-pokemon-move-container {
	position: absolute;
	bottom: 10px;
	left: 10px;
	right: 10px;
	height: 120px;
	display: flex;
	flex-wrap: wrap;
	overflow-y: auto;
	outline: 1px solid black;
}

.menu-pokedex-pokemon-move-container::-webkit-scrollbar { width: 16px; }
.menu-pokedex-pokemon-move-container::-webkit-scrollbar-track { 
	background: #2a2b2b; 
	outline: 1px solid black;
}
.menu-pokedex-pokemon-move-container::-webkit-scrollbar-thumb { 
    background: var(--red); 
    outline: 1px solid black;
    border-radius: 0;
}

.menu-pokedex-pokemon-move {
	width: 100%;
	height: 7px;
	padding: 8px;
	font-size: 12px;

	color: #222425;
	background-color: #e8e9e9;
	border-right: 1px solid black;
}

.menu-pokedex-pokemon-move:nth-child(2n) {
	background-color: #d6d6d6;
}