/* Minecraft-style font + pixel rendering */
body {
    background: #2b2b2b;
    font-family: Arial, sans-serif;
    color: #eee;
    image-rendering: pixelated;
}

/* Item icon styling */
.mcui-item {
    width: 32px;
    height: 32px;
    position: relative;
}

.mcui-item img {
    width: 32px;
    height: 32px;
    image-rendering: pixelated;
}

/* Tooltip */
.mcui-tooltip {
    position: absolute;
    background: rgba(20, 20, 20, 0.95);
    border: 1px solid #555;
    padding: 6px 10px;
    color: white;
    font-size: 14px;
    pointer-events: none;
    display: none;
    white-space: pre;
    z-index: 9999;
}

