/* Crafting Recipe Styles */
.mc-wiki-recipe-container {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #c6c6c6;
    padding: 20px;
    border-radius: 4px;
    max-width: 100%;
    width: 450px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    margin-bottom: 20px;
    flex-wrap: nowrap;
}

.mc-wiki-crafting-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    background: #8b8b8b;
    padding: 0;
    border-radius: 0;
}

.mc-wiki-crafting-slot {
    width: 63px;
    height: 63px;
    background: #8b8b8b;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 1px 1px 2px 2px #373737 inset, inset 6px 0 8px -6px #373737;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    position: relative;
}

.mc-wiki-crafting-slot img , .mc-wiki-crafting-result img{
    width: 45px;
    height: 45px;
    object-fit: contain;
    background: transparent;
    image-rendering: pixelated;
}

.mc-wiki-crafting-result {
    position: relative;
    width: 73px;
    height: 73px;
    background: #8b8b8b;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 1px 1px 2px 2px #373737 inset, inset 6px 0 8px -6px #373737;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
}

.mc-wiki-item-count {
    position: absolute;
    right: 0;
    bottom: 0;
    color: #fff;
    font-size: 1.2em;
    text-shadow: 2px 2px 0 #000, 0 0 4px #000;
    pointer-events: none;
    z-index: 2;
    white-space: nowrap;
    line-height: 1;
    padding: 0 2px;
}

.mc-wiki-crafting-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mc-wiki-crafting-arrow img {
    width: 100px;
    height: auto;
    image-rendering: pixelated;
}

@media screen and (max-width: 1250px) {
    .mc-wiki-recipe-container {
        gap: 0px;
    }
}