.inventory-scene-item-container {
    position: absolute;
    top: 17px;
    right: 20px;
    left: 20px;
    height: 307px;

    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-content: flex-start;
    padding: 15px;
    gap: 10px;
    overflow-y: auto;

    background: rgba(128, 128, 128, 0.1); 
    backdrop-filter: blur(15px); 
    
    background-image: linear-gradient(
        rgba(255, 255, 255, 0.03) 1px, 
        transparent 1px
    );

    background-size: 100% 4px;
    outline: 1px solid black;
}

.inventory-scene-item-container::-webkit-scrollbar { width: 8px; }
.inventory-scene-item-container::-webkit-scrollbar-track { 
    outline: 1px solid black;
    background: #222; 
}
.inventory-scene-item-container::-webkit-scrollbar-thumb { 
    background: #a33635; 
    box-shadow: inset 0 2px 0 rgba(255,255,255,0.2);
}
.inventory-scene-item-container::-webkit-scrollbar-thumb:hover {
    background: var(--red); 
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.2);
}

.inventory-scene-item-slot {
	position: relative;
	width: 42px; 
	height: 42px;
	
	background-color: rgba(100, 100, 100, 0.25);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 32px; 
	border: 1px solid rgba(150, 150, 150, 0.7);
	border-radius: 0px; 
	box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.8);
	
	cursor: grab;
	transition: 0.1s;
	overflow: hidden;
}

.inventory-scene-item-slot:hover {
	background-color: rgba(163, 54, 53, 0.15); 
	border-color: var(--red);
	transform: translateY(-2px); 

	box-shadow: 
		inset 0 0 12px rgba(163, 54, 53, 0.3),
		0 4px 10px rgba(0, 0, 0, 0.3);
}

.inventory-scene-item-slot:active {
    transform: translateY(0px) scale(0.95); 
    background-color: rgba(163, 54, 53, 0.4); 
    filter: brightness(0.8);
    transition: all 0.05s; 
}

.inventory-scene-item-slot.is-selected {
    background-color: rgba(255, 204, 0, 0.15); 
    border: 1px solid #ffcc00; 
    box-shadow: inset 0 0 5px rgba(255, 204, 0, 0.3);
    z-index: 2;
}

.inventory-scene-item-slot-pokemon {
	position: absolute;
	bottom: -3px;
	right: -5px;
	height: 20px;
	width: 20px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
    pointer-events: none;
}

.inventory-scene-item-selected-container {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 130px;
    height: 90px;
    
    background: rgba(40, 40, 40, 0.9); 
    padding: 10px;
    outline: 1px solid black;
    border-bottom: 4px solid var(--red);
}

.inventory-scene-item-name {
    position: absolute;
    top: -12px; /
    left: 15px;
    
    height: 20px;
    padding: 0 12px;

    background-color: var(--red); 
    color: var(--white);
    border: 1px solid #000;
    
    font-size: 10px;
    font-weight: bold;
    line-height: 20px;
    text-align: center;
    text-transform: uppercase;
    
    text-shadow: 1px 1px 0px #000;
    z-index: 5;
}

.inventory-scene-item-description {
    position: absolute;
    top: 15px; 
    left: 15px;
    right: 15px;
    bottom: 10px;

    font-size: 11px; 
    line-height: 1.4;
    text-align: left;
    
    display: flex;
    align-items: center; 

    color: #ccc;
    text-shadow: 1px 1px 0px #000;
}


.inventory-scene-pokemon-container {
	position: absolute;
	bottom: 14px;
	right: 10px;
	left: 10px;
	height: 90px;

	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-content: flex-start;

	gap: 8px;
	overflow-y: auto;
    padding: 5px;
}

.inventory-scene-pokemon-container::-webkit-scrollbar { 
    width: 6px; 
}

.inventory-scene-pokemon-container::-webkit-scrollbar-track { 
    background: rgba(255, 255, 255, 0.05); 
    border-left: 1px solid rgba(0, 0, 0, 0.2);
}

.inventory-scene-pokemon-container::-webkit-scrollbar-thumb { 
    background: linear-gradient(180deg, var(--red) 0%, #a33635 100%); 
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 0px; 
    box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.2);
}

.inventory-scene-pokemon-container::-webkit-scrollbar-thumb:hover {
    background: var(--red); 
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.2);
}

.inventory-scene-pokemon {
    width: 16px; 
	height: 16px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;

	filter: drop-shadow(0 1px 1px rgba(0,0,0,0.5));
	cursor: pointer;
    transition: 0.1s;
}

.inventory-scene-pokemon:hover {
	filter: brightness(1.2) drop-shadow(0 0 5px var(--red));
}


