html:has(.gs-garden-main),
body:has(.gs-garden-main) {
    padding-top: 0;
    overscroll-behavior: none;
}

body:has(.gs-garden-main) #gsCoachBar {
    display: none;
}

.gs-garden-main {
    --gs-nav-h: 68px;
    padding: var(--gs-nav-h) 0 0;
    background: #06282a;
}

#gsGardenViewport {
    position: relative;
    width: 100%;
    height: calc(100vh - var(--gs-nav-h));
    height: calc(100dvh - var(--gs-nav-h));
    overflow: hidden;
}

#gsGardenViewport:fullscreen,
#gsGardenViewport:-webkit-full-screen {
    width: 100%;
    height: 100vh;
    height: 100dvh;
}

#gsGardenCanvas {
    position: absolute;
    inset: 0;
}

#gsGardenCanvas canvas {
    display: block;
    width: 100%;
    height: 100%;
    touch-action: none;
}

#gsGardenVeil {
    position: absolute;
    inset: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, rgba(1, 57, 62, 0.92), rgba(12, 74, 69, 0.92));
    color: #fff;
    transition: opacity .5s ease;
}

#gsGardenVeil.gs-veil-done {
    opacity: 0;
    pointer-events: none;
}

.gs-overlay {
    position: absolute;
    z-index: 10;
}

#gsTopUi {
    position: absolute;
    z-index: 10;
    top: .75rem;
    left: .75rem;
    right: .75rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, auto) minmax(0, 1fr) auto;
    align-items: start;
    gap: .5rem;
    pointer-events: none;
}

#gsTopUi > * {
    pointer-events: auto;
    min-width: 0;
}

#gsTopUi > .gs-overlay {
    position: static;
}

#gsTopUi > .gs-compass {
    grid-row: 1;
    grid-column: 1;
    justify-self: start;
}

#gsTopUi > .gs-timeline {
    grid-row: 1;
    grid-column: 2;
    justify-self: center;
}

#gsTopUi > .gs-sundial {
    grid-row: 1;
    grid-column: 3;
    justify-self: end;
}

#gsTopUi > #gsTopToggles {
    grid-row: 1;
    grid-column: 4;
    justify-self: end;
}

#gsTopUi:not(.gs-year-open) > .gs-year,
#gsTopUi:not(.gs-sun-open) > .gs-sundial,
#gsTopUi.gs-year-open #gsTopYearBtn,
#gsTopUi.gs-sun-open #gsTopSunBtn {
    display: none;
}

.gs-panel-collapse {
    align-self: center;
    flex: 0 0 auto;
    margin-left: .35rem;
    line-height: 1;
}

#gsTopUi > #gsNoticeAnchor {
    grid-column: 1 / -1;
    justify-self: stretch;
    width: 100%;
    min-width: 0;
    contain: inline-size;
}

#gsTopUi > #gsNoticeAnchor:empty {
    display: none;
}

.gs-top-warn {
    position: relative;
}

.gs-top-warn::after {
    content: "";
    position: absolute;
    top: -3px;
    right: -3px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ffc107;
    border: 2px solid #06282a;
}

#gsTopUi > .gs-year {
    transform: none;
    width: auto;
    max-width: 100%;
}

.gs-timeline {
    display: flex;
    align-items: center;
    min-width: 0;
}

#gsTimelineMonths {
    overflow-x: auto;
    scrollbar-width: none;
}

.gs-month-btn {
    white-space: nowrap;
}

.gs-timeline .btn-group .btn,
.gs-actionbar.btn-group .btn {
    border-radius: .25rem;
}

.gs-actionbar {
    top: .75rem;
    right: .75rem;
}

.gs-palette-toggle {
    top: 50%;
    left: .75rem;
    transform: translateY(-50%);
}

@keyframes gsPulseBlue {
    0%, 100% { transform: translateY(-50%) scale(1); box-shadow: 0 0 0 rgba(0, 0, 0, .7); }
    50% { transform: translateY(-50%) scale(1.15); box-shadow: 0 0 12px rgba(0, 191, 255, .9); }
}

.gs-palette-toggle.gs-palette-hint {
    animation: gsPulseBlue 1.5s ease-in-out infinite;
    border-color: deepskyblue;
    border-width: 3px;
}

.gs-palette-hint-label {
    top: 50%;
    left: calc(3.6rem + 15px);
    transform: translateY(-50%);
    max-width: 9rem;
    line-height: 1.2;
    font-size: .82rem;
    font-weight: 700;
    color: #ff7d1a;
    text-shadow: 0 1px 3px rgba(9, 55, 55, .95), 0 0 9px rgba(9, 55, 55, .8);
    pointer-events: none;
}

.gs-hud-btn--accent {
    background: linear-gradient(to right, #bd6c00 0%, #ffb700 51%, #bd6c00 100%);
    background-size: 200% auto;
    border-color: rgba(255, 255, 255, 0.38);
    color: #fff;
}

.gs-hud-btn--accent:hover {
    background: linear-gradient(to right, #bd6c00 0%, #ffb700 51%, #bd6c00 100%);
    background-position: right center;
    border-color: rgba(255, 255, 255, 0.6);
    color: #fff;
}

.gs-palette-section {
    margin: 1rem 0 .5rem;
    font-weight: 700;
    color: #093737;
    letter-spacing: .02em;
}

.gs-palette-section:first-child {
    margin-top: 0;
}

.gs-palette-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(7rem, 1fr));
    gap: .6rem;
}

