/* crafting.css */

/* ── 제조 카드 ── */
.crafting-card__info {
    width: 200px;
    height: 200px;
    background-image: url("../images/crafting/bg_lapine.png");
    background-repeat: no-repeat;
    background-position: center center;
    float: left;
}

.crafting-card__details {
    text-align: center;
    margin-top: 22%;
}

.crafting-card__item-frame {
    width: 46px;
    height: 46px;
    margin: 20% auto 0;
    border: 1px solid rgba(132, 148, 206, 1);
    border-radius: 6px;
}

.crafting-card__item-box {
    width: 40px;
    height: 40px;
    border: 3px solid transparent;
    border-radius: 5px;
    background-image: linear-gradient(#fff, #fff), linear-gradient(to bottom, #94bdef 0%, #f7ffff 100%);
    background-origin: border-box;
    background-clip: content-box, border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.crafting-card__item-box::before {
    content: " ";
    position: absolute;
    bottom: 3px;
    height: 10px;
    width: 24px;
    background-color: rgba(182, 199, 234, 0.5);
    border-radius: 100%;
    display: block;
    z-index: 0;
}

.crafting-card__item-box img {
    margin: auto;
    width: 24px;
    height: 24px;
    z-index: 1;
}

.crafting-card__result-name {
    font-weight: 300;
    display: block;
    color: rgba(82, 123, 206, 1);
}

.crafting-card__skill-name {
    color: rgba(66, 74, 132, 1);
}

/* ── 재료 영역 ── */
.crafting-card__materials {
    background-color: rgba(247, 247, 255, 1);
    border-left: 1px dashed rgba(128, 128, 128, 0.5);
    display: flex;
    height: 220px;
}

.crafting-card__materials-table {
    height: 24px;
}

.crafting-card__materials-table tr td:nth-child(1) {
    width: 24px;
    height: 26px;
}

.crafting-card__materials-table tr td:nth-child(2) {
    width: 105px;
}

.crafting-card__materials-table tr td:nth-child(3) {
    width: 35px;
    text-align: right;
}

.crafting-card__item-quantity {
    position: absolute;
    right: 0;
    bottom: -2px;
    z-index: 2;
    text-shadow: 1px 1px 1px #fff;
    color: black;
    font-size: 11px;
}
