﻿@import '../common.scss';

InventoryItem {
    background-color: $hud-fg;
    border-radius: 16px;
    margin: 5px;
    width: 100px;

    > img {
        margin: 8px;
    }

    &:hover:not(.disabled) {
        background-color: $hud-fg-hovered;
    }

    &.selected:not(.disabled) {
        border: 4px solid orange;
    }

    .ammo {
        bottom: 0;
        right: 0;
        justify-content: center;
        align-items: center;
        color: lighten($hud-bg, 90%);
        position: absolute;
        font-size: 24px;
        padding: 2px 8px;
    }

    &.disabled {
        opacity: 0.6;
    }
}