.gs-palette-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .45rem;
    padding: .8rem .4rem .65rem;
    border: 1px solid rgba(9, 55, 55, 0.18);
    border-radius: .75rem;
    color: #093737;
    background: #fff;
    font-size: .85rem;
    line-height: 1.15;
    box-shadow: 0 1px 3px rgba(9, 55, 55, 0.08);
    transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}

.gs-palette-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 50%;
    background: #e7f2ec;
    color: #0b5b46;
}

.gs-palette-card__icon i {
    font-size: 1.15rem;
}

.gs-palette-card:hover {
    transform: translateY(-2px);
    border-color: deepskyblue;
    box-shadow: 0 4px 10px rgba(9, 55, 55, 0.18);
    background: rgba(0, 154, 181, 0.5);
    color: white;
}

.gs-palette-card--area .gs-palette-card__icon {
    font-weight: 800;
    font-size: 1.05rem;
}

.gs-palette-card__name {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 600;
}

.gs-palette-card__sub {
    font-size: .72rem;
    color: #5c6b66;
}

.gs-palette-card--placed {
    opacity: .62;
}

.gs-palette-card__badge {
    padding: .1rem .5rem;
    border-radius: 999px;
    background: #093737;
    color: #fff;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .02em;
}

.gs-palette-card__group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .12rem;
    max-width: 100%;
}
.gs-palette-card__group-label {
    font-size: .56rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #5c6b66;
}
.gs-palette-card__group-name {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: .08rem .45rem;
    border-radius: 999px;
    background: rgba(0, 154, 181, 0.14);
    color: #0b5b70;
    border: 1px solid rgba(0, 154, 181, 0.35);
    font-size: .66rem;
    font-weight: 700;
}
.gs-palette-card:hover .gs-palette-card__group-label { color: rgba(255, 255, 255, 0.85); }
.gs-palette-card:hover .gs-palette-card__group-name {
    background: rgba(255, 255, 255, 0.22);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
}

.gs-areas-subhead {
    grid-column: 1 / -1;
    margin-top: .3rem;
    padding-top: .5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #fff;
}

.gs-editframe {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 14;
    border: none;
    pointer-events: none;
}

/*
 * Die Griffe sind HTML, nicht Teil der 3D-Leinwand. Ohne diese Zeile haelt der Browser
 * ein Ziehen auf ihnen fuer eine Seiten-Geste, nimmt sie an sich und schiebt statt des
 * Objekts die ganze Seite — auf dem Tablet der haeufigste Fall. Der Stern faengt auch
 * Griffe mit ein, die spaeter dazukommen.
 */
.gs-editframe,
.gs-editframe * {
    touch-action: none;
}

.gs-editframe__handle {
    position: absolute;
    width: 14px;
    height: 14px;
    background: #fff;
    border: 2px solid deepskyblue;
    border-radius: 50%;
    pointer-events: auto;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}

.gs-editframe__handle[data-gs-h="nw"] { top: -8px; left: -8px; cursor: nwse-resize; }
.gs-editframe__handle[data-gs-h="ne"] { top: -8px; right: -8px; cursor: nesw-resize; }
.gs-editframe__handle[data-gs-h="sw"] { bottom: -8px; left: -8px; cursor: nesw-resize; }
.gs-editframe__handle[data-gs-h="se"] { bottom: -8px; right: -8px; cursor: nwse-resize; }

.gs-editframe__side {
    position: absolute;
    top: 50%;
    width: 8px;
    height: 34px;
    transform: translateY(-50%);
    background: #fff;
    border: 2px solid deepskyblue;
    border-radius: 5px;
    pointer-events: auto;
    cursor: ew-resize;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}

.gs-editframe__side[data-gs-h="w"] { left: -6px; }
.gs-editframe__side[data-gs-h="e"] { right: -6px; }

.gs-editframe__side--h {
    top: auto;
    left: 50%;
    width: 34px;
    height: 8px;
    transform: translateX(-50%);
    cursor: ns-resize;
}

.gs-editframe__side--h[data-gs-h="n"] { top: -6px; }
.gs-editframe__side--h[data-gs-h="s"] { bottom: -6px; }
.gs-editframe__end {
    position: absolute;
    width: 16px;
    height: 16px;
    transform: translate(-50%, -50%);
    background: #fff;
    border: 2px solid deepskyblue;
    border-radius: 50%;
    pointer-events: auto;
    cursor: move;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
    display: none;
}
.gs-editframe--line .gs-editframe__handle,
.gs-editframe--line .gs-editframe__side { display: none; }
.gs-editframe--line .gs-editframe__end { display: block; }

.gs-editframe__hy {
    position: absolute;
    display: none;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    transform: translate(-50%, -50%);
    background: deepskyblue;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 50%;
    pointer-events: auto;
    cursor: ns-resize;
    font-size: 12px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.45);
}

.gs-editframe[data-gs-kind="line"] .gs-editframe__handle,
.gs-editframe[data-gs-kind="line"] .gs-editframe__side--h { display: none; }
.gs-editframe[data-gs-kind="scale"] .gs-editframe__side { display: none; }
.gs-editframe[data-gs-kind="fixed"] .gs-editframe__handle,
.gs-editframe[data-gs-kind="fixed"] .gs-editframe__side { display: none; }

