body.crafting-page {
    background-color: #f7f1dc;
    background-image:
        linear-gradient(180deg, rgba(255, 251, 236, 0.84), rgba(244, 233, 204, 0.94)),
        url("../images/bg_sky_large.png");
    background-size: cover;
    color: #2f2616;
}

body.crafting-page main {
    align-items: stretch;
    text-align: left;
    gap: 2rem;
}

body.crafting-page *,
body.crafting-page *::before,
body.crafting-page *::after {
    box-sizing: border-box;
}

.crafting-shell {
    width: min(1220px, calc(100% - 2rem));
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

#recipe-browser,
#crafting-overview,
#material-hotspots-section {
    scroll-margin-top: 90px;
}

.crafting-hero,
.crafting-panel,
.crafting-stats-strip {
    border: 3px solid #c79a47;
    box-shadow: 0 10px 0 rgba(108, 71, 15, 0.15);
}

.crafting-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.9fr) minmax(290px, 1fr);
    gap: 1.5rem;
    background:
        linear-gradient(135deg, rgba(255, 247, 220, 0.97), rgba(255, 237, 187, 0.96)),
        url("../images/paper_texture.png");
    border-radius: 28px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.crafting-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.6), transparent 32%),
        radial-gradient(circle at bottom left, rgba(140, 182, 61, 0.16), transparent 28%);
    pointer-events: none;
}

.crafting-hero-copy,
.crafting-hero-card {
    position: relative;
    z-index: 1;
}

.crafting-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff8dc;
    border: 2px solid #d4a95f;
    color: #a95f0b;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.crafting-hero h1 {
    font-family: "Trebuchet MS", "Verdana", sans-serif;
    font-size: clamp(2.25rem, 4.8vw, 3.8rem);
    line-height: 1.03;
    color: #cf6d09;
    text-shadow: 3px 3px 0 #fff7de, 6px 6px 0 rgba(92, 54, 7, 0.12);
    margin-bottom: 1rem;
}

.crafting-hero p,
.panel-title-row p,
.overview-card p,
.hero-checklist li,
.detail-description,
.detail-callout p,
.source-note-card p,
.source-missing,
.requirement-source-empty,
.source-more,
.recipe-result-footer,
.special-list li {
    color: #5f4f35;
}

.crafting-anchor-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.crafting-anchor-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.1rem;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 800;
    color: #5f3a07;
    background: linear-gradient(180deg, #fffef6, #f8df94);
    border: 2px solid #ddb75a;
    box-shadow: 0 4px 0 rgba(153, 106, 17, 0.18);
}

.crafting-hero-card,
.crafting-panel,
.recipe-detail-panel {
    background:
        linear-gradient(180deg, rgba(255, 252, 240, 0.98), rgba(247, 239, 219, 0.98)),
        url("../images/paper_texture.png");
    border-radius: 24px;
}

.crafting-hero-card {
    padding: 1.2rem;
    align-self: center;
}

.hero-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 900;
    color: #3f5f2b;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.hero-card-header img {
    width: 24px;
    height: 24px;
}

.hero-checklist {
    padding-left: 1.2rem;
    display: grid;
    gap: 0.75rem;
}

.crafting-panel {
    padding: 1.5rem;
}

.panel-title-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: end;
    margin-bottom: 1.2rem;
}

.panel-title-row h2 {
    color: #2f2616;
    font-size: clamp(1.7rem, 2.8vw, 2.2rem);
}

.crafting-controls {
    display: grid;
    grid-template-columns: minmax(260px, 1.8fr) repeat(5, minmax(140px, 1fr));
    gap: 0.85rem;
}

.crafting-quick-filter-bar,
.crafting-filter-status,
.crafting-active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.crafting-quick-filter-bar {
    margin-bottom: 1rem;
}

.quick-filter-pill,
.active-filter-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 800;
    line-height: 1;
}

