.status-container {
	position: absolute;
	top: 37px;
	height: 376px;
	width: 318px;
	background-color: var(--white);
	background-image: url('../assets/images/textures/texture8.png');
	z-index: 2;
}

.status-stats-container {
	position: absolute;
	top: 8px;
	left: 50%;
	transform: translate(-50%);
	width: 94%;
	height: auto;
	display: flex;
	flex-wrap: wrap;
}

.status-stat {
	position: relative;
	width: 100%;
	height: 22px;
	border-bottom: 1px solid var(--black);
	display: flex;
	flex-wrap: wrap;
}

.status-stat-icon {
	position: relative;
	width: 24px;
	height: 100%;
	background-size: 24px;
	background-position: center;
	background-repeat: no-repeat;
	filter: drop-shadow(0 0 1px);
}

.status-stat-label {
	position: relative;
	left: 5px;
	width: 45%;
	height: 100%;
	font-size: 12px;
	line-height: 24px;
	color: var(--black);
}

.status-stat-value {
	position: relative;
	width: 45%;
	height: 100%;
	text-align: right;
	font-size: 12px;
	line-height: 24px;
	color: var(--black);
}

.status-inventory-container {
	position: absolute;
	bottom: 10px;
	left: 50%;
	transform: translate(-50%);
	width: 94%;
	height: 140px;
	display: flex;
	flex-wrap: wrap;
}

.status-inventory-pokeball-container {
	position: relative;
	top: 3px;
	width: 100%;
	height: 24px;
	display: flex;
	flex-wrap: wrap;
	align-content: center;
	font-size: 12px;
	line-height: 28px;
	color: var(--white);
}

.status-inventory-pokeball-icon {
	position: relative;
	width: 15%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: center;
}

.status-inventory-pokeball-name {
	position: relative;
	width: 74%;
}

.status-inventory-pokeball-info {
	position: relative;
	width: 6%;
	text-align: right;
	cursor: url('../assets/images/misc/cursor-pointer.png') 0 0, pointer;
	transition: .2s;
}

.status-inventory-pokeball-info:hover {
	filter: brightness(1.2);
}

.status-inventory-slot-container {
	position: relative;
	width: 100%;
	height: auto;
	display: flex;
	flex-wrap: wrap;
	align-content: center;
	justify-content: center;
	gap: 8px;
}

.status-inventory-slot {
	position: relative;
	width: 30px;
	height: 30px;
	outline: 1px solid black;
	border-radius: 5px;
	background-color: var(--white);
	overflow: hidden; 
}

/* Gradiente por rareza */
.status-inventory-slot::before {
	content: "";
	position: absolute;
	inset: 0; /* ocupa todo */
	z-index: 0;
}

.status-inventory-slot-sprite {
	position: absolute;
	height: 100%;
	width: 100%;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	z-index: 1; /* encima del gradiente */
}