.gs-editframe__rotate {
    position: absolute;
    left: -44px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #093737;
    border-radius: 50%;
    pointer-events: auto;
    cursor: grab;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

@media (pointer: coarse) {
    .gs-editframe__handle::before,
    .gs-editframe__side::before,
    .gs-editframe__end::before {
        content: "";
        position: absolute;
        inset: -12px;
    }
}

.gs-selbar--frame {
    transform: translateX(-50%);
}

.gs-measure {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 20;
    pointer-events: none;
    background: rgba(9, 55, 55, 0.88);
    color: #fff;
    padding: .15rem .55rem;
    border-radius: .4rem;
    font-size: .9rem;
    white-space: nowrap;
}

.gs-selbar {
    top: 4.25rem;
    left: 50%;
    transform: translateX(-50%);
}

#gsPalette {
    z-index: 1090;
}

.gs-viewopts-menu {
    min-width: 9rem;
    border-radius: 16px;
    background: rgba(9, 47, 50, 0.9);
    backdrop-filter: blur(3px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.4);
}

.gs-viewopts-menu .dropdown-header {
    color: #9fc6c9;
}

.gs-viewopts-menu .form-check {
    margin-bottom: .15rem;
    margin-left: 2.5em;
}

.gs-viewopts-menu .form-check-label {
    color: #fff;
}

.gs-compass {
    cursor: pointer;
}

.gs-compass svg {
    width: 76px;
    height: 76px;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.5));
}

#gsFeaturePanel {
    right: .75rem;
    bottom: .9rem;
    width: min(320px, calc(100vw - 1.5rem));
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(6px);
    border-radius: .75rem;
    box-shadow: 0 6px 20px rgba(9, 55, 55, .25);
    padding: .75rem .9rem;
}

.gs-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .5rem;
    margin-bottom: .35rem;
}

.gs-panel-title {
    font-weight: 700;
    color: #093737;
}

.gs-panel-text {
    font-size: .9rem;
    color: #2e3238;
}

#gsGardenViewport.gs-mode-edit::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 5;
    pointer-events: none;
    border: 5px solid deepskyblue;
    border-radius: 2px;
}

@media (max-width: 1199.98px) {
    #gsTopUi {
        grid-template-columns: auto minmax(0, 1fr);
    }

    #gsTopUi > .gs-compass {
        grid-row: 1;
        grid-column: 1;
    }

    #gsTopUi > #gsTopToggles {
        grid-row: 1;
        grid-column: 2;
        justify-self: end;
    }

    #gsTopUi > .gs-year {
        grid-row: 2;
        grid-column: 1 / -1;
        justify-self: stretch;
        width: 100%;
        max-width: 100%;
        justify-content: center;
    }

    #gsTopUi > .gs-sundial {
        grid-row: 2;
        grid-column: 1 / -1;
        justify-self: center;
        max-width: 100%;
    }

    #gsTopUi > #gsNoticeAnchor {
        grid-row: 3;
    }
}

@media (max-width: 575.98px) {
    .gs-garden-main {
        --gs-nav-h: 64px;
    }

    #gsTopUi {
        top: .5rem;
        left: .5rem;
        right: .5rem;
    }

    .gs-compass svg {
        width: 54px;
        height: 54px;
    }
}

.gs-worldcolor-row {
    display: flex;
    gap: .6rem;
    margin-left: 2.5em;
}

.gs-worldcolor {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 0;
    cursor: pointer;
}