.quick-filter-pill {
    border: 2px solid #e1c36a;
    background: linear-gradient(180deg, #fffef8, #f7e4a8);
    color: #73480f;
    padding: 0.8rem 1rem;
    cursor: pointer;
    transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.quick-filter-pill:hover,
.quick-filter-pill:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(129, 91, 24, 0.14);
    border-color: #c88916;
    outline: none;
}

.quick-filter-pill.is-active {
    background: linear-gradient(180deg, #ffd996, #f3b24d);
    border-color: #ca7a15;
    color: #5f3300;
    box-shadow: 0 0 0 3px rgba(236, 170, 63, 0.2);
}

.quick-filter-pill:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.crafting-search {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    border: 2px solid #e1c36a;
    background: #fffdf4;
    border-radius: 18px;
    padding: 0 1rem;
}

.crafting-search i {
    color: #b96d10;
}

.crafting-search input,
.crafting-select {
    border: 2px solid #e1c36a;
    background: #fffdf4;
    border-radius: 18px;
    padding: 0.95rem 1rem;
    font-size: 0.95rem;
    color: #42331d;
}

.crafting-search input {
    border: 0;
    width: 100%;
    padding-left: 0;
    outline: none;
    background: transparent;
}

.crafting-results-bar,
.crafting-pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.crafting-results-bar {
    margin-top: 1rem;
}

.crafting-filter-status {
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 0.9rem;
}

.crafting-filter-help {
    flex: 1 1 280px;
    color: #6d5936;
    font-size: 0.92rem;
    line-height: 1.5;
    background: rgba(255, 252, 241, 0.76);
    border: 1px dashed #dfbe72;
    border-radius: 16px;
    padding: 0.8rem 0.9rem;
}

.crafting-active-filters {
    flex: 1 1 260px;
    justify-content: flex-end;
}

.active-filter-chip {
    background: #fff5d4;
    border: 1px solid #e1c36a;
    color: #80570f;
    padding: 0.45rem 0.75rem;
    font-size: 0.78rem;
}

.active-filter-chip.is-subtle {
    background: #f9edc5;
    color: #6e5424;
}

.active-filter-empty {
    color: #866e42;
    font-size: 0.85rem;
    align-self: center;
}

.recipe-browser-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.24fr) minmax(350px, 0.96fr);
    gap: 1.15rem;
    margin-top: 1.15rem;
    align-items: start;
}

.recipe-results-column,
.detail-scroll {
    min-width: 0;
}

.recipe-results-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.crafting-recipes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 1rem;
}

.recipe-result-card {
    border: 2px solid #e1be68;
    border-radius: 22px;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.72), transparent 34%),
        linear-gradient(180deg, #fffaf0, #fcedc2);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    text-align: left;
    cursor: pointer;
    transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
    color: inherit;
    font: inherit;
    appearance: none;
}

.recipe-result-card:hover,
.recipe-result-card:focus-visible {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(129, 91, 24, 0.13);
    border-color: #c88916;
    outline: none;
}

.recipe-result-card.is-active {
    border-color: #cc6d0a;
    box-shadow: 0 0 0 4px rgba(236, 170, 63, 0.24), 0 12px 28px rgba(112, 69, 12, 0.16);
}

.recipe-result-card::after {
    content: "";
    display: block;
    height: 6px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(202, 122, 21, 0.14), rgba(202, 122, 21, 0.5));
}

.recipe-result-top,
.recipe-result-header,
.recipe-title-row,
.recipe-header,
.detail-header,
.requirement-header,
.material-card-top {
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
}

.recipe-result-top {
    justify-content: space-between;
}

.recipe-result-copy,
.detail-header-copy,
.requirement-copy {
    min-width: 0;
    flex: 1;
}

.recipe-result-overline,
.detail-overline,
.recipe-preview-label,
.detail-callout-title,
.detail-section-title-row span,
.acquisition-label,
.source-note-label,
.requirement-type,
.recipe-section-title {
    font-size: 0.74rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: #8a5f10;
}

