/* Green Navigator global shell: professional search + desktop sidebar collapse. */

.gn-global-search {
    position: relative;
    width: min(320px, 30vw);
    flex: 0 1 320px;
}

.gn-global-search-field {
    display: flex;
    min-height: 40px;
    padding: 0 13px;
    align-items: center;
    gap: 9px;
    color: #536159;
    background: #ffffff;
    border: 1px solid #dfe6e1;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(29, 58, 36, 0.035);
    transition: border-color .16s ease, box-shadow .16s ease, background .16s ease;
}

.gn-global-search-field:focus-within {
    background: #ffffff;
    border-color: #b7cdbb;
    box-shadow: 0 0 0 3px rgba(47, 107, 61, .07), 0 5px 16px rgba(29, 58, 36, .05);
}

.gn-global-search-field svg {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.gn-global-search-field input {
    width: 100%;
    min-width: 0;
    min-height: 36px;
    padding: 0;
    color: #334039;
    background: transparent;
    border: 0;
    outline: 0;
    font: inherit;
    font-size: .78rem;
}

.gn-global-search-field input::placeholder {
    color: #9aa39c;
}

.gn-global-search-results {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: none;
    max-height: min(430px, 64vh);
    padding: 7px;
    overflow-y: auto;
    background: #ffffff;
    border: 1px solid #dde6df;
    border-radius: 13px;
    box-shadow: 0 18px 48px rgba(18, 46, 26, .16);
    z-index: 1200;
}

.gn-global-search.is-open .gn-global-search-results {
    display: block;
}

.gn-global-search-result {
    display: grid;
    min-height: 46px;
    padding: 7px 9px;
    grid-template-columns: 32px minmax(0, 1fr) 15px;
    align-items: center;
    gap: 9px;
    color: #334039;
    border-radius: 9px;
    text-decoration: none;
}

.gn-global-search-result:hover,
.gn-global-search-result.is-selected {
    color: #214f2d;
    background: #f2f7f3;
    text-decoration: none;
}

.gn-global-search-result-icon {
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    color: #2f6b3d;
    background: #edf6ef;
    border-radius: 8px;
}

.gn-global-search-result-icon svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.gn-global-search-result-copy {
    min-width: 0;
}

.gn-global-search-result-copy strong,
.gn-global-search-result-copy small {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.gn-global-search-result-copy strong {
    font-size: .75rem;
    font-weight: 760;
}

.gn-global-search-result-copy small {
    margin-top: 2px;
    color: #879189;
    font-size: .61rem;
}

.gn-global-search-result > svg {
    width: 14px;
    height: 14px;
    color: #9aa49c;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

.gn-global-search-empty {
    padding: 18px 10px;
    color: #7c8880;
    font-size: .72rem;
    text-align: center;
}

/* Desktop sidebar collapse: clean brand/header treatment. */
.app-sidebar.gn-sidebar-has-collapse {
    position: fixed;
    overflow-x: hidden;
}

.gn-sidebar-brand-row {
    position: relative;
    display: block;

    margin: 0 4px 18px;
    padding: 8px 0 18px;

    border-bottom: 1px solid #edf2ee;
}

.gn-sidebar-brand-row .sidebar-brand {
    min-width: 0;
    min-height: 56px;

    margin: 0;
    padding: 0 3px;

    border-bottom: 0;
}

.gn-sidebar-collapse {
    position: static;

    display: flex;

    width: 100%;
    min-height: 38px;

    margin: 8px 0 0;
    padding: 8px 10px;

    align-items: center;
    justify-content: flex-start;

    gap: 10px;

    color: #5c6b61;
    background: transparent;

    border: 1px solid transparent;
    border-radius: 8px;

    box-shadow: none;

    cursor: pointer;

    font: inherit;
    font-size: .74rem;
    font-weight: 750;

    transition:
        color .16s ease,
        background .16s ease,
        border-color .16s ease;
}

.gn-sidebar-collapse:hover,
.gn-sidebar-collapse:focus-visible {
    color: var(--gn-green-800, #214f2d);
    background: var(--gn-green-50, #f4f8f5);
    border-color: #dbe6dd;
}

.gn-sidebar-collapse:focus-visible {
    outline: 2px solid rgba(47, 107, 61, .14);
    outline-offset: 2px;
}

.gn-sidebar-collapse svg {
    width: 17px;
    height: 17px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.gn-sidebar-collapse-label {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (min-width: 981px) {
    body.gn-sidebar-collapsed .app-shell {
        grid-template-columns: 76px minmax(0, 1fr) !important;
    }

    body.gn-sidebar-collapsed .app-sidebar {
        width: 76px;
        padding-left: 10px;
        padding-right: 10px;
        overflow-x: hidden;
    }

    body.gn-sidebar-collapsed .gn-sidebar-brand-row {
        margin: 0 0 16px;
        padding: 7px 0 14px;
    }

    body.gn-sidebar-collapsed .gn-sidebar-brand-row .sidebar-brand {
        display: flex !important;

        width: 44px;
        min-width: 44px;
        min-height: 44px;

        margin: 0 auto;
        padding: 0;

        justify-content: center;
    }

    body.gn-sidebar-collapsed .gn-sidebar-brand-row .sidebar-brand-mark {
        width: 42px;
        height: 42px;

        flex: 0 0 42px;
    }

    body.gn-sidebar-collapsed .gn-sidebar-brand-row .sidebar-brand-copy {
        display: none !important;
    }

    body.gn-sidebar-collapsed .gn-sidebar-collapse {
        width: 46px;
        min-height: 40px;
        margin: 7px auto 0;
        padding: 8px;
        justify-content: center;
        gap: 0;
    }

    body.gn-sidebar-collapsed .gn-sidebar-collapse-label {
        display: none;
    }

    body.gn-sidebar-collapsed .sidebar-brand-copy,
    body.gn-sidebar-collapsed .sidebar-section-title,
    body.gn-sidebar-collapsed .sidebar-shortcut-card,
    body.gn-sidebar-collapsed .sidebar-user-copy,
    body.gn-sidebar-collapsed .sidebar-plan-shortcut-copy,
    body.gn-sidebar-collapsed .sidebar-plan-shortcut-badge {
        display: none !important;
    }

    body.gn-sidebar-collapsed .sidebar-primary-action {
        width: 46px;
        min-height: 46px;
        margin-left: auto;
        margin-right: auto;
        padding: 0;
        justify-content: center;
        gap: 0;
        font-size: 0;
    }

    body.gn-sidebar-collapsed .sidebar-primary-action-icon {
        width: 22px;
        height: 22px;
        flex-basis: 22px;
    }

    body.gn-sidebar-collapsed .sidebar-section {
        margin-bottom: 8px;
    }

    body.gn-sidebar-collapsed .sidebar-link {
        width: 46px;
        min-height: 44px;
        margin-left: auto;
        margin-right: auto;
        padding: 9px;
        justify-content: center;
        gap: 0;
        overflow: hidden;
        font-size: 0;
    }

    body.gn-sidebar-collapsed .sidebar-link::before {
        left: -4px;
    }

    body.gn-sidebar-collapsed .sidebar-icon {
        width: 24px;
        height: 24px;
        flex-basis: 24px;
    }

    body.gn-sidebar-collapsed .sidebar-plan-shortcut {
        display: flex;
        width: 46px;
        height: 46px;
        margin-left: auto;
        margin-right: auto;
        padding: 0;
        align-items: center;
        justify-content: center;
    }

    body.gn-sidebar-collapsed .sidebar-plan-shortcut-icon {
        width: 34px;
        height: 34px;
    }

    body.gn-sidebar-collapsed .sidebar-bottom {
        display: flex;
        width: 100%;
        min-width: 0;
        align-items: center;
        flex-direction: column;
    }

    body.gn-sidebar-collapsed .sidebar-help-link {
        width: 46px;
        min-width: 46px;
        margin-right: 0;
        margin-left: 0;
        padding: 8px;
        justify-content: center;
        gap: 0;
        overflow: hidden;
        font-size: 0;
    }

    body.gn-sidebar-collapsed .sidebar-help-link > span {
        flex: 0 0 25px;
        font-size: .78rem;
    }

    body.gn-sidebar-collapsed .sidebar-help-link small {
        display: none;
    }

    body.gn-sidebar-collapsed .sidebar-user-link {
        width: 46px;
    }

    body.gn-sidebar-collapsed .sidebar-user {
        padding-left: 5px;
        padding-right: 5px;
        justify-content: center;
    }

    body.gn-sidebar-collapsed .sidebar-logout {
        width: 46px;
        padding: 8px;
        justify-content: center;
        gap: 0;
        overflow: hidden;
        font-size: 0;
    }

    body.gn-sidebar-collapsed .sidebar-logout-form {
        width: 46px;
    }
}

@media (max-width: 1180px) {
    .gn-global-search {
        width: 250px;
        flex-basis: 250px;
    }
}

@media (max-width: 980px) {
    .gn-sidebar-collapse {
        display: none;
    }

    .gn-global-search {
        width: 42px;
        flex: 0 0 42px;
    }

    .gn-global-search-field {
        width: 42px;
        min-height: 38px;
        padding: 0;
        justify-content: center;
        cursor: pointer;
    }

    .gn-global-search-field input {
        display: none;
    }

    .gn-global-search-field svg {
        width: 19px;
        height: 19px;
    }

    .gn-global-search.is-open {
        position: fixed;
        inset: 0;
        width: auto;
        padding: 80px 14px 14px;
        background: rgba(17, 38, 23, .25);
        backdrop-filter: blur(4px);
        z-index: 1600;
    }

    .gn-global-search.is-open .gn-global-search-field {
        width: min(620px, 100%);
        min-height: 48px;
        margin: 0 auto;
        padding: 0 13px;
        justify-content: flex-start;
        background: #fff;
    }

    .gn-global-search.is-open .gn-global-search-field input {
        display: block;
        font-size: .84rem;
    }

    .gn-global-search.is-open .gn-global-search-results {
        position: relative;
        top: 7px;
        width: min(620px, 100%);
        margin: 0 auto;
        max-height: calc(100vh - 155px);
    }
}

@media (max-width: 620px) {
    .gn-global-search {
        width: 38px;
        flex-basis: 38px;
    }

    .gn-global-search-field {
        width: 38px;
        min-height: 36px;
    }
}
/* ============================================================
   GREEN NAVIGATOR — NATIVE TREE SIDEBAR
   Structure lives in base.html. CSS only controls presentation.
   ============================================================ */

.sidebar-tree {
    display: grid;
    gap: 4px;
    min-width: 0;
    margin: 0 0 18px;
}

.sidebar-tree-pinned {
    display: grid;
    gap: 2px;
    margin-bottom: 6px;
}

.sidebar-link--ai {
    margin-bottom: 2px;
}

.sidebar-tree-group {
    min-width: 0;
    margin: 0;
}

.sidebar-tree-summary {
    display: grid;
    width: 100%;
    min-height: 44px;

    margin: 1px 0;
    padding: 8px 10px;

    grid-template-columns: 25px minmax(0, 1fr) 18px;
    align-items: center;
    gap: 11px;

    color: #4a574f;
    background: transparent;

    border: 0;
    border-radius: 9px;

    list-style: none;

    font-size: 0.86rem;
    font-weight: 780;
    line-height: 1.2;

    cursor: pointer;

    transition:
        color 0.16s ease,
        background 0.16s ease,
        transform 0.16s ease;
}

.sidebar-tree-summary::-webkit-details-marker {
    display: none;
}

.sidebar-tree-summary::marker {
    content: "";
}

.sidebar-tree-summary:hover {
    color: var(--gn-green-800);
    background: var(--gn-green-50);
}

.sidebar-tree-group[open] > .sidebar-tree-summary,
.sidebar-tree-group.is-active > .sidebar-tree-summary {
    color: var(--gn-green-800);
}

.sidebar-tree-group[open] > .sidebar-tree-summary {
    background: #f7faf8;
}

.sidebar-tree-summary-icon {
    display: inline-flex;

    width: 25px;
    height: 25px;

    align-items: center;
    justify-content: center;

    color: currentColor;
}

.sidebar-tree-summary-icon svg,
.sidebar-tree-chevron svg {
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.sidebar-tree-summary-icon svg {
    width: 21px;
    height: 21px;
    stroke-width: 1.85;
}

.sidebar-tree-label {
    min-width: 0;

    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sidebar-tree-chevron {
    display: inline-flex;

    width: 18px;
    height: 18px;

    align-items: center;
    justify-content: center;

    color: #8b968f;

    transition: transform 0.18s ease;
}

.sidebar-tree-chevron svg {
    width: 16px;
    height: 16px;
    stroke-width: 2;
}

.sidebar-tree-group[open] > .sidebar-tree-summary .sidebar-tree-chevron {
    transform: rotate(90deg);
}

.sidebar-tree-children {
    position: relative;

    display: grid;
    gap: 1px;

    margin: 2px 0 7px 20px;
    padding: 1px 0 2px 14px;
}

.sidebar-tree-children::before {
    position: absolute;

    top: 3px;
    bottom: 4px;
    left: 0;

    width: 1px;

    content: "";

    background: #dce6de;
}

.sidebar-tree-children .sidebar-link {
    min-height: 39px;

    margin: 0;
    padding: 7px 8px;

    gap: 8px;

    border-radius: 8px;

    font-size: 0.80rem;
    font-weight: 690;
}

.sidebar-tree-children .sidebar-link::before {
    top: 8px;
    bottom: 8px;
}

.sidebar-tree-children .sidebar-icon {
    width: 20px;
    height: 20px;

    flex: 0 0 20px;
}

.sidebar-tree-children .sidebar-icon svg {
    width: 17px;
    height: 17px;
}

.sidebar-tree-link-label {
    min-width: 0;

    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sidebar-tree-children .sidebar-link.is-active::after {
    position: absolute;

    top: 50%;
    left: -15px;

    width: 7px;
    height: 7px;

    content: "";

    background: var(--gn-green-700);
    border: 2px solid #ffffff;
    border-radius: 999px;

    box-shadow: 0 0 0 1px #c9d9cc;

    transform: translate(-50%, -50%);
}

.sidebar-tree-context {
    margin: 7px 0 3px;
    padding: 8px;

    background: #fbfcfb;

    border: 1px solid #e3ebe5;
    border-radius: 9px;
}

.sidebar-tree-context-heading {
    display: flex;

    min-height: 30px;

    padding: 2px 4px 7px;

    align-items: center;
    gap: 8px;

    color: var(--gn-green-800);

    font-size: 0.74rem;
    font-weight: 900;

    border-bottom: 1px solid #e8eeea;
}

.sidebar-tree-context-icon {
    display: inline-flex;

    width: 18px;
    height: 18px;

    align-items: center;
    justify-content: center;

    flex: 0 0 18px;
}

.sidebar-tree-context-icon svg {
    width: 16px;
    height: 16px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.sidebar-tree-context .sidebar-shortcut-link {
    min-height: 34px;

    margin-top: 2px;
    padding: 6px 7px;

    font-size: 0.74rem;
}

@media (min-width: 981px) {
    body.gn-sidebar-collapsed .sidebar-tree {
        gap: 3px;
    }

    body.gn-sidebar-collapsed .sidebar-tree-pinned {
        gap: 3px;
        margin-bottom: 4px;
    }

    body.gn-sidebar-collapsed .sidebar-tree-summary {
        display: flex;

        width: 46px;
        min-height: 44px;

        margin-left: auto;
        margin-right: auto;
        padding: 9px;

        align-items: center;
        justify-content: center;

        border-radius: 9px;
    }

    body.gn-sidebar-collapsed .sidebar-tree-label,
    body.gn-sidebar-collapsed .sidebar-tree-chevron,
    body.gn-sidebar-collapsed .sidebar-tree-children {
        display: none !important;
    }

    body.gn-sidebar-collapsed .sidebar-tree-summary-icon {
        width: 24px;
        height: 24px;
    }

    body.gn-sidebar-collapsed .sidebar-tree-summary-icon svg {
        width: 20px;
        height: 20px;
    }

    body.gn-sidebar-collapsed .sidebar-tree-link-label {
        display: none !important;
    }
}

@media (max-width: 980px) {
    .sidebar-tree {
        gap: 3px;
        margin-bottom: 18px;
    }

    .sidebar-tree-summary {
        min-height: 48px;
        padding: 10px 11px;

        grid-template-columns: 25px minmax(0, 1fr) 20px;

        font-size: 0.93rem;
    }

    .sidebar-tree-children {
        margin-left: 21px;
        padding-left: 15px;
    }

    .sidebar-tree-children .sidebar-link {
        min-height: 44px;

        padding-top: 9px;
        padding-bottom: 9px;

        font-size: 0.87rem;
    }

    .sidebar-tree-context {
        margin-right: 2px;
    }
}
/* ============================================================
   WORKSPACE -> GREENHOUSES NESTED TREE
   ============================================================ */

.sidebar-tree-subgroup {
    min-width: 0;
    margin: 0;
}

.sidebar-tree-subsummary {
    display: grid;
    width: 100%;
    min-height: 39px;

    margin: 0;
    padding: 7px 8px;

    grid-template-columns: 20px minmax(0, 1fr) auto 16px;
    align-items: center;
    gap: 8px;

    color: #455149;
    background: transparent;

    border: 0;
    border-radius: 8px;

    list-style: none;

    font-size: 0.80rem;
    font-weight: 720;
    line-height: 1.2;

    cursor: pointer;

    transition:
        color 0.16s ease,
        background 0.16s ease;
}

.sidebar-tree-subsummary::-webkit-details-marker {
    display: none;
}

.sidebar-tree-subsummary::marker {
    content: "";
}

.sidebar-tree-subsummary:hover,
.sidebar-tree-subgroup[open] > .sidebar-tree-subsummary,
.sidebar-tree-subgroup.is-active > .sidebar-tree-subsummary {
    color: var(--gn-green-800);
    background: #f4f8f5;
}

.sidebar-tree-subsummary-icon {
    display: inline-flex;
    width: 20px;
    height: 20px;

    align-items: center;
    justify-content: center;

    color: currentColor;
}

.sidebar-tree-subsummary-icon svg,
.sidebar-tree-subsummary-chevron svg {
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.sidebar-tree-subsummary-icon svg {
    width: 17px;
    height: 17px;
    stroke-width: 1.8;
}

.sidebar-tree-subsummary-label {
    min-width: 0;

    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sidebar-tree-subsummary-context {
    max-width: 58px;

    padding: 2px 6px;

    overflow: hidden;

    color: var(--gn-green-800);
    background: #eaf4ec;

    border: 1px solid #d8e9dc;
    border-radius: 999px;

    font-size: 0.62rem;
    font-weight: 850;

    text-overflow: ellipsis;
    white-space: nowrap;
}

.sidebar-tree-subsummary-chevron {
    display: inline-flex;
    width: 16px;
    height: 16px;

    align-items: center;
    justify-content: center;

    color: #8b968f;

    transition: transform 0.18s ease;
}

.sidebar-tree-subsummary-chevron svg {
    width: 14px;
    height: 14px;
    stroke-width: 2;
}

.sidebar-tree-subgroup[open] > .sidebar-tree-subsummary .sidebar-tree-subsummary-chevron {
    transform: rotate(90deg);
}

.sidebar-tree-subchildren {
    position: relative;

    display: grid;
    gap: 1px;

    margin: 2px 0 6px 14px;
    padding: 2px 0 2px 13px;
}

.sidebar-tree-subchildren::before {
    position: absolute;

    top: 3px;
    bottom: 4px;
    left: 0;

    width: 1px;

    content: "";

    background: #dfe8e1;
}

.sidebar-tree-subchildren .sidebar-link--nested,
.sidebar-tree-nested-disabled {
    min-height: 35px;

    margin: 0;
    padding: 6px 7px;

    gap: 8px;

    border-radius: 7px;

    font-size: 0.74rem;
}

.sidebar-tree-subchildren .sidebar-link--nested {
    font-weight: 680;
}

.sidebar-tree-subchildren .sidebar-link--nested .sidebar-icon,
.sidebar-tree-nested-disabled .sidebar-icon {
    width: 18px;
    height: 18px;

    flex: 0 0 18px;
}

.sidebar-tree-subchildren .sidebar-link--nested .sidebar-icon svg,
.sidebar-tree-nested-disabled .sidebar-icon svg {
    width: 15px;
    height: 15px;
}

.sidebar-tree-subchildren .sidebar-link--nested.is-active::after {
    left: -13px;
}

.sidebar-tree-nested-disabled {
    display: flex;

    align-items: center;

    color: #9aa49d;

    cursor: default;

    opacity: 0.78;
}

@media (min-width: 981px) {
    body.gn-sidebar-collapsed .sidebar-tree-subgroup {
        display: none !important;
    }
}

@media (max-width: 980px) {
    .sidebar-tree-subsummary {
        min-height: 44px;
        padding-top: 9px;
        padding-bottom: 9px;

        font-size: 0.87rem;
    }

    .sidebar-tree-subchildren .sidebar-link--nested,
    .sidebar-tree-nested-disabled {
        min-height: 41px;

        padding-top: 8px;
        padding-bottom: 8px;

        font-size: 0.82rem;
    }
}
/* ============================================================
   GREENHOUSE NAVIGATION — INTUITIVE SELECTED-CONTEXT STATES
   ============================================================ */

.sidebar-link--greenhouse-home {
    margin-bottom: 4px !important;
}

.sidebar-greenhouse-context {
    display: grid;

    margin: 5px 0 4px;
    padding: 8px 8px;

    grid-template-columns: 26px minmax(0, 1fr);
    align-items: center;
    gap: 8px;

    color: var(--gn-green-800);
    background: #f7faf8;

    border: 1px solid #e1eae3;
    border-radius: 8px;
}

.sidebar-greenhouse-context-icon {
    display: inline-flex;

    width: 26px;
    height: 26px;

    align-items: center;
    justify-content: center;

    color: var(--gn-green-700);
    background: var(--gn-green-100);

    border-radius: 7px;
}

.sidebar-greenhouse-context-icon svg {
    width: 16px;
    height: 16px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.sidebar-greenhouse-context-copy {
    min-width: 0;
}

.sidebar-greenhouse-context-copy strong,
.sidebar-greenhouse-context-copy span {
    display: block;

    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sidebar-greenhouse-context-copy strong {
    font-size: .72rem;
    font-weight: 900;
    line-height: 1.15;
}

.sidebar-greenhouse-context-copy span {
    margin-top: 2px;

    color: #718078;

    font-size: .64rem;
    font-weight: 680;
    line-height: 1.15;
}

.sidebar-greenhouse-select-hint {
    display: grid;

    margin: 5px 1px 3px;
    padding: 9px 8px;

    grid-template-columns: 20px minmax(0, 1fr);
    gap: 8px;
    align-items: start;

    color: #7b867f;
    background: #f8faf8;

    border: 1px dashed #dce6de;
    border-radius: 8px;

    font-size: .67rem;
    font-weight: 650;
    line-height: 1.35;
}

.sidebar-greenhouse-select-hint-icon {
    display: inline-flex;

    width: 20px;
    height: 20px;

    align-items: center;
    justify-content: center;

    color: #7b9480;
}

.sidebar-greenhouse-select-hint-icon svg {
    width: 16px;
    height: 16px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (max-width: 980px) {
    .sidebar-greenhouse-context {
        padding-top: 9px;
        padding-bottom: 9px;
    }

    .sidebar-greenhouse-select-hint {
        padding-top: 10px;
        padding-bottom: 10px;

        font-size: .75rem;
    }
}

.gn-beta-badge{
    display:inline-flex;
    margin-left:5px;
    padding:2px 5px;
    border-radius:999px;
    background:#e2f2e5;
    color:#347243;
    font-size:.55rem;
    font-weight:900;
    letter-spacing:.06em;
    text-transform:uppercase;
    vertical-align:middle;
}

.sidebar-help-link{
    display:flex;
    align-items:center;
    gap:9px;
    min-height:42px;
    margin:0 2px 10px;
    padding:8px 10px;
    border:1px solid #dfe8e1;
    border-radius:10px;
    color:#35513d;
    background:#f8fbf9;
    font-size:.82rem;
    font-weight:800;
    text-decoration:none;
}

.sidebar-help-link>span{
    display:grid;
    place-items:center;
    width:25px;
    height:25px;
    border-radius:8px;
    color:#fff;
    background:#3d7b4b;
}

.sidebar-help-link small{
    margin-left:auto;
    padding:2px 5px;
    border-radius:999px;
    color:#356c42;
    background:#e3f2e6;
    font-size:.55rem;
    text-transform:uppercase;
}

.sidebar-help-link:hover,
.sidebar-help-link.is-active{
    border-color:#91b69a;
    background:#edf6ef;
    text-decoration:none;
}