.gs-worldcolor--green { background: #16480c; }
.gs-worldcolor--beige { background: #bfab82; }

.gs-worldcolor--active {
    border-color: deepskyblue;
    box-shadow: 0 0 0 2px rgba(0, 191, 255, 0.4);
}

.gs-edgedim {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 15;
    background: rgba(9, 55, 55, 0.88);
    color: #fff;
    padding: .08rem .45rem;
    border-radius: .35rem;
    font-size: .78rem;
    white-space: nowrap;
    pointer-events: none;
}

.gs-gapdim {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 15;
    background: rgba(184, 92, 10, 0.94);
    color: #fff;
    padding: .05rem .4rem;
    border-radius: .35rem;
    font-size: .72rem;
    font-weight: 700;
    white-space: nowrap;
    pointer-events: none;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .25);
}

.gs-scale-ruler {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 26px;
    z-index: 16;
    pointer-events: none;
    background: linear-gradient(to bottom,
    rgba(9, 55, 55, 0.82), rgba(9, 55, 55, 0.5) 70%, rgba(9, 55, 55, 0));
}

.gs-scale-ruler[hidden] {
    display: none;
}

.gs-year {
    top: .75rem;
    left: 50%;
    transform: translateX(-50%);
    max-width: calc(100% - 12rem);
    width: max-content;
    position: relative;
}

.gs-year-card {
    background: linear-gradient(165deg, rgba(12, 67, 71, 0.92) 0%, rgba(6, 42, 45, 0.92) 75%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: .55rem .7rem .55rem;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: stretch;
    gap: 10px;
    min-width: 0;
}

.gs-year-axis {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding-right: 4px;
    border-right: 2px solid rgba(255, 255, 255, 0.5);
}

.gs-year-axis-top {
    font-size: .58rem;
    font-weight: 700;
    line-height: 1;
    color: #cfe0db;
}

.gs-year-axis-label {
    flex: 1;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .66rem;
    font-weight: 600;
    letter-spacing: .5px;
    color: #cfe0db;
}

.gs-year-main { display: flex; flex-direction: column; min-width: 0; }

.gs-year-track {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 92px;
    min-width: 0;
    touch-action: none;
    cursor: pointer;
    user-select: none;
}

.gs-year-col {
    width: clamp(16px, 3.6vw, 26px);
    min-width: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 3px;
}

.gs-year-bar {
    width: 100%;
    height: 74px;
    background: rgba(255, 255, 255, 0.09);
    border-radius: 3px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
}

.gs-year-bar::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    border-top: 1px dashed rgba(255, 255, 255, 0.22);
}

.gs-year-fill {
    width: 100%;
    min-height: 2px;
    border-radius: 2px 2px 0 0;
    transition: height .55s cubic-bezier(0.22, 1, 0.36, 1);
}

.gs-year-mlabel {
    font-size: .62rem;
    line-height: 1;
    color: #aebbb8;
}
.gs-year-past { opacity: .5; filter: saturate(.6); }

.gs-year-now .gs-year-bar { box-shadow: 0 0 0 2px #36c5ff, 0 0 12px rgba(54, 197, 255, 0.6); }
.gs-year-now .gs-year-mlabel { color: #cdeaff; font-weight: 700; }

.gs-year-sel .gs-year-bar { outline: 2px solid rgba(255, 255, 255, 0.9); outline-offset: 1px; }
.gs-year-sel .gs-year-mlabel { color: #fff; font-weight: 700; }

.gs-year-legend {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.gs-year-temp { font-size: .66rem; color: #aebbb8; white-space: nowrap; }

.gs-toolbar {
    bottom: .75rem;
    left: .75rem;
    display: flex;
    align-items: flex-end;
    gap: .4rem;
    flex-wrap: wrap;
    max-width: calc(100% - 1.5rem);
}

.gs-toolbar .gs-viewopts,
.gs-toolbar .gs-actionbar {
    position: static;
    bottom: auto;
    left: auto;
    top: auto;
    right: auto;
    transform: none;
}

.gs-toolbar .gs-actionbar.btn-group .btn { border-radius: .25rem; }
.gs-bulb {
    position: absolute;
    z-index: 16;
    width: 58px;
    height: 58px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    transform: translate(-50%, -50%);
    transition: width .35s ease, height .35s ease;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.35));
}

.gs-bulb::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 34'%3E%3Cdefs%3E%3CradialGradient id='g' cx='50%25' cy='38%25' r='62%25'%3E%3Cstop offset='0' stop-color='%23f4f1e8'/%3E%3Cstop offset='.6' stop-color='%23cfc9ba'/%3E%3Cstop offset='1' stop-color='%23a49d8d'/%3E%3C/radialGradient%3E%3C/defs%3E%3Ccircle cx='12' cy='12' r='9.4' fill='url(%23g)' stroke='%23837d6f' stroke-width='.8'/%3E%3Cpath d='M9.4 19.6 L9.4 23 L14.6 23 L14.6 19.6 Z' fill='%23b5af9f' stroke='%23837d6f' stroke-width='.8'/%3E%3Cpath d='M9.6 12.6 q1.2 2.4 2.4 0 q1.2 2.4 2.4 0' fill='none' stroke='%23847e70' stroke-width='.9' stroke-linecap='round'/%3E%3Crect x='8.6' y='23.2' width='6.8' height='2' rx='1' fill='%239aa0a6'/%3E%3Crect x='8.9' y='25.8' width='6.2' height='1.8' rx='.9' fill='%23848a90'/%3E%3Crect x='9.3' y='28' width='5.4' height='1.8' rx='.9' fill='%236f757b'/%3E%3Cpath d='M10.6 30 h2.8 l-1 2 z' fill='%235a6065'/%3E%3C/svg%3E") center/contain no-repeat;
}

.gs-bulb:hover { filter: drop-shadow(0 1px 6px rgba(255, 235, 170, 0.5)); }

.gs-bulb--on {
    width: 72px;
    height: 72px;
    animation: gsBulbBreath 2.8s ease-in-out infinite;
}

.gs-bulb--on::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 34'%3E%3Cdefs%3E%3CradialGradient id='g' cx='50%25' cy='38%25' r='62%25'%3E%3Cstop offset='0' stop-color='%23fffbe0'/%3E%3Cstop offset='.55' stop-color='%23ffd54a'/%3E%3Cstop offset='1' stop-color='%23f0a422'/%3E%3C/radialGradient%3E%3C/defs%3E%3Ccircle cx='12' cy='12' r='9.4' fill='url(%23g)' stroke='%23c67f14' stroke-width='.8'/%3E%3Cpath d='M9.4 19.6 L9.4 23 L14.6 23 L14.6 19.6 Z' fill='%23e8b93a' stroke='%23c67f14' stroke-width='.8'/%3E%3Cpath d='M9.6 12.6 q1.2 2.4 2.4 0 q1.2 2.4 2.4 0' fill='none' stroke='%23b25f0a' stroke-width='.9' stroke-linecap='round'/%3E%3Crect x='8.6' y='23.2' width='6.8' height='2' rx='1' fill='%239aa0a6'/%3E%3Crect x='8.9' y='25.8' width='6.2' height='1.8' rx='.9' fill='%23848a90'/%3E%3Crect x='9.3' y='28' width='5.4' height='1.8' rx='.9' fill='%236f757b'/%3E%3Cpath d='M10.6 30 h2.8 l-1 2 z' fill='%235a6065'/%3E%3C/svg%3E");
}

@keyframes gsBulbBreath {
    0%, 100% { filter: drop-shadow(0 0 6px rgba(255, 205, 64, 0.5)); }
    50% { filter: drop-shadow(0 0 22px rgba(255, 205, 64, 0.95)); }
}

.gs-bulb--flash {
    animation: gsBulbFlash 1.1s ease-in-out 2;
}

@keyframes gsBulbFlash {
    0%, 100% { filter: drop-shadow(0 0 8px rgba(255, 205, 64, 0.6)); transform: translate(-50%, -50%) scale(1); }
    50% { filter: drop-shadow(0 0 30px rgba(255, 230, 120, 1)); transform: translate(-50%, -50%) scale(1.18); }
}

.gs-bulb-badge {
    position: absolute;
    top: 0;
    right: -2px;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    border-radius: 999px;
    background: var(--gs-act-aus, #e6a52b);
    color: #212121;
    font-size: .72rem;
    font-weight: 800;
    line-height: 20px;
}

.gs-mk {
    position: absolute;
    width: 0; height: 0;
    z-index: 9;
    pointer-events: none;
}
.gs-mk-marker, .gs-mk-todo { pointer-events: auto; }

.gs-glassbulb { display: block; width: 52px; height: auto; filter: drop-shadow(0 3px 5px rgba(0, 0, 0, .5)); }
.gs-glassbulb--glow { filter: drop-shadow(0 0 9px rgba(255, 205, 64, .85)); width: 46px; }

.gs-mk-marker {
    position: absolute; left: 0; top: 0; transform: translate(-50%, -50%);
    display: flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; padding: 0; border: none; background: none; cursor: pointer;
    transition: opacity .2s;
}
.gs-mk-dot {
    width: 17px; height: 17px; border-radius: 50%;
    background: #ff7d1a; border: 2px solid #111;
    box-shadow: 0 1px 5px rgba(0, 0, 0, .55); transition: transform .15s, background .15s;
}
.gs-mk-marker:hover .gs-mk-dot { background: #ff9838; transform: scale(1.18); }
.gs-mk-todo {
    position: absolute; left: 0; top: 0; transform: translate(-50%, calc(-50% - 32px));
    padding: 0; border: none; background: none; cursor: pointer;
    animation: gsBulbBreath 2.8s ease-in-out infinite;
    transition: opacity .2s;
}
.gs-mk-badge {
    position: absolute; top: -4px; right: -6px;
    min-width: 18px; height: 18px; line-height: 18px; text-align: center; padding: 0 4px;
    border-radius: 999px; background: var(--gs-act-aus, #e6a52b); color: #212121;
    font-size: 11px; font-weight: 800; z-index: 2;
}

.gs-mk-fan { position: absolute; left: 0; top: 0; }
.gs-mk-b {
    position: absolute; left: 0; top: 0; padding: 0; border: none; background: none; cursor: pointer;
    opacity: 0; pointer-events: none;
    transform: translate(-50%, -50%) scale(.32); transform-origin: center center;
    transition: transform .34s cubic-bezier(.2, 1.3, .4, 1), opacity .28s;
}
.gs-mk-b .gs-glassbulb { width: 50px; }
.gs-mk-info .gs-glassbulb { width: 54px; }
.gs-mk-gear { transition-delay: .03s; }
.gs-mk-cal { transition-delay: .05s; }
.gs-mk-b:hover .gs-glassbulb { filter: drop-shadow(0 1px 7px rgba(255, 235, 170, .7)); }
.gs-mk-label {
    position: absolute;
    left: 50%;
    bottom: 100%;
    margin-bottom: 4px;
    transform: translateX(-50%);
    white-space: nowrap;
    font-size: .72rem;
    font-weight: 700;
    color: #ff7d1a;
    text-shadow: 0 1px 3px rgba(9, 55, 55, .95), 0 0 9px rgba(9, 55, 55, .8);
    pointer-events: none;
}

.gs-mk-gear .gs-mk-label { transform: translateX(calc(-50% - 20px)); }
.gs-mk-cal .gs-mk-label { transform: translateX(calc(-50% + 20px)); }

.gs-mk--open .gs-mk-marker,
.gs-mk--open .gs-mk-todo { opacity: 0; pointer-events: none; }
.gs-mk--open .gs-mk-b { opacity: 1; pointer-events: auto; }
.gs-mk--open .gs-mk-gear { transform: translate(calc(-50% - 58px), calc(-50% - 32px)) scale(1); }
.gs-mk--open .gs-mk-info { transform: translate(-50%, calc(-50% - 52px)) scale(1); }
.gs-mk--open .gs-mk-cal  { transform: translate(calc(-50% + 58px), calc(-50% - 32px)) scale(1); }

@keyframes gsMkFlash { 0%, 100% { filter: drop-shadow(0 0 8px rgba(255, 205, 64, .6)); } 50% { filter: drop-shadow(0 0 26px rgba(255, 230, 120, 1)); } }
.gs-mk-flash { animation: gsMkFlash 1.1s ease-in-out 2; }
.gs-areasheet { width: min(460px, 100vw); }
@media (min-width: 768px)  { .gs-areasheet { width: min(760px, 96vw); } }
@media (min-width: 1200px) { .gs-areasheet { width: min(1040px, 92vw); } }

.gs-sheet-top { display: grid; grid-template-columns: 1fr; gap: .9rem; margin-bottom: .5rem; }
@media (min-width: 768px) {
    .gs-sheet-top { grid-template-columns: 1fr 1fr 1fr; align-items: start; }
}
.gs-sheet-cell { min-width: 0; }
.gs-sheet-img { width: 100%; border-radius: 10px; display: block; }
.gs-sheet-photo[hidden] { display: none; }
.gs-sheet-svg { text-align: center; }
.gs-sheet-legend {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .3rem .7rem;
    margin: .55rem auto 0;
    padding: .4rem .65rem;
    border-radius: 10px;
    font-size: .74rem;
    color: #2e3238;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}
.gs-sheet-legend-item { display: inline-flex; align-items: center; gap: .35rem; }
.gs-sheet-legend-swatch {
    width: 12px; height: 12px;
    border-radius: 3px;
    border: 1px solid transparent;
    flex: 0 0 auto;
}
.gs-sheet-legend-line {
    width: 14px; height: 0;
    border-top: 2px solid #272727;
    flex: 0 0 auto;
}

.gs-sheet-facts { display: flex; flex-direction: column; gap: .25rem; }

.gs-sheet-fact {
    display: flex;
    justify-content: space-between;
    gap: .75rem;
    color: #e7f0ee;
    font-size: .88rem;
}

.gs-sheet-fact-label { color: #aebbb8; }
.gs-sheet-fact-value { font-weight: 600; }

.gs-sheet-hr { border-color: rgba(255, 255, 255, 0.18); }

.gs-sheet-todohead { color: #fff; font-weight: 700; font-size: .95rem; margin-bottom: .6rem; }

.gs-sheet-alldone { color: #9fd9c9; font-size: .88rem; }

.gs-sheet-todos { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 768px) {
    .gs-sheet-todos { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
}

.gs-sheet-card {
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    border-top: 4px solid var(--gs-act-aus, #e6a52b);
    padding: .75rem .85rem .85rem;
    color: #eef4f2;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
}

.gs-sheet-card--system {
    border-top-color: chartreuse;
}

.gs-sheet-card--low {
    border-top-color: deepskyblue;
}

.gs-sheet-card-icon {
    color: var(--gs-act-aus, #e6a52b);
}

.gs-sheet-card--low .gs-sheet-card-icon {
    color: deepskyblue;
}

.gs-sheet-card--system .gs-sheet-card-icon {
    color: chartreuse;
}

.gs-sheet-card-month {
    display: flex;
    align-items: center;
    gap: .4rem;
    margin-top: .45rem;
    font-size: .78rem;
    font-weight: 600;
    color: #cfe0db;
}

.gs-sheet-card-month img {
    width: 2.4em;
    height: auto;
}

.gs-sheet-card-imgwrap {
    margin-bottom: .55rem;
    text-align: center;
}

.gs-sheet-card-img {
    display: block;
    width: 58.333%;
    height: auto;
    margin: 0 auto;
}

.gs-sheet-card-head { display: flex; align-items: center; gap: .55rem; }

.gs-sheet-card-title { font-weight: 700; font-style: italic; font-size: 1rem; line-height: 1.25; }

.gs-sheet-card-who { font-size: .84rem; color: #cfe0db; }

.gs-sheet-card-part {
    align-self: flex-start;
    margin-top: .4rem;
    padding: .05rem .5rem;
    border-radius: 999px;
    background: rgba(54, 197, 255, 0.16);
    border: 1px solid rgba(54, 197, 255, 0.45);
    color: #cdeaff;
    font-size: .72rem;
    font-weight: 600;
}

.gs-sheet-card-body { margin-top: .55rem; font-size: .85rem; line-height: 1.45; }
.gs-sheet-card-body .darkTxT,
.gs-sheet-card-body h6.darkTxT {
    color: #e7f0ee !important;
    font-weight: 400;
    font-size: .85rem;
    line-height: 1.45;
    margin: 0;
}

.gs-sheet-card-body h6:not(.darkTxT),
.gs-sheet-card-body h5:not(.darkTxT) {
    color: #9fd9c9;
    font-weight: 700;
    font-size: .8rem;
    letter-spacing: .02em;
    margin: .7rem 0 .1rem;
}
.gs-sheet-card-body .row { margin: 0 0 .5rem; }
.gs-sheet-card-body b { color: #fff; font-weight: 700; }
.gs-sheet-card-done {
    margin-top: auto;
    align-self: flex-end;
    padding-top: .1rem;
}

.gs-mow-attn {
    animation: gsMowPulse 1.3s ease-in-out infinite;
    position: relative;
    z-index: 21;
}

@keyframes gsMowPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 191, 255, 0.6), 0 0 12px 3px rgba(0, 191, 255, 0.55);
    }
    50% {
        transform: scale(1.12);
        box-shadow: 0 0 0 16px rgba(0, 191, 255, 0), 0 0 30px 10px rgba(0, 191, 255, 0.95);
    }
}

.gs-plantinfo {
    position: fixed;
    z-index: 40;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: .5rem;
    max-width: min(300px, calc(100vw - 20px));
    max-height: calc(100vh - 20px);
    overflow: auto;
    background: linear-gradient(165deg, rgba(12, 67, 71, 0.97) 0%, rgba(6, 42, 45, 0.97) 75%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: .6rem .7rem;
    color: #eef4f2;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
    pointer-events: none;
}

.gs-plantinfo-close {
    align-self: flex-end;
    flex: 0 0 auto;
    margin-bottom: -.25rem;
    pointer-events: auto;
}

.gs-plantinfo-img {
    width: 100%;
    max-width: 200px;
    align-self: center;
    aspect-ratio: 16 / 9;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    background: transparent;
    flex: 0 0 auto;
}

.gs-plantinfo-title { font-size: 1.35rem; font-weight: 700; line-height: 1.15; }

.gs-plantinfo-sub { font-size: 1.02rem; color: #cfe0db; }

.gs-plantinfo-stage { font-size: .95rem; font-weight: 600; color: #bfe0a8; text-transform: capitalize; }
.gs-plantinfo-sep { border-top: 1px solid rgba(255, 255, 255, 0.14); margin: .15rem 0; }

@media (max-width: 575.98px) {
    .gs-year { max-width: none; }
    .gs-year-card { padding: .4rem .5rem .45rem; }
    .gs-year-axis { font-size: .56rem; }
    .gs-toolbar { max-width: calc(100% - 1rem); }
    .gs-year-track { height: 56px; }
    .gs-year-legend { display: none; }
    .gs-year-axis-label { display: none; }
}

.gs-matbar {
    position: absolute;
    left: 50%;
    bottom: 1rem;
    transform: translateX(-50%);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .4rem;
    padding: .4rem;
    border-radius: 18px;
    background: rgba(9, 47, 50, 0.9);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.4);
    z-index: 20;
    max-width: calc(100vw - 1.5rem);
}
.gs-matbar[hidden] { display: none; }

.gs-matbar__btn {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .35rem .7rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    color: #eaf3f3;
    font-size: .8rem;
    cursor: pointer;
    transition: background .15s, border-color .15s, opacity .15s;
}
.gs-matbar__btn:hover { background: rgba(255, 255, 255, 0.14); }
.gs-matbar__btn.is-active,
.gs-matbar__btn:disabled {
    opacity: .45;
    cursor: default;
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.02);
}

.gs-matbar__sw {
    width: 18px;
    height: 18px;
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, 0.35);
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.25);
    flex: 0 0 auto;
}
.gs-matbar__sw--0 { background: #8d867a; }
.gs-matbar__sw--1 { background: #524c43; }
.gs-matbar__sw--2 { background: #9c4a35; }
.gs-matbar__sw--3 { background: linear-gradient(135deg, #95542f, #6e3a22); }

@media (max-width: 560px) {
    .gs-matbar__lbl { display: none; }
    .gs-matbar__btn { padding: .4rem; }
}

.gs-areaform {
    width: min(720px, 100vw);
}

.gs-bulb--pen,
.gs-bulb--plan {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    background: rgba(13, 74, 74, 0.96);
    border: 1.6px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.45);
}

.gs-bulb--pen::before,
.gs-bulb--plan::before {
    content: none;
    display: none;
}

.gs-bulb--pen:hover,
.gs-bulb--plan:hover {
    background: rgba(20, 104, 104, 0.98);
    border-color: rgba(255, 255, 255, 0.9);
}

.gs-group-head {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-top: .35rem;
}
.gs-group-head__name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 700;
    font-size: .8rem;
    color: #fff;
}
.gs-group-head__size {
    flex-shrink: 0;
    font-size: .68rem;
    font-weight: 700;
    padding: .05rem .45rem;
    border-radius: 999px;
    background: rgba(0, 154, 181, 0.25);
    color: #d9f3f8;
}
.gs-group-head__pen {
    flex-shrink: 0;
    margin-left: auto;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    width: 28px;
    height: 28px;
    padding: 0;
    font-size: .7rem;
}
.gs-group-head__pen:hover { background: deepskyblue; color: #fff; }

.gs-sheet-planbtn {
    display: block;
    width: 100%;
    margin-top: .6rem;
}

.gs-year-weather {
    align-self: center;
    margin-left: .55rem;
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    white-space: nowrap;
    line-height: 1.1;
}
.gs-wx-badge-t { font-weight: 700; font-size: .85rem; }
.gs-year-col { position: relative; }
@media (max-width: 576px) {
    .gs-year-weather { margin-left: .35rem; padding: .2rem .45rem; }
    .gs-wx-badge-t { font-size: .75rem; }
}

.gs-wx-wash {
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
    background: rgb(56, 68, 82);
    opacity: 0;
    transition: opacity 2.5s ease;
}

.gs-wx-flash {
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
    background: radial-gradient(ellipse at 50% 10%, rgba(236, 242, 250, 0.9), rgba(236, 242, 250, 0) 55%);
    opacity: 0;
    transition: opacity 0.45s ease-out;
}

.gs-wx-flash.gs-wx-flash-on {
    opacity: 0.17;
    transition: opacity 0.05s ease-in;
}

.gs-year-track:focus-visible {
    outline: 2px solid deepskyblue;
    outline-offset: 2px;
    border-radius: 4px;
}

.gs-sundial {
    display: flex;
    flex-direction: column;
    gap: .4rem;
    width: min(340px, 100%);
    padding: .45rem .65rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(165deg, rgba(12, 67, 71, 0.92) 0%, rgba(6, 42, 45, 0.92) 75%);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
    color: #fff;
}

.gs-sundial-horizon {
    display: block;
    width: 100%;
    height: 40px;
    border-radius: 10px;
}

.gs-sundial-horizon[hidden] {
    display: none;
}

.gs-sundial-note {
    display: block;
    margin-top: .25rem;
    font-size: .78rem;
    line-height: 1.25;
    color: #cfe0db;
}

.gs-sundial-note[hidden] {
    display: none;
}

.gs-hud-btn {
    --hud-h: 38px;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: var(--hud-h);
    height: var(--hud-h);
    padding: 0 .6rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(7, 44, 47, 0.72);
    color: #dff1f2;
    backdrop-filter: blur(4px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28);
    transition: background .15s ease, color .15s ease, border-color .15s ease, transform .06s ease;
}

.gs-hud-btn:hover {
    background: rgba(17, 78, 83, 0.88);
    border-color: rgba(255, 255, 255, 0.42);
    color: #fff;
}

.gs-hud-btn:active {
    transform: scale(.93);
}

.gs-hud-btn:focus-visible {
    outline: 2px solid deepskyblue;
    outline-offset: 2px;
}

.gs-hud-btn:disabled {
    opacity: .38;
    box-shadow: none;
}

.gs-hud-btn.active,
.gs-hud-btn[aria-pressed="true"] {
    background: linear-gradient(180deg, #0f6b75, #0a4a52);
    border-color: rgba(0, 191, 255, 0.65);
    color: #fff;
    box-shadow: 0 0 0 1px rgba(0, 191, 255, 0.22), 0 2px 10px rgba(0, 0, 0, 0.35);
}

.gs-hud-btn.active::after,
.gs-hud-btn[aria-pressed="true"]::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 3px;
    transform: translateX(-50%);
    width: 14px;
    height: 3px;
    border-radius: 2px;
    background: #ffd75e;
    box-shadow: 0 0 6px rgba(255, 215, 94, 0.85);
}

.gs-hud-btn[aria-pressed="true"]:disabled {
    opacity: 1;
}

.gs-sundial-icon {
    color: #ffd75e;
}

.gs-sundial-range {
    width: 140px;
}

.gs-sundial-time {
    min-width: 3.4em;
    text-align: center;
    font-size: .85rem;
    font-variant-numeric: tabular-nums;
}

.gs-sundial-approx {
    color: #ffc107;
    font-weight: 700;
    cursor: help;
}

@media (max-width: 768px) {
    .gs-sundial {
        margin-left: auto;
        padding: .35rem .5rem;
        gap: .4rem;
    }

    .gs-sundial-range {
        width: 100px;
    }
}

.gs-mk-sun {
    position: absolute;
    top: 1.35rem;
    left: 50%;
    transform: translateX(-50%);
    padding: .1rem .45rem;
    border-radius: 999px;
    background: #ffd75e;
    color: #093737;
    font-size: .72rem;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
    pointer-events: none;
}

.gs-sun-probe {
    position: absolute;
    z-index: 9;
    transform: translate(-50%, calc(-100% - 32px));
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: .3rem .7rem;
    border-radius: .8rem;
    background: #ff7d1a;
    border: 2px solid #111;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
    font-size: .78rem;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    pointer-events: none;
}

.gs-sun-probe::before,
.gs-sun-probe::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    background: #ff7d1a;
    border: 2px solid #111;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}

.gs-sun-probe::before {
    width: 12px;
    height: 12px;
    bottom: -18px;
}

.gs-sun-probe::after {
    width: 6px;
    height: 6px;
    bottom: -30px;
}

.gs-sun-probe-title {
    font-weight: 800;
}

.gs-sun-probe-plants {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 230px;
    white-space: normal;
    text-align: center;
    line-height: 1.3;
}

.gs-sun-probe-plants hr {
    width: 100%;
    margin: .3rem 0;
    border: none;
    border-top: 2px solid rgba(17, 17, 17, 0.45);
}

.gs-sun-probe-intro {
    font-size: .72rem;
    margin-bottom: .15rem;
}

.gs-sun-probe-more {
    padding: 0;
    border: none;
    background: none;
    color: #fff;
    font-weight: 800;
    font-size: .78rem;
    text-decoration: underline;
    cursor: pointer;
    pointer-events: auto;
}

.gs-sun-probe--open .gs-sun-probe-plants {
    max-height: 38vh;
    overflow-y: auto;
    pointer-events: auto;
}

.gs-sun-probe-plant {
    align-self: flex-start;
    text-align: left;
}

.gs-sun-probe-plant::before {
    content: '• ';
}

.gs-sun-probe-plants {
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 191, 255, 0.4) rgba(255, 255, 255, 0.04);
}

.gs-sun-probe-plants::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.gs-sun-probe-plants::-webkit-scrollbar-thumb {
    background-color: rgba(0, 191, 255, 0.4);
    border-radius: 999px;
}

.gs-sun-probe-plants::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0, 191, 255, 0.7);
}

.gs-sun-probe-plants::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 999px;
}

.gs-dimpanel {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 22;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .25rem;
    pointer-events: none;
}

.gs-dimpanel__grp {
    display: flex;
    flex-wrap: wrap;
    gap: .3rem;
}

.gs-dimpanel__chip {
    background: rgba(9, 55, 55, 0.88);
    color: #fff;
    padding: .1rem .5rem;
    border-radius: .35rem;
    font-size: .78rem;
    font-weight: 600;
    white-space: nowrap;
}

.gs-dimpanel__grp--gap .gs-dimpanel__chip {
    background: rgba(184, 92, 10, 0.94);
    font-size: .74rem;
    font-weight: 700;
}

#gsGardenViewport.gs-shooting > *:not(#gsGardenCanvas):not(#gsShootUi) {
    display: none !important;
}

#gsShootUi {
    position: absolute;
    inset: 0;
    z-index: 30;
    overflow: hidden;
    pointer-events: none;
}

#gsShootUi[hidden] {
    display: none;
}

#gsShootFrame {
    position: absolute;
    border: 2px dashed rgba(253, 251, 244, 0.95);
    border-radius: 4px;
    box-shadow: 0 0 0 100vmax rgba(9, 55, 55, 0.55);
    transition: left 0.18s ease, top 0.18s ease, width 0.18s ease, height 0.18s ease;
}

#gsShootBar {
    position: absolute;
    left: 50%;
    bottom: 1rem;
    transform: translateX(-50%);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    max-width: calc(100% - 1.5rem);
    padding: 0.5rem 0.65rem;
    border-radius: 1.5rem;
    background: rgba(9, 55, 55, 0.72);
    pointer-events: auto;
}

#gsShootBar .gs-hud-btn.active {
    background: rgba(0, 191, 255, 0.85);
    color: #093737;
    font-weight: 700;
}