.recipe-result-copy h3,
.detail-header-copy h3,
.requirement-copy h4,
.recipe-title-row h3 {
    color: #2d2617;
    line-height: 1.2;
    margin: 0;
    overflow-wrap: anywhere;
}

.recipe-result-copy h3 {
    font-size: 1.05rem;
}

.detail-header-copy h3 {
    font-size: 1.55rem;
}

.requirement-copy h4 {
    font-size: 1rem;
}

.recipe-id {
    font-size: 0.78rem;
    color: #8a7550;
    overflow-wrap: anywhere;
}

.recipe-result-output {
    min-width: 56px;
    text-align: center;
    border-radius: 16px;
    background: linear-gradient(180deg, #ffefbc, #f4d06f);
    color: #845408;
    font-weight: 900;
    padding: 0.7rem 0.8rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.recipe-result-pill-row,
.material-meta,
.detail-pill-row,
.recipe-badges,
.source-chip-row,
.recipe-preview-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.material-pill,
.recipe-badge,
.source-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    border-radius: 999px;
    padding: 0.32rem 0.7rem;
    font-size: 0.77rem;
    font-weight: 800;
}

.recipe-badge,
.source-chip {
    background: #ffefbc;
    color: #845408;
}

.ingredient-preview-chip,
.source-ingredient-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 16px;
    padding: 0.38rem 0.65rem 0.38rem 0.4rem;
    background: linear-gradient(180deg, #fffaf0, #ffe7a7);
    border: 1px solid #dfbd67;
    color: #6a4910;
    max-width: 100%;
}

.ingredient-preview-chip.is-more {
    background: #f5e1a0;
    border-radius: 999px;
    padding: 0.32rem 0.7rem;
}

.recipe-preview-block {
    background: rgba(255, 255, 255, 0.56);
    border: 1px dashed #dfbe72;
    border-radius: 16px;
    padding: 0.8rem;
    display: grid;
    gap: 0.55rem;
}

.recipe-result-footer {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.84rem;
    font-weight: 700;
}

.recipe-result-footer span:last-child {
    color: #a35b07;
}

.recipe-detail-panel {
    border: 2px solid #dfb965;
    position: sticky;
    top: 96px;
    align-self: start;
    min-width: 0;
    overflow: hidden;
}

.detail-scroll {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.25rem;
    max-height: calc(100vh - 120px);
    overflow: auto;
}

.detail-description {
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid #ead190;
    border-radius: 16px;
    padding: 0.95rem 1rem;
    line-height: 1.6;
    overflow-wrap: anywhere;
}

.detail-summary-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
}

.detail-summary-tile {
    background: linear-gradient(180deg, #fff8e7, #ffefc2);
    border: 2px solid #e2c062;
    border-radius: 18px;
    padding: 0.85rem 0.95rem;
}

.detail-summary-tile span {
    display: block;
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #7b693e;
    margin-bottom: 0.3rem;
}

.detail-summary-tile strong {
    color: #cf6d09;
    font-size: 1rem;
}

.detail-section {
    display: grid;
    gap: 0.8rem;
}

.detail-section-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.8rem;
}

.detail-section-title-row h3 {
    margin: 0;
    color: #2d2617;
    font-size: 1.15rem;
}

.detail-callout {
    background: linear-gradient(180deg, #fff8e9, #f7ebc7);
    border: 1px dashed #dcb866;
    border-radius: 16px;
    padding: 0.9rem 1rem;
    display: grid;
    gap: 0.35rem;
}

.detail-callout p,
.source-note-card p {
    margin: 0;
    line-height: 1.55;
}

.requirement-list,
.reward-list,
.special-list {
    display: grid;
    gap: 0.8rem;
}

.requirement-card {
    background: linear-gradient(180deg, rgba(255, 252, 242, 0.95), rgba(250, 240, 212, 0.95));
    border: 2px solid #e5c979;
    border-radius: 18px;
    padding: 0.95rem;
    display: grid;
    gap: 0.85rem;
    box-shadow: 0 4px 12px rgba(116, 86, 33, 0.06);
}

.requirement-meta-row,
.ingredient-topline,
.reward-topline {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    align-items: center;
    margin-bottom: 0.25rem;
}

.requirement-count,
.reward-prob,
.ingredient-count {
    font-size: 0.82rem;
    color: #7a653d;
    font-weight: 800;
}

.requirement-source-shell,
.acquisition-block,
.source-note-stack {
    display: grid;
    gap: 0.65rem;
}

.source-note-card {
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid #e4cf9a;
    border-radius: 14px;
    padding: 0.8rem 0.85rem;
}

.source-route-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 0.7rem;
}

