@import url("https://cdn.jsdelivr.net/npm/bootstrap@5.3.8/dist/css/bootstrap.min.css");

:root {
    --color-bg: #160029;
    --color-text: #FAFAFA;
    --color-primary: #A155E3;
    --color-border: #1600294C;
}

html {
    scrollbar-gutter: stable;
    background: var(--color-bg);
    color: var(--color-text);
    overflow-x: hidden;
}

/*# sourceMappingURL=inventorySection.css.map */


/* --- Inventory (fixed, top-right) --- */
#inventorySection {
    position: relative;
    z-index: 1000;
}

.inventory {
    position: fixed;
    top: 12px;
    right: 12px;
    background: rgba(20, 20, 25, 0.72);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    color: #fff;
    padding: 10px 12px;
    border-radius: 12px;
    min-width: 180px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .35);
}

.inventory-title {
    font-size: 0.95rem;
    margin: 0 0 6px 0;
    opacity: .9;
}

.inventory-list {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.inventory-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: transform .12s ease, background-color .2s ease, border-color .2s ease;
}

.inventory-item:hover,
.inventory-item:focus-visible {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.35);
}

.inventory-item img {
    max-width: 28px;
    max-height: 28px;
}

.inventory-item .placeholder {
    font-size: .85rem;
    opacity: .85;
}
