.crafting-grid {
    display: grid;
    grid-template-columns: repeat(3, 50px);
    grid-gap: 5px;
    padding: 10px;
    border: 2px solid #000;
}
.slot {
    width: 50px;
    height: 50px;
    border: 1px solid #aaa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    text-align: center;
}
.arrow {
    font-size: 24px;
    margin: 0 20px;
}
.result {
    width: 50px;
    height: 50px;
    border: 1px solid #aaa;
    display: flex;
    align-items: center;
    justify-content: center;
}
.container {
    display: flex;
    align-items: center;
}
