/** Main **/

#inv-crafting {
    display: none;

    flex: 1;
    flex-direction: row;
    gap: 4px;

    overflow: scroll;
}

#inv-crafting img {
    filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.35));
}

#inv-crafting-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 4px;

    overflow: scroll;
}

#inv-crafting-list .hint {
    margin-top: 6px;
}

.inv-crafting-section {
    flex: 0.5;
    display: flex;
    flex-direction: column;
    gap: 4px;

    padding: 4px;

    background-color: rgba(0, 0, 0, 0.15);
    border: 1px solid #cccccc;
    box-shadow: 2px 2px 1px rgba(0, 0, 0, 0.1);

    overflow: auto;
}

#inv-crafting-search {
    width: 100%;
    box-sizing: border-box;
}


/** Recipe Listing **/

.inv-crafting-listing {
    display: flex;
    flex-direction: row;
    justify-content: normal;
    gap: 4px;

    padding: 8px;

    background-color: rgba(255, 255, 255, 0.2);

    user-select: none;
}

.inv-crafting-listing:hover {
    background-color: rgba(255, 255, 255, 0.16);
}

.inv-crafting-listing-selected {
    border: 2px solid #cccccc;
}

.inv-crafting-listing-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.inv-crafting-listing p {
    margin: 0;
    color: white;
}

.inv-crafting-listing-category {
    opacity: 0.8;
    font-style: italic;
    font-size: 12px;
}

.inv-crafting-listing img {
    width: 48px;
    height: 48px;

    image-rendering: auto;
}

.inv-crafting-listing-recipe {
    flex: 1;

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 4px;
    justify-content: end;
}

.inv-crafting-listing-ingredient {
    position: relative;
}

.inv-crafting-listing-ingredient img {
    width: 32px;
    height: auto;
}

.inv-crafting-listing-ingredient p {
    position: absolute;
    right: -4px;
    bottom: -4px;
}


/** Recipe Details **/

#inv-crafting-right {
    color: white;

    user-select: none;
}

#inv-crafting-details {
    flex: 1;

    display: flex;
    flex-direction: column;

    height: 100%;
    box-sizing: border-box;
}

#inv-crafting-details-inner {
    flex: 1;

    padding: 8px;
}

#inv-crafting-details .ui-header .input {
    width: 3rem;
}

#inv-crafting-right p {
    margin: 0;
}

#inv-crafting-right .hint {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

#inv-crafting-details-inner .inv-crafting-listing-category {
    margin-bottom: 12px;
}

.inv-crafting-details-description {
    font-size: 14px;
}

.inv-crafting-details-ingredient {
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
}

.inv-crafting-details-ingredient img {
    width: 42px;
    height: auto;

    image-rendering: auto;
}