.source-route-card {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid #e1c887;
    border-radius: 14px;
    padding: 0.75rem 0.8rem;
    display: grid;
    gap: 0.2rem;
}

.source-route-card strong {
    color: #2d2617;
}

.source-route-card span {
    color: #6a5838;
    font-size: 0.82rem;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.source-craft-top {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.source-craft-top strong {
    color: #2d2617;
    display: block;
    line-height: 1.3;
}

.source-ingredient-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.requirement-source-empty,
.source-more {
    font-size: 0.84rem;
}

.detail-empty-state {
    min-height: 260px;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 2rem 1.5rem;
    gap: 0.75rem;
}

.detail-empty-icon {
    width: 64px;
    height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: linear-gradient(180deg, #ffefbc, #f4d06f);
    color: #a75e0e;
    font-size: 1.4rem;
}

.detail-empty-state h3 {
    margin: 0;
    color: #2d2617;
}

.detail-empty-state p,
.detail-empty-inline {
    color: #6a5838;
}

.crafting-stats-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    background: linear-gradient(180deg, #fff6d8, #f7e6ab);
    border-radius: 22px;
    padding: 1rem;
}

.crafting-stat-tile {
    background: rgba(255, 255, 255, 0.7);
    border: 2px solid #e2c062;
    border-radius: 18px;
    padding: 1rem;
    text-align: center;
}

.crafting-stat-tile .stat-label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #78633e;
    margin-bottom: 0.35rem;
}

.crafting-stat-tile strong {
    font-size: 1.8rem;
    color: #cf6d09;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}

.overview-card {
    background: linear-gradient(180deg, #fff9e8, #fff2c7);
    border: 2px solid #e4c06f;
    border-radius: 20px;
    padding: 1.25rem;
}

.overview-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffefb5;
    color: #c66b0d;
    font-size: 1.2rem;
    margin-bottom: 0.85rem;
}

.material-hotspots {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1rem;
}

.material-card {
    background: linear-gradient(180deg, #fff9eb, #fdf1cb);
    border: 2px solid #e5c979;
    border-radius: 18px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    box-shadow: 0 4px 12px rgba(116, 86, 33, 0.06);
}

.material-card strong {
    color: #3b2e1a;
}

.material-pill {
    background: #f9e4a4;
    color: #7c560d;
}

.material-jump {
    border: 0;
    background: linear-gradient(180deg, #8cb63d, #6d9428);
    color: #fff;
    border-radius: 12px;
    padding: 0.75rem 0.9rem;
    font-weight: 800;
    cursor: pointer;
}

.material-card-icon,
.recipe-icon,
.ingredient-icon,
.reward-icon,
.detail-icon,
.ingredient-preview-icon,
.source-ingredient-icon,
.source-crafted-icon {
    width: 52px;
    height: 52px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.82);
    border: 2px solid #ead08c;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.detail-icon {
    width: 68px;
    height: 68px;
    border-radius: 18px;
}

.ingredient-preview-icon,
.source-ingredient-icon,
.source-crafted-icon {
    width: 34px;
    height: 34px;
    border-radius: 12px;
}

.material-card-icon img,
.recipe-icon img,
.ingredient-icon img,
.reward-icon img,
.detail-icon img,
.ingredient-preview-icon img,
.source-ingredient-icon img,
.source-crafted-icon img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.detail-icon img {
    width: 42px;
    height: 42px;
}

.ingredient-preview-icon img,
.source-ingredient-icon img,
.source-crafted-icon img {
    width: 22px;
    height: 22px;
}

.ingredient-preview-name {
    min-width: 0;
    overflow-wrap: anywhere;
}

.ingredient-preview-count,
.requirement-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.2rem 0.55rem;
    background: rgba(255, 252, 237, 0.88);
    border: 1px solid #e0bd64;
    color: #7a560f;
}

.job-all-class {
    background: #f4e7b2;
    color: #775814;
}

.job-warrior {
    background: #ffd8bb;
    color: #8a4200;
}

.job-magician {
    background: #dde5ff;
    color: #3048a3;
}

.job-bowman {
    background: #d8efc2;
    color: #39611c;
}

.job-thief {
    background: #e6dcff;
    color: #573398;
}

.job-pirate {
    background: #ffd9d8;
    color: #8c3836;
}

.crafting-loading,
.crafting-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 2rem;
    border: 2px dashed #dbbd6d;
    border-radius: 20px;
    background: rgba(255, 250, 232, 0.85);
    color: #7a653d;
}

@media (max-width: 1200px) {
    .recipe-browser-layout {
        grid-template-columns: 1fr;
    }

    .recipe-detail-panel {
        position: static;
    }

    .detail-scroll {
        max-height: none;
    }
}

@media (max-width: 1100px) {
    .crafting-hero {
        grid-template-columns: 1fr;
    }

    .crafting-controls {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .crafting-stats-strip,
    .detail-summary-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .crafting-shell {
        width: min(100%, calc(100% - 1rem));
    }

    .panel-title-row,
    .crafting-results-bar,
    .crafting-pagination,
    .recipe-result-footer,
    .detail-section-title-row,
    .requirement-meta-row,
    .reward-topline,
    .source-craft-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .crafting-controls,
    .crafting-stats-strip,
    .detail-summary-grid,
    .crafting-recipes {
        grid-template-columns: 1fr;
    }

    .crafting-filter-status {
        flex-direction: column;
    }

    .crafting-active-filters {
        justify-content: flex-start;
    }

    .recipe-result-top {
        flex-direction: column;
    }

    .crafting-panel,
    .crafting-hero {
        padding: 1rem;
    }

    .crafting-anchor-row {
        flex-direction: column;
    }

    .crafting-anchor-btn {
        width: 100%;
    }

    .crafting-search input,
    .crafting-select,
    .quick-filter-pill,
    .material-jump {
        min-height: 48px;
    }

    .detail-scroll {
        padding: 1rem;
    }

    .source-route-grid {
        grid-template-columns: 1fr;
    }

    .detail-header,
    .requirement-header,
    .material-card-top {
        flex-direction: row;
    }

    .detail-icon {
        width: 58px;
        height: 58px;
    }

    .recipe-preview-list,
    .source-ingredient-list {
        gap: 0.4rem;
    }
}

@media (max-width: 560px) {
    .crafting-shell {
        width: calc(100% - 0.75rem);
    }

    .crafting-hero h1 {
        font-size: 2rem;
    }

    .crafting-kicker,
    .recipe-result-overline,
    .detail-overline,
    .recipe-preview-label,
    .detail-callout-title,
    .detail-section-title-row span,
    .acquisition-label,
    .source-note-label,
    .requirement-type,
    .recipe-section-title {
        letter-spacing: 0.05em;
    }

    .crafting-results-bar,
    .crafting-pagination,
    .recipe-result-footer,
    .detail-section-title-row,
    .requirement-meta-row,
    .reward-topline {
        gap: 0.55rem;
    }

    .crafting-quick-filter-bar {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .recipe-result-card,
    .requirement-card,
    .material-card,
    .overview-card {
        padding: 0.9rem;
    }

    .recipe-result-output {
        align-self: flex-start;
    }

    .detail-empty-state {
        min-height: 220px;
        padding: 1.35rem 1rem;
    }
}
