/* TransROC dashboard visual system */
:root {
    --tr-green-950: #082D21;
    --tr-green-900: #0E3B2C;
    --tr-green-800: #14513A;
    --tr-green-700: #1C6A49;
    --tr-green-600: #248558;
    --tr-green-500: #2EA66A;
    --tr-green-100: #DDF4E7;
    --tr-green-50: #F2FAF5;
    --tr-gold-500: #E6A43B;
    --tr-gold-100: #FBEBCB;
    --tr-cream: #FBF9F2;
    --tr-white: #FFFFFF;
    --tr-ink: #17211B;
    --tr-muted: #66736B;
    --tr-border: #DCE5DE;
    --tr-success: #15803D;
    --tr-warning: #D97706;
    --tr-danger: #C2413B;
    --tr-info: #2563EB;
    --tr-card-olive: #3e512b;
    --tr-card-olive-soft: #4b6235;
    --tr-card-bg: rgba(62, 81, 43, 0.9);
    --tr-card-bg-soft: rgba(62, 81, 43, 0.74);
    --tr-card-bg-subtle: rgba(62, 81, 43, 0.56);
    --tr-card-text: #F6FAEF;
    --tr-card-muted: rgba(246, 250, 239, 0.82);
    --tr-card-border: rgba(232, 242, 218, 0.2);
    --tr-primary-lime: #e9ff13;
    --tr-primary-lime-hover: #dff000;
    --tr-primary-lime-ink: #14200b;
    --tr-brand-sage-900: #405b35;
    --tr-brand-sage-800: #587244;
    --tr-brand-sage-700: #718b55;
}

.transroc-shell {
    --tr-sidebar-width: 232px;
    --tr-sidebar-bg: var(--tr-green-950);
    --tr-sidebar-bg-soft: var(--tr-green-900);
    --tr-green: var(--tr-green-700);
    --tr-green-deep: var(--tr-green-950);
    --tr-lime: var(--tr-gold-500);
    --tr-chart-lime: #d8f20a;
    --tr-sidebar-active: var(--tr-brand-sage-800);
    --tr-shadow: 0 18px 45px rgba(8, 45, 33, 0.14);
    background: var(--tr-green-50);
    color: var(--tr-ink);
    font-family: var(--transroc-font-family);
}

.transroc-shell * {
    letter-spacing: 0;
}

.transroc-shell .nk-main {
    min-height: 100vh;
}

.transroc-sidebar {
    background: linear-gradient(180deg, var(--tr-sidebar-bg), var(--tr-sidebar-bg-soft));
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 18px 0 50px rgba(8, 45, 33, 0.18);
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow: hidden;
    width: var(--tr-sidebar-width);
}

.transroc-sidebar-head {
    align-items: flex-start;
    border-bottom: 0;
    display: block;
    flex: 0 0 auto;
    height: auto;
    padding: 27px 22px 22px;
}

.transroc-brand-link {
    align-items: center;
    background: transparent;
    border: 0;
    border-radius: 0;
    color: var(--tr-white);
    display: inline-flex;
    justify-content: center;
    max-width: 100%;
    padding: 0;
}

.transroc-brand-link:hover {
    color: var(--tr-white);
}

.transroc-brand-logo {
    filter: drop-shadow(0 4px 10px rgba(3, 5, 3, 0.18));
    display: block;
    height: auto;
    max-height: 112px;
    object-fit: contain;
    object-position: center;
    width: 128px;
}

.transroc-brand-link-sm .transroc-brand-logo {
    max-height: 54px;
    width: 62px;
}

.transroc-sidebar-body {
    flex: 1 1 auto;
    min-height: 0;
    overflow: hidden;
}

.transroc-sidebar-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
    padding: 0 17px 18px;
}

.transroc-sidebar-utilities,
.transroc-sidebar-bottom-utilities {
    display: grid;
    flex: 0 0 auto;
    gap: 6px;
    margin: 0 0 8px;
}

.transroc-sidebar-menu {
    flex: 1 1 auto;
    margin-top: 8px;
    min-height: 0;
    overflow-y: auto;
    padding-right: 3px;
    scrollbar-color: rgba(255, 255, 255, 0.28) transparent;
    scrollbar-width: thin;
}

.transroc-sidebar-menu::-webkit-scrollbar {
    width: 5px;
}

.transroc-sidebar-menu::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.28);
    border-radius: 999px;
}

.transroc-sidebar-menu .simplebar-content-wrapper {
    overflow: auto !important;
}

.transroc-menu {
    padding: 0;
}

.transroc-menu-heading {
    margin: 16px 13px 8px;
}

.transroc-menu-heading h6 {
    color: rgba(255, 255, 255, 0.56);
    font-size: 10px;
    font-weight: 800;
    margin: 0;
}

.transroc-menu-item {
    margin-bottom: 7px;
}

.transroc-menu-link {
    align-items: center;
    background: transparent;
    border: 0;
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.82) !important;
    cursor: pointer;
    display: flex;
    font-size: 14px;
    font-weight: 620;
    gap: 13px;
    font-family: inherit;
    min-height: 48px;
    padding: 0 17px !important;
    text-align: left;
    transition: background 180ms ease, color 180ms ease, transform 180ms ease;
    width: 100%;
}

.transroc-menu-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--tr-white) !important;
    transform: translateX(2px);
}

.transroc-menu-item.active .transroc-menu-link {
    background: var(--tr-green-700);
    box-shadow: 0 14px 28px rgba(8, 45, 33, 0.24);
    color: var(--tr-white) !important;
    font-weight: 680;
}

.transroc-menu-icon {
    color: currentColor !important;
    font-size: 22px;
    justify-content: center;
    min-width: 26px;
}

.transroc-menu-text {
    color: currentColor;
    font-weight: inherit;
}

.transroc-sidebar-footer {
    background:
        linear-gradient(180deg, rgba(8, 45, 33, 0), rgba(8, 45, 33, 0.98) 16%),
        linear-gradient(180deg, var(--tr-sidebar-bg-soft), var(--tr-sidebar-bg));
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: grid;
    flex: 0 0 auto;
    gap: 8px;
    margin-top: 16px;
    padding-top: 22px;
    position: sticky;
    bottom: 0;
    overflow: hidden;
    z-index: 2;
}

.transroc-utility-link,
.transroc-profile-card {
    align-items: center;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.86);
    display: flex;
    justify-content: space-between;
    min-height: 48px;
    padding: 0 12px;
}

.transroc-utility-link:hover,
.transroc-profile-card:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--tr-white);
}

.transroc-utility-link span {
    align-items: center;
    display: inline-flex;
    font-size: 13px;
    font-weight: 650;
    gap: 12px;
}

.transroc-utility-link em {
    align-items: center;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    display: inline-flex;
    height: 36px;
    justify-content: center;
    width: 36px;
}

.transroc-utility-link strong {
    align-items: center;
    background: var(--tr-gold-500);
    border-radius: 50%;
    color: var(--tr-green-950);
    display: inline-flex;
    font-size: 11px;
    height: 22px;
    justify-content: center;
    width: 22px;
}

.transroc-profile-card {
    background: transparent;
    border: 0;
    border-radius: 12px;
    cursor: pointer;
    font-family: inherit;
    gap: 10px;
    justify-content: flex-start;
    margin-top: 14px;
    min-width: 0;
    overflow: hidden;
    padding: 12px 10px;
    text-align: left;
    width: 100%;
}

.transroc-profile-card[aria-expanded="true"] {
    background: rgba(255, 255, 255, 0.1);
    color: var(--tr-white);
}

.transroc-profile-menu {
    display: grid;
    gap: 8px;
    min-width: 0;
    overflow: hidden;
    position: relative;
}

.transroc-profile-caret {
    flex: 0 0 auto;
    margin-left: auto;
    transition: transform 180ms ease;
}

.transroc-profile-card[aria-expanded="true"] .transroc-profile-caret {
    transform: rotate(180deg);
}

.transroc-profile-dropdown {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    display: grid;
    gap: 4px;
    min-width: 180px;
    padding: 6px;
    position: fixed;
    z-index: 5000;
}

.transroc-profile-dropdown::before {
    background: inherit;
    border-bottom: inherit;
    border-left: inherit;
    content: "";
    height: 12px;
    left: -7px;
    position: absolute;
    top: 22px;
    transform: rotate(45deg);
    width: 12px;
}

.transroc-profile-dropdown.is-left::before {
    border-bottom: 0;
    border-left: 0;
    border-right: inherit;
    border-top: inherit;
    left: auto;
    right: -7px;
}

.transroc-profile-dropdown[hidden] {
    display: none;
}

.transroc-profile-dropdown a {
    align-items: center;
    border-radius: 11px;
    color: rgba(255, 255, 255, 0.86);
    display: flex;
    font-size: 13px;
    font-weight: 650;
    gap: 10px;
    min-height: 38px;
    padding: 0 10px;
}

.transroc-profile-dropdown a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--tr-white);
}

.transroc-profile-avatar,
.transroc-header-avatar {
    background: linear-gradient(135deg, var(--tr-green-700), var(--tr-gold-500));
    color: var(--tr-white);
}

.transroc-profile-avatar {
    align-items: center;
    border-radius: 50%;
    display: inline-flex;
    flex: 0 0 auto;
    font-size: 13px;
    font-weight: 720;
    height: 42px;
    justify-content: center;
    width: 42px;
}

.transroc-profile-avatar img,
.transroc-header-avatar img {
    border-radius: inherit;
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.transroc-profile-copy {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
}

.transroc-profile-copy strong {
    color: var(--tr-white);
    display: block;
    font-size: 13px;
    font-weight: 700;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.transroc-profile-copy small {
    color: rgba(255, 255, 255, 0.58);
    display: block;
    font-size: 10px;
    font-weight: 560;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.transroc-round-trigger {
    background: var(--tr-white);
    border-radius: 50%;
    color: var(--tr-green-900);
}

.transroc-wrap {
    background: var(--tr-green-50);
    min-width: 0;
    min-height: 100vh;
}

.transroc-shell-full-page .transroc-wrap {
    width: 100%;
}

.transroc-content {
    background: var(--tr-green-50);
    min-height: calc(100vh - 68px);
    padding: 30px;
}

.transroc-shell.has-sidebar .transroc-wrap {
    background:
        linear-gradient(135deg, rgba(3, 15, 7, 0.44), rgba(5, 22, 9, 0.32) 46%, rgba(2, 10, 5, 0.42)),
        url("../images/transroc/dashboard-field-aerial.webp");
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    max-width: 100vw;
    min-width: 0;
    overflow-x: clip;
}

.transroc-shell.has-sidebar .transroc-content {
    background: transparent;
    min-width: 0;
    overflow-x: clip;
}

.transroc-content-container {
    max-width: 1480px;
    min-width: 0;
}

.transroc-shell-full-page .transroc-content {
    min-height: 100vh;
    padding: clamp(18px, 2.5vw, 36px);
}

.transroc-shell-full-page .transroc-content-container {
    max-width: 1560px;
}

.transroc-onboarding-page .transroc-content {
    background:
        linear-gradient(90deg, rgba(247, 251, 244, 0.94), rgba(236, 247, 238, 0.96)),
        var(--tr-green-50);
}

.transroc-onboarding-page {
    --tr-onboarding-control-size: 40px;
    --tr-onboarding-copy-size: 12px;
    --tr-onboarding-heading-size: 20px;
    --tr-onboarding-input-size: 13px;
    --tr-onboarding-label-size: 11.5px;
}

.transroc-mobile-header {
    background: var(--tr-white) !important;
    border-bottom: 1px solid var(--tr-border);
    box-shadow: 0 12px 32px rgba(8, 45, 33, 0.08);
}

.transroc-footer {
    background: var(--tr-green-50) !important;
    border-top: 1px solid var(--tr-border);
}

.transroc-dashboard-page .transroc-content {
    margin-top: 0 !important;
    min-height: 100vh;
    padding: 0 !important;
}

.transroc-dashboard-page .transroc-content-container {
    max-width: none;
    padding: 0 !important;
}

.transroc-dashboard-page .transroc-footer {
    display: none;
}

.tr-dashboard {
    min-height: 100vh;
}

.tr-dashboard-surface {
    background:
        linear-gradient(90deg, rgba(9, 32, 8, 0.76), rgba(26, 58, 14, 0.42) 44%, rgba(12, 42, 10, 0.76)),
        linear-gradient(180deg, rgba(18, 45, 9, 0.2), rgba(8, 24, 6, 0.38)),
        url("../images/transroc/dashboard-background.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
    overflow: hidden;
    padding: 28px clamp(18px, 2vw, 34px);
    position: relative;
}

.tr-dashboard-surface::before {
    background:
        radial-gradient(ellipse at 78% 5%, transparent 0 11%, rgba(255, 255, 255, 0.13) 11.5%, transparent 12.2%),
        radial-gradient(ellipse at 78% 5%, transparent 0 17%, rgba(255, 255, 255, 0.08) 17.5%, transparent 18.2%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(0, 0, 0, 0.08));
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
}

.tr-dashboard-surface > * {
    position: relative;
    z-index: 1;
}

.tr-dashboard-topbar {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.tr-dashboard-title-group {
    align-items: center;
    color: #fff;
    display: flex;
    gap: 16px;
}

.tr-back-button {
    align-items: center;
    background: rgba(250, 248, 236, 0.92);
    border-radius: 50%;
    color: var(--tr-ink);
    display: inline-flex;
    font-size: 22px;
    height: 52px;
    justify-content: center;
    width: 52px;
}

.tr-back-button:hover {
    background: var(--tr-lime);
    color: var(--tr-ink);
}

.tr-dashboard-title-copy {
    align-items: center;
    display: flex;
    gap: 16px;
}

.tr-dashboard-title-group h1 {
    color: #fff;
    font-size: clamp(34px, 3vw, 46px);
    font-weight: 720;
    line-height: 1;
    margin: 0;
}

.tr-dashboard-title-group p {
    color: rgba(255, 255, 255, 0.88);
    display: flex;
    flex-direction: column;
    font-size: 13px;
    font-weight: 650;
    line-height: 1.25;
    margin: 0;
}

.tr-card-icon {
    align-items: center;
    background: rgba(18, 24, 13, 0.08);
    border-radius: 50%;
    color: var(--tr-ink);
    display: inline-flex;
    flex: 0 0 auto;
    height: 42px;
    justify-content: center;
    width: 42px;
}

.tr-card {
    background: rgba(249, 247, 234, 0.93);
    border: 1px solid rgba(255, 255, 255, 0.48);
    border-radius: 16px;
    box-shadow: var(--tr-shadow);
    color: var(--tr-ink);
}

.tr-field-metric-grid {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    margin-bottom: 14px;
    max-width: none;
}

.tr-field-metric-card {
    align-items: center;
    display: flex;
    gap: 14px;
    grid-column: span 2;
    min-height: 94px;
    min-width: 0;
    padding: 16px 17px;
}

.tr-field-metric-card:nth-child(n+4) {
    grid-column: span 3;
}

.tr-field-metric-card p {
    color: rgba(17, 21, 15, 0.82);
    font-size: 12px;
    font-weight: 650;
    line-height: 1.15;
    margin: 0 0 5px;
}

.tr-field-metric-card strong {
    color: #0d100b;
    display: block;
    font-size: clamp(24px, 1.9vw, 28px);
    font-weight: 720;
    letter-spacing: 0;
    line-height: 0.96;
    margin-bottom: 5px;
}

.tr-field-metric-card small {
    color: rgba(17, 21, 15, 0.72);
    display: block;
    font-size: 12px;
    font-weight: 600;
}

.tr-dashboard-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: minmax(420px, 1.2fr) minmax(330px, 0.9fr) minmax(310px, 0.9fr);
    margin-bottom: 18px;
}

.tr-card-heading {
    align-items: flex-start;
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.tr-card-heading h2 {
    color: var(--tr-ink);
    font-size: 18px;
    font-weight: 720;
    margin: 0;
}

.tr-card-heading p {
    color: rgba(17, 21, 15, 0.62);
    font-size: 14px;
    font-weight: 650;
    margin: 4px 0 0;
}

.tr-card-heading a,
.tr-card-heading button,
.tr-inline-link {
    align-items: center;
    background: rgba(255, 255, 255, 0.68);
    border: 0;
    border-radius: 999px;
    color: var(--tr-green);
    display: inline-flex;
    font-size: 13px;
    font-weight: 650;
    gap: 8px;
    padding: 9px 12px;
}

.tr-card-heading a:hover,
.tr-inline-link:hover {
    color: var(--tr-green-deep);
}

.tr-portfolio-card,
.tr-market-card,
.tr-holdings-card,
.tr-notifications-card {
    padding: 22px 24px;
}

.tr-dashboard-grid .tr-portfolio-card,
.tr-dashboard-grid .tr-market-card {
    background:
        linear-gradient(145deg, rgba(103, 132, 78, 0.86), rgba(70, 101, 49, 0.88));
    border-color: rgba(223, 255, 172, 0.22);
    box-shadow: 0 22px 46px rgba(10, 24, 8, 0.3);
    color: #fff;
}

.tr-dashboard-grid .tr-portfolio-card .tr-card-heading h2,
.tr-dashboard-grid .tr-market-card .tr-card-heading h2 {
    color: #fff;
}

.tr-dashboard-grid .tr-portfolio-card .tr-card-heading button,
.tr-dashboard-grid .tr-market-card .tr-card-heading a {
    background: rgba(255, 255, 255, 0.08);
    color: var(--tr-gold-500);
}

.tr-portfolio-body {
    align-items: center;
    display: grid;
    gap: 20px;
    grid-template-columns: minmax(165px, 185px) minmax(0, 1fr);
    margin-top: 28px;
}

.tr-donut {
    aspect-ratio: 1;
    background: conic-gradient(#4aa52a 0 40%, #f2c400 40% 65%, #3a79d8 65% 85%, #9f78dc 85% 95%, #f0a016 95% 100%);
    border-radius: 50%;
    position: relative;
    width: min(100%, 185px);
}

.tr-donut::after {
    background: rgba(82, 112, 58, 0.98);
    border-radius: 50%;
    content: "";
    inset: 39px;
    position: absolute;
}

.tr-donut-core {
    align-items: center;
    display: flex;
    flex-direction: column;
    inset: 0;
    justify-content: center;
    position: absolute;
    z-index: 1;
}

.tr-donut-core span {
    color: rgba(255, 255, 255, 0.76);
    font-size: 13px;
    font-weight: 650;
}

.tr-donut-core strong {
    color: #fff;
    font-size: 22px;
    font-weight: 760;
}

.tr-portfolio-list {
    display: grid;
    gap: 14px;
    min-width: 0;
}

.tr-portfolio-row {
    align-items: center;
    display: grid;
    gap: 8px;
    grid-template-columns: 16px minmax(68px, 1fr) 40px minmax(66px, auto);
    min-width: 0;
}

.tr-portfolio-row strong,
.tr-portfolio-row b {
    color: #fff;
    font-size: 13px;
    font-weight: 670;
    min-width: 0;
}

.tr-portfolio-row small {
    color: rgba(255, 255, 255, 0.66);
    font-size: 11px;
    font-weight: 560;
    min-width: 0;
    text-align: right;
}

.tr-dot {
    border-radius: 50%;
    display: inline-block;
    height: 14px;
    width: 14px;
}

.tr-dot.is-green {
    background: #4aa52a;
}

.tr-dot.is-yellow {
    background: #f2c400;
}

.tr-dot.is-blue {
    background: #3a79d8;
}

.tr-dot.is-violet {
    background: #9f78dc;
}

.tr-dot.is-orange {
    background: #f0a016;
}

.tr-inline-link {
    background: transparent;
    color: inherit;
    justify-content: center;
    margin-top: 14px;
    padding: 8px 0 0;
}

.tr-dashboard-grid .tr-inline-link {
    color: rgba(255, 255, 255, 0.9);
}

.tr-market-list {
    display: grid;
    gap: 14px;
    margin-top: 22px;
}

.tr-market-row {
    align-items: center;
    display: grid;
    gap: 12px;
    grid-template-columns: 54px minmax(100px, 1fr) 78px 96px;
}

.tr-crop-thumb {
    border-radius: 14px;
    display: inline-block;
    height: 54px;
    overflow: hidden;
    position: relative;
    width: 54px;
}

.tr-crop-thumb::after {
    background: rgba(255, 255, 255, 0.18);
    content: "";
    inset: 0;
    position: absolute;
}

.tr-crop-thumb.is-palm {
    background: radial-gradient(circle at 58% 48%, #bf2a1f 0 24%, #4c2d13 25% 33%, #99a537 34% 60%, #23490f 61%);
}

.tr-crop-thumb.is-maize {
    background: repeating-linear-gradient(90deg, #f9c234 0 7px, #ffd976 7px 12px), linear-gradient(#2f6e1f, #78a835);
}

.tr-crop-thumb.is-rice {
    background: radial-gradient(circle, #fff 0 45%, #dbc89e 46% 58%, #8d6534 59%);
}

.tr-crop-thumb.is-soy {
    background: radial-gradient(circle at 25% 25%, #c8912d 0 7%, transparent 8%), radial-gradient(circle at 60% 55%, #d6a74a 0 8%, transparent 9%), #a86b1b;
    background-size: 20px 20px, 24px 24px, auto;
}

.tr-market-name strong,
.tr-market-name small {
    display: block;
}

.tr-market-name strong {
    font-size: 15px;
    font-weight: 720;
}

.tr-market-name small {
    color: rgba(255, 255, 255, 0.88);
    font-size: 13px;
    font-weight: 620;
    margin-top: 2px;
}

.tr-market-row b {
    font-size: 14px;
    font-weight: 720;
}

.tr-market-row b.is-up {
    color: #368c23;
}

.tr-market-row b.is-down {
    color: #e12e2e;
}

.tr-sparkline {
    height: 42px;
    width: 96px;
}

.tr-sparkline path {
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2.2;
}

.tr-sparkline.is-up path {
    stroke: #4aa52a;
}

.tr-sparkline.is-down path {
    stroke: #e12e2e;
}

.tr-advisor-card {
    background:
        radial-gradient(circle at 82% 12%, rgba(223, 255, 0, 0.22), transparent 26%),
        linear-gradient(150deg, rgba(16, 55, 14, 0.78), rgba(15, 66, 14, 0.92));
    border-radius: 22px;
    box-shadow: var(--tr-shadow);
    color: #fff;
    min-height: 336px;
    overflow: hidden;
    padding: 92px 24px 90px;
    position: relative;
}

.tr-field-controls {
    display: grid;
    gap: 10px;
    position: absolute;
    right: 20px;
    top: 18px;
}

.tr-field-controls span {
    align-items: center;
    background: rgba(250, 248, 236, 0.92);
    border-radius: 50%;
    color: var(--tr-ink);
    display: inline-flex;
    height: 42px;
    justify-content: center;
    width: 42px;
}

.tr-advisor-copy {
    max-width: 320px;
    position: relative;
    z-index: 2;
}

.tr-advisor-copy p {
    color: rgba(255, 255, 255, 0.94);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.45;
    margin: 0 0 18px;
}

.tr-advisor-copy strong {
    color: var(--tr-lime);
    font-weight: 760;
}

.tr-advisor-copy a {
    background: var(--tr-lime);
    border-radius: 999px;
    color: #14210b;
    display: inline-flex;
    font-size: 14px;
    font-weight: 720;
    padding: 12px 24px;
}

.tr-assistant-bar {
    align-items: center;
    background: rgba(249, 247, 234, 0.93);
    border-radius: 16px;
    bottom: 18px;
    display: grid;
    gap: 10px;
    grid-template-columns: 44px minmax(0, 1fr) 44px 38px;
    left: 20px;
    padding: 10px;
    position: absolute;
    right: 20px;
    z-index: 3;
}

.tr-assistant-bar span,
.tr-assistant-bar button {
    align-items: center;
    border: 0;
    border-radius: 50%;
    display: inline-flex;
    height: 38px;
    justify-content: center;
    width: 38px;
}

.tr-assistant-bar span {
    background: rgba(17, 21, 15, 0.08);
    color: var(--tr-ink);
}

.tr-assistant-bar input {
    background: transparent;
    border: 0;
    color: var(--tr-ink);
    font-size: 14px;
    font-weight: 650;
    outline: 0;
    width: 100%;
}

.tr-assistant-bar button {
    background: #fff;
    color: var(--tr-ink);
}

.tr-assistant-bar button[type="submit"] {
    background: var(--tr-lime);
}

.tr-lower-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: minmax(720px, 2.15fr) minmax(300px, 0.85fr);
}

.tr-holdings-card,
.tr-notifications-card {
    background:
        linear-gradient(145deg, rgba(93, 124, 67, 0.9), rgba(58, 89, 41, 0.92));
    border-color: rgba(223, 255, 172, 0.2);
    box-shadow: 0 22px 46px rgba(10, 24, 8, 0.3);
    color: #fff;
    min-width: 0;
}

.tr-holdings-card .tr-card-heading h2,
.tr-notifications-card .tr-card-heading h2 {
    color: #fff;
}

.tr-holdings-card .tr-card-heading a,
.tr-notifications-card .tr-card-heading a {
    background: transparent;
    color: var(--tr-gold-500);
    padding-right: 0;
}

.tr-holdings-table-wrap {
    margin-top: 12px;
    max-width: 100%;
    overflow-x: auto;
}

.tr-holdings-table {
    border-collapse: collapse;
    color: rgba(255, 255, 255, 0.88);
    min-width: 850px;
    width: 100%;
}

.tr-holdings-table th {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.82);
    font-size: 11px;
    font-weight: 650;
    padding: 9px 10px;
    text-align: left;
    white-space: nowrap;
}

.tr-holdings-table td {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 12px;
    font-weight: 560;
    padding: 8px 10px;
    vertical-align: middle;
    white-space: nowrap;
}

.tr-holdings-table tbody tr:last-child td {
    border-bottom: 0;
}

.tr-holding-commodity {
    align-items: center;
    display: inline-flex;
    gap: 10px;
}

.tr-holding-commodity .tr-crop-thumb {
    border-radius: 10px;
    height: 38px;
    width: 38px;
}

.tr-holding-commodity strong,
.tr-holding-commodity small {
    display: block;
}

.tr-holding-commodity strong {
    color: #fff;
    font-size: 13px;
    font-weight: 680;
    line-height: 1.1;
}

.tr-holding-commodity small {
    color: rgba(255, 255, 255, 0.68);
    font-size: 11px;
    margin-top: 2px;
}

.tr-return-positive {
    color: #cfff2f;
    font-weight: 700;
}

.tr-holdings-table button {
    align-items: center;
    background: transparent;
    border: 0;
    color: rgba(255, 255, 255, 0.86);
    display: inline-flex;
    font-size: 18px;
    height: 28px;
    justify-content: center;
    width: 28px;
}

.tr-crop-thumb.is-cocoa {
    background: radial-gradient(circle at 28% 28%, #6c351c 0 8%, transparent 9%), radial-gradient(circle at 62% 58%, #8b4b26 0 9%, transparent 10%), #4f2414;
    background-size: 18px 18px, 22px 22px, auto;
}

.tr-notification-list {
    display: grid;
    gap: 0;
    margin-top: 13px;
}

.tr-notification-item {
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    display: grid;
    gap: 10px;
    grid-template-columns: 36px minmax(0, 1fr) auto;
    padding: 12px 0;
}

.tr-notification-item:last-child {
    border-bottom: 0;
}

.tr-notification-item:hover {
    color: #fff;
}

.tr-notification-icon {
    align-items: center;
    border-radius: 10px;
    color: #fff;
    display: inline-flex;
    height: 34px;
    justify-content: center;
    width: 34px;
}

.tr-notification-icon.is-green {
    background: linear-gradient(135deg, #7acc37, #43a12a);
}

.tr-notification-icon.is-blue {
    background: linear-gradient(135deg, #3e84e8, #275fd1);
}

.tr-notification-icon.is-orange {
    background: linear-gradient(135deg, #f2a027, #db6f16);
}

.tr-notification-icon.is-lime {
    background: linear-gradient(135deg, #9fdb47, #58a72c);
}

.tr-notification-copy {
    min-width: 0;
}

.tr-notification-copy strong,
.tr-notification-copy small {
    display: block;
}

.tr-notification-copy strong {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}

.tr-notification-copy small {
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    line-height: 1.35;
    margin-top: 2px;
}

.tr-notification-item time {
    color: rgba(255, 255, 255, 0.72);
    font-size: 10px;
    white-space: nowrap;
}

/* Root dashboard reference refresh */
.transroc-dashboard-page {
    --tr-sidebar-width: 232px;
    --tr-panel: rgba(252, 250, 238, 0.92);
    --tr-panel-strong: rgba(252, 250, 238, 0.97);
    --tr-panel-border: rgba(255, 255, 255, 0.66);
    --tr-olive: #4f6a3a;
    --tr-sidebar-active: var(--tr-brand-sage-800);
    --tr-chart-lime: #d8f20a;
    --tr-dashboard-shadow: 0 18px 42px rgba(12, 35, 14, 0.16);
    --tr-dashboard-copy-size: 12px;
    --tr-dashboard-copy-weight: 520;
    --tr-dashboard-heading-size: 16px;
    --tr-dashboard-heading-weight: 600;
    --tr-dashboard-value-size: clamp(17px, 1.12vw, 22px);
    --tr-dashboard-value-weight: 600;
}

.transroc-dashboard-page .tr-dashboard :where(
    h1,
    h2,
    h3,
    p,
    a,
    button,
    input,
    span,
    strong,
    b,
    small,
    th,
    td
):not(.ni):not(.icon) {
    font-family: var(--transroc-font-family) !important;
    letter-spacing: 0;
}

.transroc-shell .transroc-sidebar {
    background:
        linear-gradient(180deg, rgba(249, 250, 243, 0.98), rgba(231, 238, 220, 0.97));
    --tr-sidebar-pad-x: 14px;
    border-right: 1px solid rgba(82, 105, 63, 0.18);
    box-shadow: 18px 0 48px rgba(57, 82, 43, 0.13);
}

.transroc-shell .transroc-sidebar-head {
    padding: 12px var(--tr-sidebar-pad-x) 4px;
}

.transroc-shell .transroc-brand-link {
    background: linear-gradient(145deg, rgba(2, 7, 3, 0.98), rgba(12, 23, 10, 0.96) 54%, rgba(22, 38, 18, 0.94));
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.34);
    color: var(--tr-white);
    margin: 0 auto;
    padding: 7px 9px;
    width: min(172px, 100%);
}

.transroc-shell .transroc-brand-logo {
    filter: drop-shadow(0 7px 14px rgba(0, 0, 0, 0.52));
    max-height: 86px;
    width: 108px;
}

.transroc-shell .transroc-brand-link-sm {
    border-radius: 12px;
    padding: 5px 7px;
    width: auto;
}

.transroc-shell .transroc-brand-link-sm .transroc-brand-logo {
    max-height: 46px;
    width: 54px;
}

.transroc-shell .transroc-sidebar-content {
    padding: 0 var(--tr-sidebar-pad-x) 6px;
}

.transroc-shell .transroc-sidebar-utilities {
    gap: 6px;
    margin: 0 0 8px;
}

.transroc-shell .transroc-sidebar-menu {
    margin-top: 0;
    scrollbar-color: rgba(8, 45, 33, 0.22) transparent;
}

.transroc-shell .transroc-sidebar-menu::-webkit-scrollbar-thumb {
    background: rgba(8, 45, 33, 0.22);
}

.transroc-shell .transroc-menu-heading {
    display: none;
    margin: 0;
}

.transroc-shell .transroc-menu-heading h6 {
    color: rgba(25, 36, 28, 0.42);
    font-size: 10px;
}

.transroc-shell .transroc-menu {
    display: grid;
    gap: 6px;
}

.transroc-shell .transroc-menu-item {
    margin-bottom: 0;
}

.transroc-shell .transroc-menu-link {
    align-items: center;
    border-radius: 999px;
    color: rgba(31, 39, 33, 0.84) !important;
    font-size: 12px;
    font-weight: 560;
    gap: 8px;
    line-height: 1.18;
    min-height: 40px;
    min-width: 0;
    overflow: hidden;
    padding: 0 8px !important;
}

.transroc-shell .transroc-menu-link:hover {
    background: rgba(88, 114, 68, 0.13);
    color: var(--tr-brand-sage-900) !important;
    transform: none;
}

.transroc-shell .transroc-menu-item.active > .transroc-menu-link,
.transroc-shell .transroc-menu-link[aria-current="page"] {
    background: var(--tr-sidebar-active);
    box-shadow: 0 14px 28px rgba(58, 78, 42, 0.22);
    color: #fff !important;
    font-weight: 620;
}

.transroc-shell .transroc-menu-icon {
    color: currentColor !important;
    flex: 0 0 22px;
    font-size: 20px;
    min-width: 22px;
}

.transroc-shell .transroc-menu-item.has-sub > .transroc-menu-link {
    padding-right: 8px !important;
}

.transroc-shell .transroc-menu-caret {
    color: currentColor;
    flex: 0 0 auto;
    font-size: 11px;
    margin-left: auto;
    opacity: 0.72;
    transition: transform 180ms ease;
}

.transroc-shell .transroc-menu-text {
    flex: 1 1 auto;
    min-width: 0;
    overflow-wrap: anywhere;
    white-space: normal;
}

.transroc-shell .transroc-menu-sub {
    border-left: 1px solid rgba(88, 114, 68, 0.2);
    display: grid;
    gap: 5px;
    list-style: none;
    margin: 7px 0 9px 22px;
    padding: 0 0 0 11px;
}

.transroc-shell .transroc-menu-sub[data-depth="2"] {
    margin-left: 16px;
}

.transroc-shell .transroc-menu-sub[data-depth="3"],
.transroc-shell .transroc-menu-sub[data-depth="4"] {
    margin-left: 12px;
}

.transroc-shell .transroc-menu-item.has-sub:not(.is-open) > .transroc-menu-sub {
    display: none !important;
}

.transroc-shell .transroc-menu-item.has-sub.active > .transroc-menu-link .transroc-menu-caret,
.transroc-shell .transroc-menu-item.has-sub.is-open > .transroc-menu-link .transroc-menu-caret {
    transform: rotate(180deg);
}

.transroc-shell .transroc-menu-sub .transroc-menu-link {
    border-radius: 14px;
    background: transparent;
    box-shadow: none;
    color: rgba(31, 39, 33, 0.72) !important;
    font-size: 11.5px;
    min-height: 36px;
    padding: 0 8px !important;
}

.transroc-shell .transroc-menu-sub[data-depth="2"] .transroc-menu-link,
.transroc-shell .transroc-menu-sub[data-depth="3"] .transroc-menu-link,
.transroc-shell .transroc-menu-sub[data-depth="4"] .transroc-menu-link {
    font-size: 11.5px;
    min-height: 34px;
}

.transroc-shell .transroc-menu-sub .transroc-menu-link:hover {
    background: rgba(88, 114, 68, 0.11);
    color: var(--tr-brand-sage-900) !important;
}

.transroc-shell .transroc-menu-sub .transroc-menu-item.active > .transroc-menu-link {
    background: var(--tr-sidebar-active);
    box-shadow: 0 10px 20px rgba(58, 78, 42, 0.18);
    color: #fff !important;
}

.transroc-shell .transroc-menu-sub .transroc-menu-icon {
    display: none;
}

.transroc-shell .transroc-sidebar-footer {
    background: transparent;
    border-top: 1px solid rgba(25, 36, 28, 0.1);
    bottom: 0;
    gap: 6px;
    margin-top: auto;
    padding-top: 6px;
    position: sticky;
    z-index: 2;
}

.transroc-shell .transroc-utility-link,
.transroc-shell .transroc-profile-card {
    color: rgba(31, 39, 33, 0.86);
}

.transroc-shell .transroc-sidebar-utilities .transroc-utility-link,
.transroc-shell .transroc-sidebar-bottom-utilities .transroc-utility-link {
    min-height: 40px;
    padding: 0 8px;
}

.transroc-shell .transroc-sidebar-bottom-utilities {
    gap: 5px;
    margin-bottom: 4px;
}

.transroc-shell .transroc-profile-card {
    margin-top: 6px;
    min-height: 42px;
    padding: 8px;
}

.transroc-shell .transroc-utility-link span {
    font-size: 12px;
    gap: 8px;
}

.transroc-shell .transroc-utility-link em {
    background: rgba(25, 36, 28, 0.08);
    height: 30px;
    width: 30px;
}

.transroc-shell .transroc-utility-link:hover,
.transroc-shell .transroc-profile-card:hover {
    background: rgba(88, 114, 68, 0.11);
    color: var(--tr-brand-sage-900);
}

.transroc-shell .transroc-utility-link.is-active {
    background: var(--tr-sidebar-active);
    box-shadow: 0 14px 28px rgba(58, 78, 42, 0.2);
    color: #fff;
}

.transroc-shell .transroc-utility-link.is-active em {
    background: rgba(255, 255, 255, 0.16);
}

.transroc-shell .transroc-profile-card[aria-expanded="true"] {
    background: rgba(88, 114, 68, 0.13);
    color: var(--tr-brand-sage-900);
}

.transroc-shell .transroc-profile-dropdown {
    background: rgba(255, 255, 248, 0.94);
    border-color: rgba(25, 36, 28, 0.1);
    box-shadow: 0 14px 34px rgba(24, 42, 27, 0.14);
}

.transroc-shell .transroc-profile-dropdown a {
    color: rgba(31, 39, 33, 0.82);
}

.transroc-shell .transroc-profile-dropdown a:hover {
    background: rgba(88, 114, 68, 0.12);
    color: var(--tr-brand-sage-900);
}

.transroc-shell .transroc-utility-link em {
    background: rgba(21, 37, 24, 0.08);
}

.transroc-shell .transroc-utility-link strong {
    background: var(--tr-chart-lime);
    color: var(--tr-green-950);
}

.transroc-shell .transroc-profile-avatar {
    background: linear-gradient(135deg, #f1f4cf, var(--tr-brand-sage-700));
    color: #1f2a1f;
}

.transroc-shell .transroc-profile-copy strong {
    color: #20291f;
}

.transroc-shell .transroc-profile-copy small {
    color: rgba(31, 39, 33, 0.58);
}

.transroc-dashboard-page .tr-dashboard-surface {
    background:
        linear-gradient(90deg, rgba(20, 58, 12, 0.24), rgba(29, 74, 14, 0.1) 42%, rgba(21, 61, 12, 0.16)),
        linear-gradient(180deg, rgba(248, 247, 232, 0.06), rgba(18, 52, 10, 0.16)),
        url("../images/transroc/dashboard-field-aerial-placeholder.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: grid;
    gap: 12px;
    grid-template-columns: minmax(0, 1fr);
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 16px clamp(14px, 1.4vw, 24px) 16px;
}

.transroc-dashboard-page .tr-dashboard-bg {
    height: 100%;
    inset: 0;
    object-fit: cover;
    object-position: center;
    pointer-events: none;
    position: absolute;
    width: 100%;
    z-index: 0;
}

.transroc-dashboard-page .tr-dashboard-surface::before {
    background:
        radial-gradient(ellipse at 65% 7%, transparent 0 10%, rgba(255, 255, 255, 0.14) 10.5%, transparent 11%),
        radial-gradient(ellipse at 65% 7%, transparent 0 16%, rgba(255, 255, 255, 0.09) 16.5%, transparent 17%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(4, 18, 6, 0.07));
    z-index: 1;
}

.transroc-dashboard-page .tr-dashboard-surface > *:not(.tr-dashboard-bg) {
    min-width: 0;
    position: relative;
    z-index: 2;
}

.transroc-dashboard-page .tr-dashboard-topbar {
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 0;
}

.transroc-dashboard-page .tr-dashboard-title-group {
    color: #fff;
    gap: 14px;
}

.transroc-dashboard-page .tr-back-button {
    background: var(--tr-panel-strong);
    box-shadow: 0 16px 34px rgba(11, 29, 11, 0.15);
    height: 46px;
    width: 46px;
}

.transroc-dashboard-page .tr-dashboard-title-copy {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
}

.transroc-dashboard-page .tr-dashboard-title-group h1 {
    font-size: clamp(28px, 2vw, 38px);
    font-weight: 400;
    letter-spacing: 0;
}

.transroc-dashboard-page .tr-dashboard-title-group p {
    color: rgba(255, 255, 255, 0.88);
    display: block;
    font-size: 14px;
    font-weight: 400;
}

.tr-field-zone {
    display: grid;
    gap: 10px;
    max-width: none;
}

.tr-dashboard-main {
    align-items: stretch;
    display: grid;
    gap: 12px;
    grid-template-columns: minmax(0, 1fr) minmax(310px, 370px);
    min-width: 0;
}

.tr-dashboard-primary {
    display: grid;
    gap: 12px;
    min-width: 0;
}

.transroc-dashboard-page .tr-field-metric-grid {
    column-gap: 12px;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    margin-bottom: 0;
    max-width: none;
    row-gap: 14px;
}

.transroc-dashboard-page .tr-field-metric-card {
    align-items: flex-start;
    background: rgba(252, 250, 238, 0.94);
    border-color: rgba(255, 255, 255, 0.58);
    border-radius: 14px;
    gap: 14px;
    grid-column: span 2;
    min-height: 116px;
    min-width: 0;
    overflow: hidden;
    padding: 18px;
}

.transroc-dashboard-page .tr-field-metric-card:nth-child(n+4) {
    grid-column: span 3;
}

.transroc-dashboard-page .tr-field-metric-card .tr-card-icon {
    background: rgba(18, 24, 13, 0.08);
    color: #1d241d;
    height: 42px;
    overflow: hidden;
    width: 42px;
}

.transroc-dashboard-page .tr-field-metric-card .tr-card-icon em {
    font-size: 23px;
}

.transroc-dashboard-page .tr-field-metric-card > div {
    min-width: 0;
    width: 100%;
}

.transroc-dashboard-page .tr-field-metric-card .tr-field-image img {
    display: block;
    height: 100%;
    object-fit: contain;
    width: 100%;
}

.tr-field-symbol {
    color: #1d241d;
    position: relative;
}

.tr-field-symbol.is-sprout em,
.tr-field-symbol.is-drop em {
    display: none;
}

.tr-field-symbol.is-sprout::before,
.tr-field-symbol.is-sprout::after,
.tr-field-symbol.is-drop::before {
    content: "";
    position: absolute;
}

.tr-field-symbol.is-sprout::before {
    background: currentColor;
    border-radius: 999px;
    height: 20px;
    left: 50%;
    top: 17px;
    transform: translateX(-50%) rotate(-8deg);
    transform-origin: bottom center;
    width: 2px;
}

.tr-field-symbol.is-sprout::after {
    background:
        radial-gradient(ellipse 10px 6px at 7px 13px, currentColor 0 62%, transparent 64%),
        radial-gradient(ellipse 11px 7px at 20px 7px, currentColor 0 62%, transparent 64%);
    height: 21px;
    left: 8px;
    top: 9px;
    transform: rotate(8deg);
    width: 27px;
}

.tr-field-symbol.is-drop::before {
    border: 2px solid currentColor;
    border-left-color: currentColor;
    border-radius: 54% 54% 54% 12%;
    height: 22px;
    left: 11px;
    top: 10px;
    transform: rotate(45deg);
    width: 22px;
}

.transroc-dashboard-page .tr-field-metric-card p {
    color: rgba(31, 39, 33, 0.82);
    font-size: var(--tr-dashboard-copy-size);
    font-weight: var(--tr-dashboard-copy-weight);
    line-height: 1.16;
    margin-bottom: 14px;
    max-width: 100%;
    overflow-wrap: anywhere;
}

.transroc-dashboard-page .tr-field-metric-card strong {
    align-items: baseline;
    color: #111812;
    display: inline-flex;
    font-size: var(--tr-dashboard-value-size);
    font-weight: var(--tr-dashboard-value-weight);
    line-height: 0.95;
    max-width: 100%;
    min-width: 0;
    white-space: nowrap;
}

.transroc-dashboard-page .tr-field-metric-card .tr-counter {
    display: block;
    font-size: 1em;
    font-weight: inherit;
    line-height: inherit;
    max-width: 100%;
    min-width: 0;
}

.transroc-dashboard-page .tr-field-metric-card strong small {
    display: inline;
    font-size: 0.56em;
    font-weight: var(--tr-dashboard-copy-weight);
    margin-left: 2px;
}

.transroc-dashboard-page .tr-field-metric-card .tr-field-meta {
    align-items: center;
    color: rgba(31, 39, 33, 0.78);
    display: flex;
    gap: 6px;
    font-size: var(--tr-dashboard-copy-size);
    font-weight: var(--tr-dashboard-copy-weight);
    line-height: 1.2;
    margin-top: 14px;
    min-width: 0;
}

.transroc-dashboard-page .tr-field-metric-card .tr-field-meta em {
    flex: 0 0 auto;
    font-size: 15px;
}

.transroc-dashboard-page .tr-field-metric-card .tr-field-meta span {
    min-width: 0;
}

.transroc-dashboard-page .tr-field-metric-card .tr-field-meta.is-positive {
    color: #3f9e3a;
}

.tr-cultivation-grid {
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 560px;
}

.tr-cultivation-card {
    align-items: center;
    display: grid;
    min-height: 108px;
    padding: 12px;
}

.tr-cultivation-score-card {
    align-content: center;
}

.tr-cultivation-crops-card {
    align-content: stretch;
}

.tr-cultivation-overview {
    align-items: center;
    display: grid;
    gap: 8px;
    grid-template-columns: 78px minmax(0, 1fr);
    min-width: 0;
}

.tr-tractor-visual {
    align-items: center;
    display: flex;
    height: 58px;
    justify-content: center;
    width: 78px;
}

.tr-tractor-visual img {
    display: block;
    height: 100%;
    object-fit: contain;
    width: 100%;
}

.tr-tractor-body,
.tr-tractor-cab,
.tr-tractor-wheel {
    position: absolute;
}

.tr-tractor-body {
    background: linear-gradient(135deg, #64b73f, #225f2d);
    border-radius: 12px 16px 12px 12px;
    bottom: 35px;
    box-shadow: inset 0 -8px 0 rgba(8, 45, 33, 0.26), 0 16px 30px rgba(18, 44, 20, 0.2);
    height: 45px;
    left: 38px;
    width: 104px;
}

.tr-tractor-body::before {
    background: #1b2a21;
    border-radius: 999px;
    content: "";
    height: 7px;
    left: 96px;
    position: absolute;
    top: 12px;
    width: 34px;
}

.tr-tractor-cab {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(181, 206, 175, 0.62));
    border: 5px solid #2f8237;
    border-radius: 12px 14px 8px 8px;
    bottom: 70px;
    height: 43px;
    left: 66px;
    width: 52px;
}

.tr-tractor-wheel {
    background:
        radial-gradient(circle, #eff1e4 0 28%, #1a211c 29% 51%, #0c100d 52%);
    border: 5px solid #2f332d;
    border-radius: 50%;
    bottom: 16px;
}

.tr-tractor-wheel.is-large {
    height: 62px;
    left: 36px;
    width: 62px;
}

.tr-tractor-wheel.is-small {
    height: 42px;
    left: 116px;
    width: 42px;
}

.tr-cultivation-score {
    min-width: 0;
}

.tr-cultivation-score > span {
    background: var(--tr-chart-lime);
    border-radius: 999px;
    color: #1f2919;
    display: inline-flex;
    font-size: 11px;
    font-weight: 720;
    line-height: 1;
    margin-bottom: 8px;
    padding: 6px 10px;
}

.tr-cultivation-score strong {
    color: #121812;
    display: block;
    font-size: clamp(32px, 2.2vw, 40px);
    font-weight: 500;
    line-height: 0.82;
}

.tr-cultivation-score strong small {
    font-size: 0.42em;
    font-weight: 500;
}

.tr-cultivation-score p {
    color: rgba(31, 39, 33, 0.72);
    font-size: 13px;
    font-weight: 640;
    margin: 8px 0 0;
}

.tr-cultivation-crops {
    display: grid;
    gap: 6px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tr-cultivation-crop,
.tr-add-crop-button {
    align-items: center;
    border: 0;
    border-radius: 11px;
    display: grid;
    min-height: 42px;
}

.tr-cultivation-crop {
    background: rgba(255, 255, 248, 0.45);
    grid-template-columns: 44px minmax(0, 1fr);
    overflow: hidden;
}

.tr-cultivation-crop img,
.tr-crop-illustration {
    box-sizing: border-box;
    display: block;
    height: 42px;
    object-fit: contain;
    padding: 5px;
    width: 44px;
}

.tr-crop-illustration.is-potato {
    background:
        radial-gradient(circle at 34% 55%, #e4ae4d 0 16%, transparent 17%),
        radial-gradient(circle at 54% 45%, #f0c06a 0 19%, transparent 20%),
        radial-gradient(circle at 69% 60%, #d99a38 0 15%, transparent 16%),
        linear-gradient(135deg, #fff8df, #efe0ad);
}

.tr-crop-illustration.is-carrot {
    background:
        linear-gradient(155deg, transparent 0 20%, #f47c27 21% 35%, transparent 36%),
        linear-gradient(164deg, transparent 0 25%, #e85f1c 26% 41%, transparent 42%),
        linear-gradient(148deg, transparent 0 35%, #f99235 36% 51%, transparent 52%),
        radial-gradient(circle at 22% 20%, #4fb950 0 9%, transparent 10%),
        linear-gradient(135deg, #fff8df, #efe0ad);
}

.tr-cultivation-crop span {
    display: grid;
    gap: 3px;
    min-width: 0;
    padding: 0 9px;
}

.tr-cultivation-crop strong,
.tr-add-crop-button span {
    color: #1d241d;
    font-size: 13px;
    font-weight: 680;
    line-height: 1.1;
}

.tr-cultivation-crop small {
    color: rgba(31, 39, 33, 0.72);
    font-size: 11px;
    font-weight: 600;
}

.tr-add-crop-button {
    background: var(--tr-chart-lime);
    color: #1d241d;
    cursor: pointer;
    gap: 8px;
    grid-template-columns: 30px minmax(0, 1fr);
    justify-content: start;
    padding: 0 10px;
    text-align: left;
}

.tr-add-crop-button em {
    align-items: center;
    background: rgba(31, 39, 33, 0.08);
    border-radius: 50%;
    display: inline-flex;
    font-size: 16px;
    height: 30px;
    justify-content: center;
    width: 30px;
}

.tr-summary-card {
    align-items: center;
    display: flex;
    gap: 12px;
}

.tr-summary-card p {
    color: rgba(31, 39, 33, 0.62);
    font-size: 12px;
    font-weight: 620;
    line-height: 1.2;
    margin: 0 0 7px;
}

.tr-summary-grid {
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tr-summary-card {
    min-height: 108px;
    padding: 18px;
}

.tr-summary-card .tr-card-icon {
    background: rgba(21, 37, 24, 0.08);
    height: 40px;
    width: 40px;
}

.tr-summary-card strong {
    color: #111812;
    display: block;
    font-size: clamp(20px, 1.35vw, 25px);
    font-weight: 560;
    line-height: 1.05;
    margin-bottom: 14px;
    white-space: nowrap;
}

.tr-summary-card small {
    color: rgba(31, 39, 33, 0.72);
    display: block;
    font-size: 12px;
    font-weight: 560;
}

.tr-summary-card small.is-positive {
    color: #3f9e3a;
}

.transroc-dashboard-page .tr-card {
    background: var(--tr-panel);
    border: 1px solid var(--tr-panel-border);
    border-radius: 16px;
    box-shadow: var(--tr-dashboard-shadow);
}

.transroc-dashboard-page .tr-dashboard-grid {
    align-items: stretch;
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 0;
    min-width: 0;
}

.transroc-dashboard-page .tr-dashboard-grid .tr-portfolio-card,
.transroc-dashboard-page .tr-dashboard-grid .tr-market-card {
    background: var(--tr-panel);
    border-color: var(--tr-panel-border);
    box-shadow: var(--tr-dashboard-shadow);
    color: #1d241d;
}

.transroc-dashboard-page .tr-dashboard-grid .tr-portfolio-card {
    grid-column: auto;
}

.transroc-dashboard-page .tr-portfolio-card,
.transroc-dashboard-page .tr-market-card {
    min-height: 286px;
    padding: 18px 20px;
}

.transroc-dashboard-page .tr-portfolio-card {
    background: rgba(252, 250, 238, 0.94);
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 18px 20px 18px;
}

.transroc-dashboard-page .tr-card-heading h2,
.transroc-dashboard-page .tr-dashboard-grid .tr-portfolio-card .tr-card-heading h2,
.transroc-dashboard-page .tr-dashboard-grid .tr-market-card .tr-card-heading h2 {
    color: #1d241d;
    font-size: 16px;
    font-weight: 500;
}

.transroc-dashboard-page .tr-dashboard-grid .tr-portfolio-card .tr-card-heading h2 {
    font-size: 15px;
    font-weight: 540;
    line-height: 1.15;
    white-space: nowrap;
}

.transroc-dashboard-page .tr-card-heading p {
    color: rgba(31, 39, 33, 0.6);
    font-size: 13px;
}

.transroc-dashboard-page .tr-card-heading a,
.transroc-dashboard-page .tr-card-heading button,
.transroc-dashboard-page .tr-dashboard-grid .tr-portfolio-card .tr-card-heading button,
.transroc-dashboard-page .tr-dashboard-grid .tr-market-card .tr-card-heading a {
    background: rgba(255, 255, 248, 0.72);
    color: #4d913d;
    font-weight: 600;
}

.transroc-dashboard-page .tr-portfolio-heading {
    align-items: center;
    display: grid;
    gap: 10px;
    grid-template-columns: minmax(0, 1fr) auto;
}

.transroc-dashboard-page .tr-filter-pill {
    background: rgba(255, 255, 255, 0.78) !important;
    border-radius: 999px;
    color: #1d241d !important;
    font-size: 12px;
    font-weight: 560 !important;
    min-height: 32px;
    padding: 0 13px;
    white-space: nowrap;
}

.transroc-dashboard-page .tr-portfolio-body {
    align-items: center;
    display: grid;
    gap: 14px;
    grid-template-columns: minmax(134px, 0.66fr) minmax(0, 1fr);
    margin-top: 18px;
    min-width: 0;
}

.transroc-dashboard-page .tr-donut {
    align-self: center;
    box-shadow: none;
    height: clamp(136px, 9.6vw, 156px);
    justify-self: center;
    width: clamp(136px, 9.6vw, 156px);
}

.transroc-dashboard-page .tr-chart-donut {
    background: transparent;
    overflow: hidden;
}

.transroc-dashboard-page .tr-chart-donut canvas {
    height: 100% !important;
    inset: 0;
    position: absolute;
    width: 100% !important;
    z-index: 0;
}

.transroc-dashboard-page .tr-donut::after {
    background: rgba(252, 250, 238, 0.98);
    box-shadow: inset 0 0 0 1px rgba(31, 39, 33, 0.03);
    inset: 31%;
    z-index: 1;
}

.transroc-dashboard-page .tr-donut-core {
    pointer-events: none;
    z-index: 2;
}

.transroc-dashboard-page .tr-donut-core span {
    color: rgba(31, 39, 33, 0.72);
    font-size: 12px;
    font-weight: 640;
    line-height: 1.1;
    margin-bottom: 5px;
}

.transroc-dashboard-page .tr-donut-core strong {
    color: #1d241d;
    font-size: 15px;
    font-weight: 720;
    line-height: 1;
}

.transroc-dashboard-page .tr-portfolio-list {
    display: grid;
    gap: 7px;
    min-width: 0;
}

.transroc-dashboard-page .tr-portfolio-row.is-green {
    --allocation-color: #43a52a;
}

.transroc-dashboard-page .tr-portfolio-row.is-yellow {
    --allocation-color: #f2c400;
}

.transroc-dashboard-page .tr-portfolio-row.is-blue {
    --allocation-color: #3a79d8;
}

.transroc-dashboard-page .tr-portfolio-row.is-violet {
    --allocation-color: #9f78dc;
}

.transroc-dashboard-page .tr-portfolio-row.is-orange {
    --allocation-color: #f0a016;
}

.transroc-dashboard-page .tr-portfolio-row {
    align-items: center;
    background: transparent;
    border: 0;
    border-radius: 0;
    display: grid;
    grid-template-areas:
        "dot label percent"
        ". amount amount";
    grid-template-columns: 12px minmax(0, 1fr) auto;
    min-height: 33px;
    min-width: 0;
    padding: 0;
    row-gap: 1px;
    column-gap: 8px;
}

.transroc-dashboard-page .tr-portfolio-row .tr-dot {
    grid-area: dot;
    height: 12px;
    width: 12px;
}

.transroc-dashboard-page .tr-portfolio-row strong,
.transroc-dashboard-page .tr-portfolio-row b {
    color: #263024;
    font-size: 13px;
    font-weight: 580;
    line-height: 1.05;
    min-width: 0;
}

.transroc-dashboard-page .tr-portfolio-row strong {
    grid-area: label;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.transroc-dashboard-page .tr-portfolio-row b {
    grid-area: percent;
    text-align: right;
}

.transroc-dashboard-page .tr-portfolio-row small {
    color: rgba(31, 39, 33, 0.54);
    font-size: 10.5px;
    font-weight: 540;
    grid-area: amount;
    line-height: 1.15;
    min-width: 0;
    text-align: right;
    overflow-wrap: anywhere;
    white-space: normal;
}

.transroc-dashboard-page .tr-portfolio-footer {
    align-items: center;
    border-top: 0;
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 16px;
    padding-top: 0;
}

.transroc-dashboard-page .tr-dashboard-grid .tr-inline-link {
    color: #263024;
    justify-content: flex-end;
    margin-top: 16px;
}

.transroc-dashboard-page .tr-portfolio-footer .tr-inline-link {
    color: #1d241d;
    font-size: 13px;
    font-weight: 560;
    gap: 12px;
    justify-content: center;
    margin-top: 0;
    padding: 0;
    white-space: nowrap;
}

.transroc-dashboard-page .tr-portfolio-footer .tr-inline-link em {
    font-size: 1.35em;
}

.transroc-dashboard-page .tr-market-list {
    display: grid;
    flex: 1 1 auto;
    gap: 10px;
    grid-template-rows: repeat(4, minmax(0, 1fr));
    margin-top: 22px;
    min-height: 0;
    min-width: 0;
}

.transroc-dashboard-page .tr-market-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 22px 24px 20px;
}

.transroc-dashboard-page .tr-market-card .tr-card-heading {
    align-items: center;
    flex-wrap: nowrap;
}

.transroc-dashboard-page .tr-market-card .tr-card-heading h2 {
    font-size: 16px;
    font-weight: 560;
    white-space: nowrap;
}

.transroc-dashboard-page .tr-market-card .tr-card-heading a {
    font-size: 11px;
    padding: 7px 10px;
}

.transroc-dashboard-page .tr-market-row {
    align-items: center;
    gap: 12px;
    grid-template-columns: 42px minmax(76px, 1fr) minmax(58px, auto) minmax(88px, 28%);
    min-height: 0;
    min-width: 0;
    overflow: hidden;
}

.transroc-dashboard-page .tr-crop-thumb {
    background: rgba(255, 255, 248, 0.86);
    border-radius: 10px;
    height: 42px;
    width: 42px;
}

.transroc-dashboard-page .tr-crop-thumb::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.08));
}

.transroc-dashboard-page .tr-crop-thumb img {
    box-sizing: border-box;
    display: block;
    height: 100%;
    object-fit: cover;
    padding: 0;
    width: 100%;
}

.transroc-dashboard-page .tr-market-name strong {
    color: #1d241d;
    font-size: 13px;
    font-weight: 560;
}

.transroc-dashboard-page .tr-market-name small {
    color: rgba(31, 39, 33, 0.72);
    font-size: 11px;
}

.transroc-dashboard-page .tr-market-row b {
    font-size: 12px;
    font-weight: 620;
    white-space: nowrap;
}

.transroc-dashboard-page .tr-market-row b.is-up {
    color: #48a745;
}

.transroc-dashboard-page .tr-market-chart-wrap {
    display: block;
    height: 36px;
    min-width: 0;
    width: 100%;
}

.transroc-dashboard-page .tr-market-chart-wrap canvas {
    display: block;
    height: 100% !important;
    width: 100% !important;
}

.tr-chart-tooltip {
    background: rgba(17, 22, 18, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(8, 22, 12, 0.28);
    box-sizing: border-box;
    color: #ffffff;
    max-width: min(260px, calc(100vw - 20px));
    min-width: 116px;
    opacity: 0;
    padding: 9px 11px;
    pointer-events: none;
    position: fixed;
    transform: translateX(-50%) translateY(4px);
    transition: opacity 140ms ease, transform 140ms ease;
    visibility: hidden;
    z-index: 5000;
}

.tr-chart-tooltip.is-visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    visibility: visible;
}

.tr-chart-tooltip::after {
    border-color: rgba(17, 22, 18, 0.95) transparent transparent;
    border-style: solid;
    border-width: 7px 7px 0;
    bottom: -7px;
    content: "";
    left: var(--tr-tooltip-caret-left, 50%);
    position: absolute;
    transform: translateX(-50%);
}

.tr-chart-tooltip-title {
    color: #ffffff;
    font-size: 13px;
    font-weight: 760;
    line-height: 1.2;
    margin-bottom: 4px;
    overflow-wrap: anywhere;
}

.tr-chart-tooltip-line {
    color: rgba(255, 255, 255, 0.82);
    font-size: 12px;
    font-weight: 560;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.transroc-dashboard-page .tr-advisor-card {
    background:
        radial-gradient(circle at 88% 10%, rgba(216, 242, 10, 0.16), transparent 24%),
        linear-gradient(150deg, rgba(56, 86, 38, 0.88), rgba(38, 70, 32, 0.88));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.16),
        0 24px 54px rgba(8, 45, 33, 0.2);
    color: rgba(255, 255, 255, 0.94);
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-height: 100%;
    padding: 22px;
}

.tr-dashboard-main > .tr-advisor-card {
    align-self: stretch;
    min-height: 100%;
}

.transroc-dashboard-page .tr-field-controls {
    right: 12px;
    top: 12px;
}

.transroc-dashboard-page .tr-field-controls span {
    background: rgba(250, 249, 236, 0.94);
    height: 38px;
    width: 38px;
}

.tr-ai-card-header,
.tr-ai-title {
    align-items: center;
    display: flex;
}

.tr-ai-card-header {
    justify-content: space-between;
    gap: 16px;
}

.tr-ai-title {
    gap: 13px;
    min-width: 0;
}

.tr-ai-title em {
    color: #ffffff;
    flex: 0 0 auto;
    font-size: 30px;
    line-height: 1;
}

.tr-ai-title h2 {
    color: rgba(255, 255, 255, 0.94);
    font-size: var(--tr-dashboard-heading-size);
    font-weight: var(--tr-dashboard-heading-weight);
    line-height: 1.12;
    margin: 0;
    overflow-wrap: anywhere;
}

.tr-ai-more-button {
    align-items: center;
    background: transparent;
    border: 0;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    display: inline-flex;
    flex: 0 0 auto;
    font-size: 20px;
    height: 34px;
    justify-content: center;
    padding: 0;
    width: 34px;
}

.tr-ai-intro {
    display: grid;
    gap: 10px;
    min-width: 0;
}

.tr-ai-intro h3 {
    color: rgba(255, 255, 255, 0.95);
    font-size: var(--tr-dashboard-heading-size);
    font-weight: var(--tr-dashboard-heading-weight);
    line-height: 1.18;
    margin: 0;
    overflow-wrap: anywhere;
}

.tr-ai-intro p {
    color: rgba(255, 255, 255, 0.88);
    font-size: var(--tr-dashboard-copy-size);
    font-weight: var(--tr-dashboard-copy-weight);
    line-height: 1.35;
    margin: 0;
    overflow-wrap: anywhere;
}

.tr-ai-suggestion-list {
    display: grid;
    gap: 10px;
    margin: 0;
    min-width: 0;
}

.tr-ai-suggestion {
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 13px;
    color: rgba(255, 255, 255, 0.92);
    cursor: pointer;
    display: flex;
    font-family: inherit;
    font-size: var(--tr-dashboard-copy-size);
    font-weight: var(--tr-dashboard-copy-weight);
    gap: 12px;
    justify-content: space-between;
    line-height: 1.25;
    min-height: 50px;
    min-width: 0;
    padding: 10px 13px;
    text-align: left;
    width: 100%;
}

.tr-ai-suggestion span {
    min-width: 0;
    overflow-wrap: anywhere;
}

.tr-ai-suggestion em {
    flex: 0 0 auto;
    font-size: 22px;
}

.tr-ai-suggestion:hover,
.tr-ai-more-button:hover {
    background: rgba(255, 255, 255, 0.1);
}

.transroc-dashboard-page .tr-advisor-copy {
    max-width: 240px;
}

.transroc-dashboard-page .tr-advisor-copy p {
    font-size: 16px;
    font-weight: 560;
    line-height: 1.4;
}

.transroc-dashboard-page .tr-advisor-copy strong {
    color: var(--tr-chart-lime);
}

.transroc-dashboard-page .tr-assistant-bar {
    background: rgba(255, 255, 248, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 13px;
    bottom: auto;
    box-shadow: none;
    gap: 10px;
    grid-template-columns: minmax(0, 1fr) 44px;
    left: auto;
    margin-top: auto;
    padding: 8px;
    position: relative;
    right: auto;
    width: 100%;
}

.transroc-dashboard-page .tr-assistant-bar input {
    color: rgba(255, 255, 255, 0.92);
    font-size: var(--tr-dashboard-copy-size);
    font-weight: var(--tr-dashboard-copy-weight);
    min-width: 0;
    padding: 0 8px;
}

.transroc-dashboard-page .tr-assistant-bar input::placeholder {
    color: rgba(255, 255, 255, 0.72);
}

.transroc-dashboard-page .tr-assistant-bar button {
    height: 42px;
    width: 42px;
}

.transroc-dashboard-page .tr-assistant-bar button[type="submit"] {
    background: var(--tr-chart-lime);
    color: #1e2a14;
    font-size: 20px;
}

.transroc-dashboard-page .tr-loading-wrap {
    position: relative;
}

.transroc-dashboard-page .tr-loading-wrap > :not(.tr-loading-overlay) {
    transition: opacity 220ms ease;
}

.transroc-dashboard-page .tr-loading-wrap.is-loading {
    min-height: 96px;
}

.transroc-dashboard-page .tr-loading-wrap.is-loading > :not(.tr-loading-overlay) {
    opacity: 0;
    pointer-events: none;
}

.transroc-dashboard-page .tr-loading-wrap.is-loaded > :not(.tr-loading-overlay) {
    opacity: 1;
}

.transroc-dashboard-page .tr-loading-overlay {
    align-items: center;
    background:
        linear-gradient(145deg, rgba(252, 250, 238, 0.88), rgba(250, 249, 236, 0.72));
    border-radius: 14px;
    display: none;
    gap: 12px;
    inset: 0;
    justify-content: center;
    min-height: 100%;
    padding: 18px;
    position: absolute;
    z-index: 6;
}

.transroc-dashboard-page .tr-loading-wrap.is-loading .tr-loading-overlay {
    display: flex;
}

.transroc-dashboard-page .tr-loader-spinner {
    animation: tr-dashboard-spin 780ms linear infinite;
    border: 2px solid rgba(31, 39, 33, 0.12);
    border-radius: 50%;
    border-top-color: #405f2d;
    flex: 0 0 auto;
    height: 28px;
    width: 28px;
}

.transroc-dashboard-page .tr-loader-lines {
    display: grid;
    gap: 7px;
    width: min(160px, 48%);
}

.transroc-dashboard-page .tr-loader-lines i {
    animation: tr-dashboard-shimmer 1100ms ease-in-out infinite;
    background:
        linear-gradient(90deg, rgba(31, 39, 33, 0.08), rgba(64, 95, 45, 0.18), rgba(31, 39, 33, 0.08));
    background-size: 220% 100%;
    border-radius: 999px;
    display: block;
    height: 8px;
}

.transroc-dashboard-page .tr-loader-lines i:nth-child(2) {
    animation-delay: 90ms;
    width: 76%;
}

.transroc-dashboard-page .tr-loader-lines i:nth-child(3) {
    animation-delay: 180ms;
    width: 58%;
}

@keyframes tr-dashboard-spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes tr-dashboard-shimmer {
    0% {
        background-position: 140% 0;
    }

    100% {
        background-position: -80% 0;
    }
}

.tr-agronomy-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: minmax(270px, 0.85fr) minmax(270px, 0.82fr) minmax(320px, 1fr);
    min-width: 0;
}

.tr-npk-card,
.tr-soil-card,
.tr-leaf-card {
    min-height: 236px;
    padding: 18px 20px;
}

.tr-segmented-control {
    align-items: center;
    background: rgba(31, 39, 33, 0.16);
    border-radius: 999px;
    display: inline-flex;
    gap: 5px;
    padding: 5px;
}

.tr-segmented-control button {
    background: transparent;
    border: 0;
    border-radius: 999px;
    color: rgba(31, 39, 33, 0.72);
    font-size: 12px;
    font-weight: 600;
    min-height: 28px;
    padding: 0 14px;
}

.tr-segmented-control button.is-active {
    background: var(--tr-chart-lime);
    color: #152010;
}

.tr-npk-list {
    display: grid;
    gap: 15px;
    margin-top: 22px;
}

.tr-npk-row {
    display: grid;
    gap: 12px;
}

.tr-npk-row > div {
    align-items: center;
    display: flex;
    justify-content: space-between;
}

.tr-npk-row strong,
.tr-npk-row span {
    color: #1d241d;
    font-size: 13px;
    font-weight: 620;
}

.tr-npk-row small {
    color: rgba(31, 39, 33, 0.58);
    font-size: 12px;
    font-weight: 540;
}

.tr-npk-bar {
    background:
        repeating-linear-gradient(90deg, rgba(31, 39, 33, 0.16) 0 22%, transparent 22% 23%);
    border-radius: 999px;
    display: block;
    height: 5px;
    overflow: hidden;
    position: relative;
}

.tr-npk-bar::before {
    background: #15231b;
    border-radius: inherit;
    content: "";
    inset: 0 auto 0 0;
    position: absolute;
    width: var(--value);
}

.tr-npk-card .tr-inline-link {
    color: #263024;
    justify-content: flex-end;
    margin-top: 16px;
}

.transroc-dashboard-page .tr-leaf-card {
    background:
        linear-gradient(145deg, rgba(77, 91, 67, 0.94), rgba(49, 66, 48, 0.96));
    border-color: rgba(255, 255, 255, 0.18);
    color: #fff;
    overflow: hidden;
}

.transroc-dashboard-page .tr-leaf-card .tr-card-heading h2 {
    color: #fff;
}

.transroc-dashboard-page .tr-leaf-card .tr-card-heading a {
    align-items: center;
    background: var(--tr-chart-lime);
    border-radius: 50%;
    color: #17230e;
    display: inline-flex;
    font-size: 16px;
    height: 36px;
    justify-content: center;
    padding: 0;
    width: 36px;
}

.tr-leaf-rings {
    align-items: center;
    display: flex;
    justify-content: center;
    margin-top: 22px;
    min-height: 142px;
}

.tr-leaf-ring {
    --ring-color: #e99a1a;
    align-items: center;
    aspect-ratio: 1;
    background: conic-gradient(var(--ring-color) 0 72%, rgba(255, 255, 255, 0.24) 72% 100%);
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    position: relative;
    width: 116px;
}

.tr-leaf-ring + .tr-leaf-ring {
    margin-left: -24px;
}

.tr-leaf-ring::before {
    background:
        repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.42) 0 2px, transparent 2px 8px);
    border-radius: inherit;
    content: "";
    inset: 0;
    opacity: 0.5;
    position: absolute;
}

.tr-leaf-ring::after {
    background: rgba(69, 84, 61, 0.96);
    border-radius: inherit;
    content: "";
    inset: 26px;
    position: absolute;
}

.tr-leaf-ring span {
    color: rgba(255, 255, 255, 0.92);
    font-size: 20px;
    font-weight: 560;
    position: relative;
    z-index: 1;
}

.tr-leaf-ring small {
    bottom: -34px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 12px;
    font-weight: 540;
    left: 50%;
    position: absolute;
    text-align: center;
    transform: translateX(-50%);
    white-space: nowrap;
}

.tr-leaf-ring.is-lime {
    --ring-color: #d8df0a;
}

.tr-leaf-ring.is-silver {
    --ring-color: rgba(237, 240, 230, 0.72);
}

.tr-soil-card {
    overflow: hidden;
}

.tr-soil-chart {
    margin-top: 16px;
    position: relative;
}

.tr-soil-chart svg {
    display: block;
    height: 126px;
    overflow: visible;
    width: 100%;
}

.tr-soil-grid {
    fill: none;
    stroke: rgba(31, 39, 33, 0.09);
    stroke-dasharray: 3 5;
    stroke-width: 1;
}

.tr-soil-line {
    fill: none;
    stroke: rgba(31, 39, 33, 0.72);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2.2;
}

.tr-soil-marker {
    stroke: rgba(31, 39, 33, 0.15);
    stroke-dasharray: 4 5;
    stroke-width: 1.3;
}

.tr-soil-point {
    fill: #1d241d;
}

.tr-soil-badge {
    background: rgba(255, 255, 248, 0.92);
    border-radius: 8px;
    box-shadow: 0 8px 22px rgba(13, 31, 14, 0.1);
    color: rgba(31, 39, 33, 0.72);
    font-size: 12px;
    font-weight: 560;
    left: 26%;
    padding: 8px 12px;
    position: absolute;
    top: 16px;
}

.tr-soil-badge strong {
    color: #1d241d;
    font-size: 16px;
    margin-left: 4px;
}

.tr-soil-tabs {
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    margin-top: 6px;
}

.tr-soil-tabs button {
    background: transparent;
    border: 0;
    color: rgba(31, 39, 33, 0.42);
    font-size: 11px;
    font-weight: 540;
    padding: 0;
}

.tr-soil-tabs button.is-active {
    color: #1d241d;
}

.transroc-dashboard-page .tr-lower-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: minmax(640px, 1fr) minmax(280px, 340px);
    min-width: 0;
}

.transroc-dashboard-page .tr-holdings-card,
.transroc-dashboard-page .tr-notifications-card {
    background: var(--tr-panel);
    border-color: var(--tr-panel-border);
    box-shadow: var(--tr-dashboard-shadow);
    color: #1d241d;
    min-width: 0;
    padding: 18px 20px;
}

.transroc-dashboard-page .tr-holdings-card .tr-card-heading h2,
.transroc-dashboard-page .tr-notifications-card .tr-card-heading h2 {
    color: #1d241d;
    font-size: 16px;
    font-weight: 500;
}

.transroc-dashboard-page .tr-holdings-card .tr-card-heading a,
.transroc-dashboard-page .tr-notifications-card .tr-card-heading a {
    background: transparent;
    color: #4c8f36;
    font-size: 13px;
    font-weight: 560;
    padding: 0;
}

.transroc-dashboard-page .tr-flaticon-attribution {
    color: rgba(249, 247, 234, 0.86);
    font-size: 10px;
    font-weight: 520;
    line-height: 1.4;
    margin: -2px 0 0;
    text-align: right;
    text-shadow: 0 1px 2px rgba(11, 28, 8, 0.38);
}

.transroc-dashboard-page .tr-flaticon-attribution a {
    color: #efffdd;
    text-decoration: underline;
    text-decoration-color: rgba(239, 255, 221, 0.42);
    text-underline-offset: 2px;
}

.transroc-dashboard-page .tr-holdings-table {
    color: rgba(31, 39, 33, 0.76);
    min-width: 780px;
}

.transroc-dashboard-page .tr-holdings-table th {
    border-bottom-color: rgba(31, 39, 33, 0.12);
    color: rgba(31, 39, 33, 0.64);
    font-weight: 560;
}

.transroc-dashboard-page .tr-holdings-table td {
    border-bottom-color: rgba(31, 39, 33, 0.1);
    color: rgba(31, 39, 33, 0.76);
}

.transroc-dashboard-page .tr-holding-commodity .tr-crop-thumb {
    background: rgba(31, 39, 33, 0.08);
}

.transroc-dashboard-page .tr-holding-commodity .tr-crop-thumb img {
    box-sizing: border-box;
    display: block;
    height: 100%;
    object-fit: cover;
    padding: 0;
    width: 100%;
}

.transroc-dashboard-page .tr-notifications-card {
    align-self: stretch;
}

.transroc-dashboard-page .tr-holding-commodity strong {
    color: #1d241d;
    font-weight: 620;
}

.transroc-dashboard-page .tr-holding-commodity small {
    color: rgba(31, 39, 33, 0.58);
}

.transroc-dashboard-page .tr-return-positive {
    color: #4c9b35;
    font-weight: 620;
}

.transroc-dashboard-page .tr-holdings-table button {
    color: rgba(31, 39, 33, 0.58);
}

.transroc-dashboard-page .tr-notification-item {
    border-bottom-color: rgba(31, 39, 33, 0.1);
    color: #1d241d;
}

.transroc-dashboard-page .tr-notification-item:hover {
    color: #1d241d;
}

.transroc-dashboard-page .tr-notification-copy strong {
    color: #1d241d;
    font-weight: 560;
}

.transroc-dashboard-page .tr-notification-copy small {
    color: rgba(31, 39, 33, 0.62);
}

.transroc-dashboard-page .tr-notification-item time {
    color: rgba(31, 39, 33, 0.58);
}

@media (max-width: 1279.98px) {
    .transroc-dashboard-page .tr-dashboard-grid {
        grid-template-columns: 1fr;
    }

    .transroc-dashboard-page .tr-dashboard-grid .tr-advisor-card {
        grid-column: auto;
    }

    .transroc-dashboard-page .tr-summary-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tr-agronomy-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tr-soil-card {
        grid-column: span 2;
    }
}

@media (max-width: 1199.98px) {
    .transroc-dashboard-page .tr-dashboard-surface {
        padding-top: 88px;
    }

    .tr-dashboard-main {
        grid-template-columns: 1fr;
    }

    .tr-dashboard-main > .tr-advisor-card {
        min-height: 260px;
    }

    .transroc-dashboard-page .tr-lower-grid {
        grid-template-columns: 1fr;
    }

    .tr-field-zone {
        max-width: none;
    }
}

@media (max-width: 991.98px) {
    .transroc-dashboard-page .tr-field-metric-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .transroc-dashboard-page .tr-field-metric-card,
    .transroc-dashboard-page .tr-field-metric-card:nth-child(n+4) {
        grid-column: auto;
    }

    .transroc-dashboard-page .tr-dashboard-grid {
        grid-template-columns: 1fr;
    }

    .transroc-dashboard-page .tr-advisor-card {
        grid-column: auto;
    }

    .tr-agronomy-grid,
    .transroc-dashboard-page .tr-summary-grid {
        grid-template-columns: 1fr;
    }

    .tr-soil-card {
        grid-column: auto;
    }

    .tr-cultivation-card {
        grid-template-columns: 1fr;
    }

    .tr-cultivation-grid {
        grid-template-columns: 1fr;
        max-width: none;
    }

    .tr-cultivation-crops {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}

@media (max-width: 767.98px) {
    .transroc-dashboard-page {
        --tr-dashboard-copy-size: 12px;
        --tr-dashboard-heading-size: 16px;
        --tr-dashboard-value-size: clamp(18px, 5.8vw, 24px);
    }

    .transroc-dashboard-page .tr-dashboard-surface {
        gap: 14px;
        padding: 82px 14px 16px;
    }

    .tr-summary-card {
        min-height: 116px;
        padding: 18px;
    }

    .tr-summary-card strong {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .transroc-dashboard-page .tr-field-metric-grid {
        grid-template-columns: 1fr;
    }

    .transroc-dashboard-page .tr-field-metric-card,
    .transroc-dashboard-page .tr-field-metric-card:nth-child(n+4) {
        grid-column: auto;
    }

    .transroc-dashboard-page .tr-field-metric-card {
        min-height: 104px;
        padding: 16px 18px;
    }

    .transroc-dashboard-page .tr-field-metric-card .tr-card-icon {
        height: 40px;
        width: 40px;
    }

    .transroc-dashboard-page .tr-field-metric-card strong {
        font-size: var(--tr-dashboard-value-size);
    }

    .tr-cultivation-card {
        gap: 18px;
        padding: 18px;
    }

    .tr-cultivation-overview {
        gap: 16px;
        grid-template-columns: 128px minmax(0, 1fr);
    }

    .tr-tractor-visual {
        height: 92px;
        transform: none;
        width: 128px;
    }

    .tr-cultivation-score > span {
        font-size: 12px;
        margin-bottom: 12px;
        padding: 8px 12px;
    }

    .tr-cultivation-score strong {
        font-size: 48px;
    }

    .tr-cultivation-score p {
        font-size: 14px;
        margin-top: 10px;
    }

    .tr-cultivation-crops {
        grid-template-columns: 1fr;
    }

    .transroc-dashboard-page .tr-portfolio-card,
    .transroc-dashboard-page .tr-market-card,
    .tr-npk-card,
    .tr-soil-card,
    .tr-leaf-card {
        padding: 18px;
    }

    .transroc-dashboard-page .tr-market-row {
        grid-template-columns: 52px minmax(0, 1fr) 72px;
    }

    .transroc-dashboard-page .tr-market-row .tr-sparkline {
        display: none;
    }

    .transroc-dashboard-page .tr-market-chart-wrap {
        display: none;
    }

    .transroc-dashboard-page .tr-portfolio-body {
        grid-template-columns: 1fr;
        justify-items: center;
        margin-top: 28px;
    }

    .transroc-dashboard-page .tr-donut {
        height: min(72vw, 260px);
        width: min(72vw, 260px);
    }

    .transroc-dashboard-page .tr-donut::after {
        inset: 31%;
    }

    .transroc-dashboard-page .tr-portfolio-list {
        width: 100%;
    }

    .transroc-dashboard-page .tr-portfolio-row {
        gap: 10px;
        grid-template-columns: 24px minmax(96px, 1fr) minmax(38px, auto) minmax(76px, auto);
    }

    .transroc-dashboard-page .tr-portfolio-footer {
        justify-content: center;
    }

    .transroc-dashboard-page .tr-advisor-card {
        min-height: auto;
        padding: 20px;
    }

    .transroc-dashboard-page .tr-ai-intro h3 {
        font-size: var(--tr-dashboard-heading-size);
    }

    .transroc-dashboard-page .tr-ai-intro p {
        font-size: var(--tr-dashboard-copy-size);
    }

    .tr-leaf-rings {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 44px;
    }

    .tr-leaf-ring {
        flex: 0 0 auto;
        width: 128px;
    }

    .tr-soil-tabs {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        row-gap: 10px;
    }

    .tr-segmented-control button {
        padding: 0 12px;
    }
}

.transroc-shell a:focus-visible,
.transroc-shell button:focus-visible,
.transroc-shell input:focus-visible,
.transroc-shell select:focus-visible,
.transroc-shell textarea:focus-visible {
    box-shadow: 0 0 0 3px rgba(230, 164, 59, 0.38) !important;
    outline: 2px solid transparent;
    outline-offset: 2px;
}

.transroc-shell .btn {
    align-items: center;
    border-radius: 8px;
    display: inline-flex;
    font-weight: 700;
    gap: 8px;
    justify-content: center;
    min-height: 38px;
}

.transroc-shell .btn-primary {
    background-color: var(--tr-primary-lime);
    border-color: var(--tr-primary-lime);
    color: var(--tr-primary-lime-ink);
}

.transroc-shell .btn-primary span,
.transroc-shell .btn-primary em {
    color: inherit !important;
}

.transroc-shell .btn-primary:hover,
.transroc-shell .btn-primary:focus {
    background-color: var(--tr-primary-lime-hover);
    border-color: var(--tr-primary-lime-hover);
    color: var(--tr-primary-lime-ink);
}

.transroc-shell .btn-success {
    background-color: var(--tr-success);
    border-color: var(--tr-success);
}

.transroc-shell .btn-warning {
    background-color: var(--tr-warning);
    border-color: var(--tr-warning);
    color: var(--tr-white);
}

.transroc-shell .btn-danger {
    background-color: var(--tr-danger);
    border-color: var(--tr-danger);
}

.transroc-shell .badge.bg-primary,
.transroc-shell .badge.badge-primary {
    background-color: var(--tr-green-700) !important;
}

.transroc-shell .card,
.tr-ui-card,
.tr-table-card {
    background: var(--tr-white);
    border: 1px solid var(--tr-border);
    border-radius: 12px;
    box-shadow: 0 10px 28px rgba(8, 45, 33, 0.07);
}

.transroc-shell .form-control,
.transroc-shell .form-select {
    border-color: var(--tr-border);
    border-radius: 8px;
    color: var(--tr-ink);
}

.transroc-shell .form-control:focus,
.transroc-shell .form-select:focus {
    border-color: var(--tr-green-600);
}

.transroc-shell .table {
    color: var(--tr-ink);
}

.transroc-shell .table thead th {
    background: var(--tr-green-50);
    color: var(--tr-green-900);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.transroc-shell .alert-success {
    background: var(--tr-green-100);
    border-color: rgba(21, 128, 61, 0.24);
    color: var(--tr-success);
}

.transroc-shell .alert-warning {
    background: var(--tr-gold-100);
    border-color: rgba(217, 119, 6, 0.24);
    color: #6B3A00;
}

.transroc-shell .alert-danger {
    background: rgba(194, 65, 59, 0.1);
    border-color: rgba(194, 65, 59, 0.24);
    color: var(--tr-danger);
}

.transroc-shell .alert-info {
    background: rgba(37, 99, 235, 0.1);
    border-color: rgba(37, 99, 235, 0.24);
    color: var(--tr-info);
}

.transroc-topbar-title {
    display: grid;
    gap: 2px;
}

.transroc-topbar-title span {
    color: var(--tr-muted);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.transroc-topbar-title strong {
    color: var(--tr-green-950);
    font-size: 16px;
    font-weight: 800;
}

.tr-page-header {
    align-items: flex-start;
    display: flex;
    gap: 18px;
    justify-content: space-between;
    margin-bottom: 24px;
}

.tr-page-header h1 {
    color: var(--tr-green-950);
    font-size: 28px;
    font-weight: 800;
    line-height: 1.15;
    margin: 4px 0 6px;
}

.tr-page-header p,
.tr-section-heading p,
.tr-reference-note {
    color: var(--tr-muted);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.tr-breadcrumbs {
    align-items: center;
    color: var(--tr-muted);
    display: flex;
    flex-wrap: wrap;
    font-size: 12px;
    font-weight: 700;
    gap: 8px;
}

.tr-breadcrumbs a {
    color: var(--tr-green-700);
}

.tr-page-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.transroc-global-search {
    align-items: center;
    background: var(--tr-white);
    border: 1px solid var(--tr-border);
    border-radius: 999px;
    gap: 8px;
    margin-left: 24px;
    max-width: 420px;
    min-width: 260px;
    padding: 6px 8px 6px 12px;
}

.transroc-global-search input {
    border: 0;
    color: var(--tr-green-950);
    flex: 1;
    font-size: 13px;
    min-width: 0;
    outline: 0;
}

.transroc-global-search button {
    background: var(--tr-green-700);
    border: 0;
    border-radius: 999px;
    color: var(--tr-white);
    font-size: 12px;
    font-weight: 800;
    padding: 7px 12px;
}

.transroc-session-warning {
    background: var(--tr-gold-100);
    border: 1px solid rgba(217, 119, 6, 0.25);
    border-radius: 999px;
    color: #6B3A00;
    display: inline-flex;
    font-size: 12px;
    font-weight: 800;
    padding: 8px 11px;
}

.tr-portal-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 20px;
}

.tr-portal-grid-technical {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tr-portal-module {
    align-items: flex-start;
    background: var(--tr-white);
    border: 1px solid var(--tr-border);
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(8, 45, 33, 0.06);
    display: grid;
    gap: 12px;
    grid-template-columns: 44px minmax(0, 1fr);
    min-width: 0;
    padding: 16px;
}

.tr-portal-module.is-active {
    border-color: rgba(21, 128, 61, 0.42);
    box-shadow: 0 16px 36px rgba(8, 45, 33, 0.1);
}

.tr-portal-module-icon {
    align-items: center;
    background: var(--tr-green-100);
    border-radius: 12px;
    color: var(--tr-green-700);
    display: inline-flex;
    font-size: 22px;
    height: 44px;
    justify-content: center;
    width: 44px;
}

.tr-portal-module span,
.tr-portal-panel > span {
    color: var(--tr-muted);
    display: block;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.tr-portal-module h2,
.tr-portal-panel h2 {
    color: var(--tr-green-950);
    font-size: 18px;
    font-weight: 900;
    margin: 0;
}

.tr-portal-module a {
    color: inherit;
}

.tr-portal-module p,
.tr-portal-panel p {
    color: var(--tr-muted);
    line-height: 1.55;
    margin: 0;
}

.tr-portal-workspace {
    align-items: start;
    display: grid;
    gap: 18px;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.38fr);
}

.tr-portal-panel {
    background: var(--tr-white);
    border: 1px solid var(--tr-border);
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(8, 45, 33, 0.06);
    display: grid;
    gap: 14px;
    min-width: 0;
    padding: 20px;
}

.tr-portal-security {
    background: var(--tr-green-950);
    border-color: rgba(255, 255, 255, 0.12);
}

.tr-portal-security h2 {
    color: var(--tr-white);
}

.tr-portal-security p,
.tr-portal-security dd,
.tr-portal-security dt {
    color: rgba(255, 255, 255, 0.78);
}

.tr-portal-security .btn-light {
    justify-self: start;
}

.tr-portal-checklist {
    display: grid;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.tr-portal-checklist li {
    align-items: flex-start;
    background: var(--tr-green-50);
    border: 1px solid var(--tr-border);
    border-radius: 10px;
    display: grid;
    gap: 10px;
    grid-template-columns: 20px minmax(0, 1fr);
    padding: 10px;
}

.tr-portal-checklist em {
    color: var(--tr-green-700);
    margin-top: 2px;
}

.tr-portal-security dl,
.tr-portal-secret-list {
    display: grid;
    gap: 10px;
    margin: 0;
}

.tr-portal-security dl div,
.tr-portal-secret-list div {
    border: 1px solid var(--tr-border);
    border-radius: 10px;
    display: grid;
    gap: 4px;
    padding: 12px;
}

.tr-portal-secret-list dt {
    color: var(--tr-muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.tr-portal-secret-list dd {
    color: var(--tr-green-950);
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-weight: 900;
    margin: 0;
}

.tr-admin-dashboard {
    display: grid;
    gap: 18px;
}

.tr-admin-dashboard-filters {
    align-items: end;
    background: var(--tr-white);
    border: 1px solid var(--tr-border);
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(8, 45, 33, 0.06);
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
    padding: 16px;
}

.tr-admin-dashboard-filters label {
    display: grid;
    gap: 6px;
    min-width: 0;
}

.tr-admin-dashboard-filters label span,
.tr-admin-section-heading span,
.tr-admin-export-card > span {
    color: var(--tr-muted);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.tr-admin-dashboard-filters input,
.tr-admin-dashboard-filters select {
    background: var(--tr-green-50);
    border: 1px solid var(--tr-border);
    border-radius: 10px;
    color: var(--tr-green-950);
    font-weight: 800;
    min-height: 42px;
    padding: 9px 11px;
    width: 100%;
}

.tr-admin-dashboard-filter-actions {
    display: flex;
    gap: 8px;
}

.tr-admin-kpi-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tr-admin-kpi-card {
    background: var(--tr-white);
    border: 1px solid var(--tr-border);
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(8, 45, 33, 0.06);
    color: inherit;
    display: grid;
    gap: 12px;
    grid-template-columns: 44px minmax(0, 1fr);
    min-width: 0;
    padding: 16px;
    text-decoration: none;
}

.tr-admin-kpi-card:hover {
    color: inherit;
    transform: translateY(-1px);
}

.tr-admin-kpi-icon {
    align-items: center;
    background: var(--tr-green-100);
    border-radius: 12px;
    color: var(--tr-green-700);
    display: inline-flex;
    font-size: 22px;
    height: 44px;
    justify-content: center;
    width: 44px;
}

.tr-admin-kpi-card.is-warning .tr-admin-kpi-icon {
    background: var(--tr-gold-100);
    color: #92400E;
}

.tr-admin-kpi-card.is-danger .tr-admin-kpi-icon {
    background: #FEE2E2;
    color: var(--tr-danger);
}

.tr-admin-kpi-card.is-info .tr-admin-kpi-icon {
    background: #DBEAFE;
    color: var(--tr-info);
}

.tr-admin-kpi-card span span {
    color: var(--tr-muted);
    display: block;
    font-size: 12px;
    font-weight: 900;
    line-height: 1.35;
}

.tr-admin-kpi-card strong {
    color: var(--tr-green-950);
    display: block;
    font-size: 26px;
    font-weight: 950;
    line-height: 1.1;
    margin-top: 6px;
}

.tr-admin-kpi-card small {
    color: var(--tr-muted);
    display: block;
    font-size: 12px;
    line-height: 1.4;
    margin-top: 6px;
}

.tr-admin-dashboard-main {
    align-items: start;
    display: grid;
    gap: 18px;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.32fr);
}

.tr-member-kpi-grid {
    margin-bottom: 20px;
}

.tr-member-dashboard-intro {
    margin-bottom: 20px;
}

.tr-member-dashboard-grid {
    align-items: start;
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tr-member-dashboard-grid .tr-member-wide {
    grid-column: 1 / -1;
}

.tr-member-account-table {
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 0;
}

.tr-member-account-table caption {
    color: rgba(255, 255, 255, 0.72);
    caption-side: top;
    font-weight: 800;
    padding-bottom: 8px;
}

.tr-member-account-table th,
.tr-member-account-table td {
    border-color: rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.8);
}

.tr-member-guidance-list,
.tr-member-status-list,
.tr-member-notification-list,
.tr-member-action-list {
    display: grid;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.tr-member-guidance-card,
.tr-member-status-list li,
.tr-member-notification-list li {
    background: var(--tr-green-50);
    border: 1px solid var(--tr-border);
    border-radius: 12px;
    display: grid;
    gap: 10px;
    padding: 14px;
}

.tr-member-guidance-card > span,
.tr-member-status-list li > span {
    color: var(--tr-muted);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.tr-member-guidance-card h3 {
    color: var(--tr-green-950);
    font-size: 18px;
    font-weight: 950;
    margin: 0;
}

.tr-member-guidance-card dl {
    display: grid;
    gap: 8px;
    margin: 0;
}

.tr-member-guidance-card dl div {
    display: grid;
    gap: 2px;
}

.tr-member-guidance-card dt {
    color: var(--tr-muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.tr-member-guidance-card dd,
.tr-member-status-list small,
.tr-member-notification-list span {
    color: var(--tr-muted);
    line-height: 1.5;
    margin: 0;
}

.tr-member-status-list strong,
.tr-member-notification-list strong {
    color: var(--tr-green-950);
    font-weight: 900;
}

.tr-member-notification-list li.is-warning {
    background: var(--tr-gold-100);
    border-color: rgba(217, 119, 6, 0.24);
}

.tr-member-notification-list li.is-danger {
    background: #FEE2E2;
    border-color: rgba(194, 65, 59, 0.24);
}

.tr-member-action-list .btn {
    justify-content: flex-start;
}

.tr-member-commodity-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 18px;
}

.tr-member-commodity-card {
    background: var(--tr-white);
    border: 1px solid var(--tr-border);
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(8, 45, 33, 0.06);
    display: grid;
    gap: 14px;
    min-width: 0;
    padding: 18px;
}

.tr-member-commodity-card.is-eligible {
    border-color: rgba(21, 128, 61, 0.28);
}

.tr-member-commodity-card p {
    color: var(--tr-muted);
    line-height: 1.55;
    margin: 0;
}

.tr-member-fact-grid {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0;
}

.tr-member-fact-grid div {
    background: var(--tr-green-50);
    border: 1px solid var(--tr-border);
    border-radius: 10px;
    display: grid;
    gap: 4px;
    min-width: 0;
    padding: 12px;
}

.tr-member-fact-grid dt {
    color: var(--tr-muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.tr-member-fact-grid dd {
    color: var(--tr-green-950);
    font-weight: 850;
    margin: 0;
    overflow-wrap: anywhere;
}

.tr-member-status-callout {
    background: var(--tr-gold-100);
    border: 1px solid rgba(217, 119, 6, 0.24);
    border-radius: 12px;
    display: grid;
    gap: 5px;
    padding: 12px;
}

.tr-member-status-callout strong {
    color: #6B3A00;
    font-weight: 950;
}

.tr-member-status-callout span {
    color: #6B3A00;
    line-height: 1.5;
}

.tr-member-card-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tr-member-detail-grid {
    align-items: start;
    display: grid;
    gap: 18px;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.36fr);
}

.tr-member-detail-grid > .tr-admin-table-card:nth-child(n+3) {
    grid-column: 1 / -1;
}

.tr-member-quote-summary {
    margin-bottom: 18px;
}

.tr-member-dark-form {
    display: grid;
    gap: 12px;
}

.tr-member-dark-form label {
    display: grid;
    gap: 6px;
}

.tr-member-dark-form span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 12px;
    font-weight: 900;
}

.tr-member-dark-form input {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 10px;
    color: var(--tr-white);
    min-height: 42px;
    padding: 9px 11px;
}

.tr-member-wizard-grid {
    align-items: start;
    display: grid;
    gap: 18px;
    grid-template-columns: minmax(240px, 0.28fr) minmax(0, 1fr);
}

.tr-member-wizard-steps,
.tr-member-term-list {
    display: grid;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.tr-member-wizard-steps li,
.tr-member-term-list label {
    background: var(--tr-green-50);
    border: 1px solid var(--tr-border);
    border-radius: 10px;
    color: var(--tr-green-950);
    font-weight: 850;
    padding: 10px;
}

.tr-member-wizard-form {
    display: grid;
    gap: 18px;
}

.tr-member-wizard-form section {
    border-bottom: 1px solid var(--tr-border);
    display: grid;
    gap: 12px;
    padding-bottom: 16px;
}

.tr-member-wizard-form section:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.tr-member-wizard-form section > span,
.tr-member-field span {
    color: var(--tr-muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.tr-member-wizard-form h2 {
    color: var(--tr-green-950);
    font-size: 22px;
    font-weight: 950;
    margin: 0;
}

.tr-member-wizard-form p {
    color: var(--tr-muted);
    line-height: 1.55;
    margin: 0;
}

.tr-member-field {
    display: grid;
    gap: 6px;
}

.tr-member-field select {
    background: var(--tr-green-50);
    border: 1px solid var(--tr-border);
    border-radius: 10px;
    color: var(--tr-green-950);
    min-height: 42px;
    padding: 9px 11px;
}

.tr-member-request-filters {
    margin-bottom: 18px;
}

.tr-member-request-table-card {
    display: grid;
    gap: 16px;
}

.tr-member-request-mobile {
    display: none;
}

.tr-member-request-card,
.tr-member-action-card {
    background: var(--tr-green-50);
    border: 1px solid var(--tr-border);
    border-radius: 12px;
    display: grid;
    gap: 10px;
    min-width: 0;
    padding: 14px;
}

.tr-member-request-card > span,
.tr-member-action-card span,
.tr-member-muted {
    color: var(--tr-muted);
    line-height: 1.5;
}

.tr-member-request-card h2 {
    color: var(--tr-green-950);
    font-size: 18px;
    font-weight: 950;
    margin: 0;
    overflow-wrap: anywhere;
}

.tr-member-request-card dl {
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0;
}

.tr-member-request-card dl div {
    min-width: 0;
}

.tr-member-request-card dt {
    color: var(--tr-muted);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.tr-member-request-card dd {
    color: var(--tr-green-950);
    font-weight: 850;
    margin: 0;
    overflow-wrap: anywhere;
}

.tr-member-request-card p {
    color: var(--tr-muted);
    line-height: 1.5;
    margin: 0;
}

.tr-member-portfolio-summary {
    margin-bottom: 18px;
}

.tr-member-portfolio-context {
    align-items: stretch;
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 18px;
}

.tr-member-mini-list,
.tr-member-cycle-list {
    display: grid;
    gap: 10px;
    margin: 0;
}

.tr-member-cycle-list {
    padding: 0;
}

.tr-member-mini-list div,
.tr-member-cycle-list li {
    background: var(--tr-green-50);
    border: 1px solid var(--tr-border);
    border-radius: 8px;
    display: grid;
    gap: 4px;
    list-style: none;
    min-width: 0;
    padding: 10px 12px;
}

.tr-member-mini-list dt,
.tr-member-cycle-list strong {
    color: var(--tr-green-950);
    font-weight: 900;
}

.tr-member-mini-list dd,
.tr-member-cycle-list span {
    color: var(--tr-muted);
    font-size: 12px;
    font-weight: 800;
    margin: 0;
}

.tr-member-valuation-note p {
    color: var(--tr-muted);
    font-size: 13px;
    line-height: 1.55;
    margin: 0;
}

.tr-member-holding-mobile {
    display: none;
}

.tr-member-holding-card {
    background: var(--tr-white);
    border: 1px solid var(--tr-border);
    border-radius: 8px;
    display: grid;
    gap: 12px;
    padding: 14px;
}

.tr-member-holding-card > span {
    color: var(--tr-green-700);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.tr-member-holding-card h2 {
    color: var(--tr-green-950);
    font-size: 18px;
    font-weight: 900;
    margin: 0;
}

.tr-member-holding-card dl {
    display: grid;
    gap: 8px;
    margin: 0;
}

.tr-member-holding-card dl div {
    display: grid;
    gap: 2px;
}

.tr-member-holding-card dt {
    color: var(--tr-muted);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.tr-member-holding-card dd {
    color: var(--tr-green-950);
    font-size: 13px;
    font-weight: 800;
    margin: 0;
}

.transroc-dashboard-page .tr-portfolio-dashboard .tr-dashboard-surface {
    background:
        linear-gradient(90deg, rgba(4, 17, 3, 0.78), rgba(22, 58, 12, 0.3) 46%, rgba(4, 17, 3, 0.8)),
        linear-gradient(180deg, rgba(7, 22, 3, 0.12), rgba(6, 19, 3, 0.28)),
        url("../images/transroc/dashboard-field-aerial.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    gap: 14px;
    padding-bottom: 28px;
}

.transroc-dashboard-page .tr-portfolio-dashboard .tr-dashboard-surface::before {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(2, 10, 1, 0.06));
}

.transroc-dashboard-page .tr-portfolio-topbar {
    background: transparent;
    border: 0;
    box-shadow: none;
    margin: 0;
    padding: 0;
}

.transroc-dashboard-page .tr-portfolio-topbar .tr-breadcrumbs {
    margin: 0 0 10px;
}

.transroc-dashboard-page .tr-portfolio-topbar .tr-breadcrumbs a,
.transroc-dashboard-page .tr-portfolio-topbar .tr-breadcrumbs span,
.transroc-dashboard-page .tr-portfolio-topbar .tr-breadcrumbs em {
    color: rgba(255, 255, 255, 0.88);
}

.transroc-dashboard-page .tr-portfolio-topbar .tr-dashboard-title-group {
    align-items: center;
}

.transroc-dashboard-page .tr-portfolio-topbar h1 {
    color: #ffffff;
    font-size: clamp(30px, 2.3vw, 42px);
    font-weight: 520;
    line-height: 1;
    margin: 0 0 8px;
}

.transroc-dashboard-page .tr-portfolio-topbar p {
    color: rgba(255, 255, 255, 0.88);
    display: block;
    font-size: 13px;
    font-weight: 560;
    line-height: 1.35;
    max-width: 980px;
}

.transroc-dashboard-page .tr-portfolio-actions {
    flex: 0 0 auto;
    justify-content: flex-end;
}

.transroc-dashboard-page .tr-portfolio-actions .btn {
    align-items: center;
    border-radius: 10px;
    display: inline-flex;
    font-size: 13px;
    font-weight: 640;
    gap: 9px;
    min-height: 42px;
    padding: 0 18px;
}

.transroc-dashboard-page .tr-portfolio-filter-card,
.transroc-dashboard-page .tr-portfolio-holdings-card {
    background: var(--tr-panel);
    border-color: var(--tr-panel-border);
    border-radius: 16px;
    box-shadow: var(--tr-dashboard-shadow);
    color: #1d241d;
}

.transroc-dashboard-page .tr-portfolio-filter-card {
    display: block;
    min-height: 0;
    padding: 14px 18px;
}

.transroc-dashboard-page .tr-portfolio-filter-card[open] .tr-portfolio-filter-form {
    margin-top: 14px;
}

.transroc-dashboard-page .tr-portfolio-filter-card summary {
    cursor: pointer;
    list-style: none;
}

.transroc-dashboard-page .tr-portfolio-filter-card summary::-webkit-details-marker {
    display: none;
}

.tr-portfolio-filter-toggle {
    align-items: center;
    background: rgba(31, 39, 33, 0.06);
    border: 1px solid rgba(31, 39, 33, 0.1);
    border-radius: 999px;
    color: #1d241d;
    display: inline-flex;
    flex: 0 0 auto;
    font-size: 12px;
    font-weight: 650;
    gap: 8px;
    min-height: 36px;
    padding: 0 12px;
    user-select: none;
    white-space: nowrap;
}

.tr-portfolio-filter-toggle .tr-toggle-close-label,
.transroc-dashboard-page .tr-portfolio-filter-card[open] .tr-portfolio-filter-toggle .tr-toggle-open-label {
    display: none;
}

.transroc-dashboard-page .tr-portfolio-filter-card[open] .tr-portfolio-filter-toggle .tr-toggle-close-label {
    display: inline;
}

.tr-portfolio-filter-toggle .ni-chevron-down {
    transition: transform 160ms ease;
}

.transroc-dashboard-page .tr-portfolio-filter-card[open] .tr-portfolio-filter-toggle .ni-chevron-down {
    transform: rotate(180deg);
}

.transroc-dashboard-page .tr-portfolio-filter-card .tr-card-heading h2,
.transroc-dashboard-page .tr-portfolio-holdings-card .tr-card-heading h2 {
    color: #1d241d;
    font-size: 16px;
    font-weight: 560;
}

.transroc-dashboard-page .tr-portfolio-filter-card .tr-card-heading p,
.transroc-dashboard-page .tr-portfolio-holdings-card .tr-card-heading p {
    color: rgba(31, 39, 33, 0.6);
    font-size: 12px;
    font-weight: 540;
}

.tr-portfolio-filter-form {
    align-items: end;
    display: grid;
    gap: 12px;
    grid-template-columns: minmax(260px, 1fr) auto auto;
}

.tr-portfolio-filter-form label {
    display: grid;
    gap: 7px;
    margin: 0;
    min-width: 0;
}

.tr-portfolio-filter-form label span {
    color: rgba(31, 39, 33, 0.66);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.tr-portfolio-filter-form input {
    background: rgba(255, 255, 248, 0.86);
    border: 1px solid rgba(31, 39, 33, 0.12);
    border-radius: 10px;
    color: #1d241d;
    font-size: 13px;
    font-weight: 560;
    min-height: 44px;
    outline: 0;
    padding: 0 14px;
    width: 100%;
}

.tr-portfolio-filter-form input::placeholder {
    color: rgba(31, 39, 33, 0.46);
}

.tr-portfolio-filter-form .btn {
    align-items: center;
    border-radius: 10px;
    display: inline-flex;
    font-size: 13px;
    font-weight: 650;
    gap: 9px;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    white-space: nowrap;
}

.tr-portfolio-overview-layout {
    align-items: start;
    display: grid;
    gap: 12px;
    grid-template-columns: minmax(0, 1fr) minmax(430px, 0.72fr);
}

.tr-portfolio-ajax-content,
.tr-portfolio-skeleton {
    display: grid;
    gap: 12px;
    min-width: 0;
}

.tr-portfolio-ajax-content.is-loading [data-portfolio-fallback] {
    display: none;
}

.tr-portfolio-skeleton .tr-skeleton-line,
.tr-portfolio-modal-skeleton .tr-skeleton-line {
    background: linear-gradient(90deg, rgba(31, 39, 33, 0.07), rgba(31, 39, 33, 0.16), rgba(31, 39, 33, 0.07));
    background-size: 220% 100%;
}

.tr-portfolio-skeleton .tr-skeleton-line.is-strong {
    height: 22px;
    margin-top: 9px;
    width: 48%;
}

.tr-portfolio-skeleton .tr-skeleton-line.is-short {
    margin-top: 12px;
    width: 62%;
}

.tr-portfolio-skeleton .tr-skeleton-line.is-title {
    height: 18px;
    width: 190px;
}

.tr-portfolio-skeleton .tr-skeleton-line.is-pill {
    height: 40px;
    width: 156px;
}

.tr-portfolio-skeleton .tr-skeleton-line.is-page {
    width: 90px;
}

.tr-portfolio-donut-skeleton {
    animation: trSkeletonPulse 1.25s ease-in-out infinite;
    aspect-ratio: 1;
    background:
        radial-gradient(circle at center, rgba(252, 250, 238, 0.96) 0 30%, transparent 31%),
        conic-gradient(rgba(31, 39, 33, 0.08), rgba(31, 39, 33, 0.18), rgba(31, 39, 33, 0.08));
    background-size: 100% 100%, 220% 100%;
    border-radius: 50%;
    justify-self: center;
    width: min(100%, 162px);
}

.transroc-dashboard-page .tr-portfolio-metric-grid {
    align-content: start;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0;
}

.transroc-dashboard-page .tr-portfolio-metric-grid .tr-field-metric-card,
.transroc-dashboard-page .tr-portfolio-metric-grid .tr-field-metric-card:nth-child(n+4) {
    align-items: center;
    grid-column: auto;
    min-height: 92px;
    padding: 14px 16px;
}

.transroc-dashboard-page .tr-portfolio-metric-grid .tr-field-metric-card strong {
    font-size: clamp(22px, 1.5vw, 28px);
    white-space: normal;
}

.transroc-dashboard-page .tr-portfolio-metric-grid .tr-field-metric-card .tr-card-icon {
    height: 40px;
    width: 40px;
}

.tr-portfolio-overview-card {
    background: var(--tr-panel);
    border-color: var(--tr-panel-border);
    border-radius: 16px;
    box-shadow: var(--tr-dashboard-shadow);
    color: #1d241d;
    display: grid;
    gap: 12px;
    min-height: 0;
    padding: 18px 20px;
}

.tr-portfolio-overview-heading {
    align-items: center;
}

.tr-portfolio-overview-filter {
    align-items: center;
    background: rgba(255, 255, 248, 0.78);
    border: 1px solid rgba(31, 39, 33, 0.08);
    border-radius: 999px;
    color: #1d241d;
    display: inline-flex;
    font-size: 13px;
    font-weight: 650;
    gap: 10px;
    min-height: 42px;
    padding: 0 16px;
    white-space: nowrap;
}

.tr-portfolio-overview-body {
    align-items: center;
    display: grid;
    gap: 18px;
    grid-template-columns: minmax(134px, 162px) minmax(0, 1fr);
}

.tr-portfolio-value-donut {
    aspect-ratio: 1;
    background: conic-gradient(var(--portfolio-donut));
    border-radius: 50%;
    justify-self: center;
    position: relative;
    width: min(100%, 162px);
}

.tr-portfolio-value-donut::before {
    background: rgba(9, 29, 10, 0.96);
    border: 1px solid rgba(216, 242, 10, 0.24);
    border-radius: 12px;
    bottom: calc(100% + 12px);
    box-shadow: 0 18px 38px rgba(4, 17, 3, 0.34);
    color: #fff;
    content: attr(data-tooltip);
    font-size: 12px;
    font-weight: 620;
    left: 50%;
    line-height: 1.45;
    max-width: min(260px, 74vw);
    min-width: 210px;
    opacity: 0;
    padding: 10px 12px;
    pointer-events: none;
    position: absolute;
    text-align: left;
    transform: translate(-50%, 6px);
    transition: opacity 160ms ease, transform 160ms ease;
    visibility: hidden;
    white-space: pre-line;
    z-index: 8;
}

.tr-portfolio-value-donut:hover::before,
.tr-portfolio-value-donut:focus-visible::before {
    opacity: 1;
    transform: translate(-50%, 0);
    visibility: visible;
}

.tr-portfolio-value-donut::after {
    background: rgba(252, 250, 238, 0.98);
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px rgba(31, 39, 33, 0.05);
    content: "";
    inset: 24%;
    position: absolute;
}

.tr-portfolio-donut-core {
    align-items: center;
    display: flex;
    flex-direction: column;
    inset: 0;
    justify-content: center;
    padding: 23%;
    position: absolute;
    text-align: center;
    z-index: 1;
}

.tr-portfolio-donut-core span {
    color: rgba(31, 39, 33, 0.66);
    font-size: 11px;
    font-weight: 650;
    line-height: 1.1;
}

.tr-portfolio-donut-core strong {
    color: #1d241d;
    font-size: clamp(12px, 0.84vw, 14px);
    font-weight: 720;
    line-height: 1.12;
    margin-top: 5px;
    overflow-wrap: anywhere;
}

.tr-portfolio-overview-list {
    display: grid;
    gap: 9px;
    min-width: 0;
}

.tr-portfolio-overview-row {
    align-items: start;
    display: grid;
    gap: 2px 10px;
    grid-template-columns: 13px minmax(0, 1fr) auto;
}

.tr-portfolio-overview-row > span {
    background: var(--row-color);
    border-radius: 50%;
    height: 12px;
    margin-top: 5px;
    width: 12px;
}

.tr-portfolio-overview-row strong {
    color: #1d241d;
    font-size: 14px;
    font-weight: 650;
    line-height: 1.2;
}

.tr-portfolio-overview-row b {
    color: #1d241d;
    font-size: 15px;
    font-weight: 720;
    line-height: 1.15;
}

.tr-portfolio-overview-row small {
    color: rgba(31, 39, 33, 0.56);
    font-size: 12px;
    font-weight: 540;
    grid-column: 3;
    line-height: 1.2;
}

.tr-portfolio-overview-empty {
    color: rgba(31, 39, 33, 0.58);
    font-size: 13px;
    font-weight: 560;
    margin: 0;
}

.tr-portfolio-overview-link {
    align-items: center;
    color: #1d241d;
    display: inline-flex;
    font-size: 15px;
    font-weight: 690;
    gap: 10px;
    justify-self: center;
    margin-top: 0;
}

.tr-portfolio-load-error {
    display: grid;
    gap: 6px;
    padding: 24px;
    text-align: center;
}

.tr-portfolio-modal-detail {
    color: #1d241d;
    display: grid;
    gap: 16px;
}

.tr-portfolio-modal-detail header {
    background: rgba(31, 39, 33, 0.05);
    border: 1px solid rgba(31, 39, 33, 0.08);
    border-radius: 12px;
    display: grid;
    gap: 4px;
    padding: 16px;
}

.tr-portfolio-modal-detail header span {
    color: #477f33;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.tr-portfolio-modal-detail header h3 {
    color: #1d241d;
    font-size: 22px;
    font-weight: 650;
    margin: 0;
}

.tr-portfolio-modal-detail header p,
.tr-portfolio-modal-detail section p {
    color: rgba(31, 39, 33, 0.62);
    font-size: 13px;
    font-weight: 540;
    margin: 0;
}

.tr-portfolio-modal-detail .tr-record-modal-grid {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tr-portfolio-modal-detail .tr-record-modal-grid div,
.tr-portfolio-modal-detail section {
    background: rgba(31, 39, 33, 0.045);
    border: 1px solid rgba(31, 39, 33, 0.08);
    border-radius: 11px;
    padding: 12px;
}

.tr-portfolio-modal-detail dt {
    color: rgba(31, 39, 33, 0.52);
    font-size: 11px;
    font-weight: 700;
    margin: 0 0 4px;
    text-transform: uppercase;
}

.tr-portfolio-modal-detail dd {
    color: #1d241d;
    font-size: 13px;
    font-weight: 650;
    margin: 0;
}

.tr-portfolio-modal-detail section h4 {
    color: #1d241d;
    font-size: 15px;
    font-weight: 650;
    margin: 0 0 8px;
}

.tr-portfolio-modal-detail section ul {
    display: grid;
    gap: 6px;
    margin: 0;
    padding-left: 18px;
}

.tr-portfolio-modal-detail footer {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.tr-portfolio-modal-skeleton {
    display: grid;
    gap: 14px;
}

.tr-portfolio-modal-error {
    display: grid;
    gap: 10px;
    padding: 12px 0;
}

.transroc-dashboard-page .tr-portfolio-holdings-card {
    padding: 18px 20px;
}

.transroc-dashboard-page .tr-portfolio-holdings-card > .tr-card-heading {
    align-items: center;
}

.transroc-dashboard-page .tr-portfolio-holdings-card > .tr-card-heading > span {
    color: rgba(31, 39, 33, 0.58);
    font-size: 12px;
    font-weight: 560;
    white-space: nowrap;
}

.transroc-dashboard-page .tr-portfolio-holdings-card > .tr-card-heading small {
    color: rgba(31, 39, 33, 0.56);
    display: block;
    font-size: 11px;
    font-weight: 540;
    line-height: 1.35;
    margin-top: 6px;
}

.transroc-dashboard-page .tr-portfolio-holdings-table {
    min-width: 1120px;
}

.transroc-dashboard-page .tr-portfolio-holdings-table caption {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

.tr-portfolio-status {
    background: rgba(76, 143, 54, 0.13);
    border-radius: 999px;
    color: #477f33;
    display: inline-flex;
    font-size: 11px;
    font-weight: 650;
    line-height: 1;
    padding: 7px 10px;
    white-space: nowrap;
}

.tr-portfolio-view-link {
    align-items: center;
    background: rgba(31, 39, 33, 0.06);
    border-radius: 9px;
    color: #1d241d;
    display: inline-flex;
    font-size: 12px;
    font-weight: 650;
    gap: 7px;
    justify-content: center;
    min-height: 34px;
    padding: 0 12px;
}

.tr-portfolio-empty-cell {
    padding: 34px 18px !important;
    text-align: center !important;
}

.tr-portfolio-empty-cell strong,
.tr-portfolio-empty-cell span {
    display: block;
}

.tr-portfolio-empty-cell strong {
    color: #1d241d;
    font-size: 15px;
    font-weight: 650;
    margin-bottom: 6px;
}

.tr-portfolio-empty-cell span {
    color: rgba(31, 39, 33, 0.58);
    font-size: 12px;
    font-weight: 540;
}

.tr-portfolio-pagination {
    margin-top: 16px;
}

@media (max-width: 1399.98px) {
    .tr-portfolio-overview-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .transroc-dashboard-page .tr-portfolio-metric-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .transroc-dashboard-page .tr-portfolio-topbar,
    .tr-portfolio-filter-form {
        align-items: stretch;
        grid-template-columns: 1fr;
    }

    .transroc-dashboard-page .tr-portfolio-topbar {
        display: grid;
    }

    .transroc-dashboard-page .tr-portfolio-actions {
        justify-content: flex-start;
    }

    .tr-portfolio-overview-body {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .transroc-dashboard-page .tr-portfolio-metric-grid {
        grid-template-columns: 1fr;
    }

    .transroc-dashboard-page .tr-portfolio-topbar .tr-dashboard-title-group {
        align-items: flex-start;
    }

    .transroc-dashboard-page .tr-portfolio-filter-card .tr-card-heading,
    .tr-portfolio-overview-heading {
        align-items: stretch;
        display: grid;
    }
}

.tr-member-market-chart {
    align-items: end;
    background: var(--tr-green-50);
    border: 1px solid var(--tr-border);
    border-radius: 8px;
    display: flex;
    gap: 6px;
    height: 180px;
    margin: 0 0 14px;
    padding: 14px;
}

.tr-member-market-chart span {
    background: linear-gradient(180deg, var(--tr-gold-500), var(--tr-green-700));
    border-radius: 6px 6px 0 0;
    display: block;
    flex: 1 1 8px;
    min-width: 6px;
}

.tr-member-market-layout {
    align-items: start;
    display: grid;
    gap: 18px;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
}

.tr-member-market-main,
.tr-early-sale-panel {
    grid-column: 1 / -1;
}

.tr-market-insight-chart {
    min-height: 220px;
}

.tr-member-guidance-panel,
.tr-early-sale-panel {
    display: grid;
    gap: 14px;
}

.tr-guidance-factor-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tr-guidance-factor-grid > div {
    background: var(--tr-green-50);
    border: 1px solid var(--tr-border);
    border-radius: 8px;
    min-width: 0;
    padding: 12px;
}

.tr-guidance-factor-grid strong,
.tr-early-sale-panel .tr-admin-section-heading > span {
    color: var(--tr-green-950);
    font-weight: 950;
}

.tr-guidance-factor-grid ul {
    color: var(--tr-muted);
    line-height: 1.5;
    margin: 8px 0 0;
    padding-left: 18px;
}

.tr-early-sale-panel {
    border-color: rgba(217, 119, 6, 0.32);
}

.tr-early-sale-panel .tr-admin-section-heading > span {
    background: var(--tr-gold-100);
    border-radius: 999px;
    color: #6B3A00;
    display: inline-flex;
    padding: 8px 12px;
}

.tr-member-warehouse-mobile {
    display: none;
}

.tr-member-warehouse-card,
.tr-member-media-card {
    background: var(--tr-white);
    border: 1px solid var(--tr-border);
    border-radius: 8px;
    display: grid;
    gap: 12px;
    min-width: 0;
    padding: 14px;
}

.tr-member-warehouse-card > span,
.tr-member-media-card > span {
    color: var(--tr-green-700);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.tr-member-warehouse-card h2,
.tr-member-media-card h3 {
    color: var(--tr-green-950);
    font-size: 18px;
    font-weight: 900;
    margin: 0;
}

.tr-member-warehouse-card dl {
    display: grid;
    gap: 8px;
    margin: 0;
}

.tr-member-warehouse-card dt {
    color: var(--tr-muted);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.tr-member-warehouse-card dd {
    color: var(--tr-green-950);
    font-size: 13px;
    font-weight: 800;
    margin: 0;
}

.tr-member-media-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tr-member-media-card {
    background: var(--tr-green-50);
}

.tr-member-media-card p {
    color: var(--tr-muted);
    line-height: 1.5;
    margin: 0;
}

.tr-member-document-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.tr-member-action-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tr-member-action-card {
    color: inherit;
    text-decoration: none;
}

.tr-member-action-card:hover,
.tr-member-action-card:focus {
    border-color: rgba(21, 128, 61, 0.36);
    color: inherit;
    text-decoration: none;
}

.tr-member-action-card strong {
    color: var(--tr-green-950);
    font-weight: 950;
}

.tr-admin-queue-card,
.tr-admin-export-card {
    background: var(--tr-white);
    border: 1px solid var(--tr-border);
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(8, 45, 33, 0.06);
    min-width: 0;
    padding: 18px;
}

.tr-admin-section-heading {
    align-items: center;
    display: flex;
    gap: 14px;
    justify-content: space-between;
    margin-bottom: 14px;
    min-width: 0;
}

.tr-admin-section-heading > div {
    min-width: 0;
}

.tr-admin-section-heading h2,
.tr-admin-export-card h2 {
    color: var(--tr-green-950);
    font-size: 20px;
    font-weight: 950;
    margin: 0;
}

.tr-admin-queue-table {
    min-width: 860px;
}

.tr-admin-queue-table caption {
    color: var(--tr-muted);
    caption-side: top;
    font-weight: 800;
    padding-bottom: 10px;
}

.tr-admin-queue-table th {
    color: var(--tr-green-950);
    font-size: 12px;
    text-transform: uppercase;
}

.tr-admin-queue-table td {
    color: var(--tr-muted);
    vertical-align: middle;
}

.tr-admin-queue-table td strong,
.tr-admin-queue-table td span {
    display: block;
}

.tr-admin-queue-table td strong {
    color: var(--tr-green-950);
    font-weight: 900;
}

.tr-admin-priority {
    align-items: center;
    border-radius: 999px;
    display: inline-flex;
    flex: 0 0 auto;
    font-size: 12px;
    font-weight: 900;
    line-height: 1.2;
    max-width: 100%;
    padding: 6px 10px;
    white-space: normal;
}

.tr-admin-priority.is-critical,
.tr-admin-priority.is-high {
    background: #FEE2E2;
    color: var(--tr-danger);
}

.tr-admin-priority.is-normal {
    background: var(--tr-gold-100);
    color: #92400E;
}

.tr-admin-priority.is-low {
    background: var(--tr-green-100);
    color: var(--tr-green-700);
}

.tr-admin-export-card {
    background: var(--tr-green-950);
    border-color: rgba(255, 255, 255, 0.12);
    display: grid;
    gap: 12px;
}

.tr-admin-export-card h2,
.tr-admin-export-card p,
.tr-admin-export-card dt,
.tr-admin-export-card dd {
    color: rgba(255, 255, 255, 0.82);
}

.tr-admin-export-card h2 {
    color: var(--tr-white);
}

.tr-admin-export-card p {
    line-height: 1.55;
    margin: 0;
}

.tr-admin-export-card dl {
    display: grid;
    gap: 10px;
    margin: 0;
}

.tr-admin-export-card dl div {
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 10px;
    display: grid;
    gap: 4px;
    padding: 12px;
}

.tr-admin-export-card dt {
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.tr-admin-export-card dd {
    margin: 0;
}

.tr-commodity-admin,
.tr-commodity-preview {
    display: grid;
    gap: 18px;
}

.tr-admin-tabs {
    background: var(--tr-white);
    border: 1px solid var(--tr-border);
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(8, 45, 33, 0.06);
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 10px;
}

.tr-admin-tabs a {
    border-radius: 999px;
    color: var(--tr-muted);
    font-weight: 900;
    padding: 9px 13px;
}

.tr-admin-tabs a.is-active {
    background: var(--tr-green-700);
    color: var(--tr-white);
}

.tr-admin-panel,
.tr-admin-table-card {
    background: var(--tr-white);
    border: 1px solid var(--tr-border);
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(8, 45, 33, 0.06);
    min-width: 0;
    padding: 18px;
}

.tr-admin-panel > span,
.tr-commodity-preview .tr-admin-panel > span {
    color: var(--tr-muted);
    display: block;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.tr-admin-panel h2,
.tr-commodity-preview h2 {
    color: var(--tr-green-950);
    font-size: 22px;
    font-weight: 950;
    margin: 0;
}

.tr-admin-panel p {
    color: var(--tr-muted);
    line-height: 1.55;
}

.tr-admin-form-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tr-admin-form-grid-dense {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tr-admin-form-grid label {
    display: grid;
    gap: 6px;
}

.tr-admin-form-grid label span,
.tr-inline-check span {
    color: var(--tr-muted);
    font-size: 12px;
    font-weight: 900;
}

.tr-admin-form-grid input,
.tr-admin-form-grid select,
.tr-admin-form-grid textarea,
.tr-inline-admin-form input,
.tr-inline-admin-form select {
    background: var(--tr-green-50);
    border: 1px solid var(--tr-border);
    border-radius: 10px;
    color: var(--tr-green-950);
    font-weight: 800;
    min-height: 40px;
    padding: 8px 10px;
    width: 100%;
}

.tr-admin-form-wide {
    grid-column: 1 / -1;
}

.tr-admin-form-actions {
    align-items: end;
    display: flex;
}

.tr-admin-commit-form {
    margin-top: 14px;
}

.tr-inline-admin-form {
    align-items: center;
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(4, minmax(120px, 1fr)) auto;
}

.tr-inline-admin-form-wrap {
    grid-template-columns: repeat(3, minmax(120px, 1fr)) auto;
    margin-top: 10px;
}

.tr-inline-check {
    align-items: center;
    display: inline-flex !important;
    gap: 8px !important;
}

.tr-inline-check input {
    min-height: auto;
    width: auto;
}

.tr-onboarding-shell {
    align-items: start;
    animation: tr-onboarding-page-enter 420ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
    display: grid;
    gap: 22px;
    grid-template-columns: minmax(240px, 300px) minmax(0, 1fr);
}

@keyframes tr-onboarding-page-enter {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes tr-onboarding-step-enter {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes tr-onboarding-active-pulse {
    0%,
    100% {
        box-shadow: 0 18px 36px rgba(8, 45, 33, 0.18);
    }

    50% {
        box-shadow: 0 20px 42px rgba(8, 45, 33, 0.23), 0 0 0 4px rgba(230, 164, 59, 0.12);
    }
}

@keyframes tr-onboarding-camera-pulse {
    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.06);
    }
}

@keyframes tr-onboarding-bg-shift {
    from {
        background-position: 0% 50%, center;
    }

    to {
        background-position: 100% 50%, center;
    }
}

.tr-onboarding-steps {
    align-content: start;
    display: grid;
    gap: 12px;
    position: sticky;
    top: 24px;
}

.tr-onboarding-step {
    align-items: flex-start;
    animation: tr-onboarding-step-enter 360ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(8, 45, 33, 0.1);
    border-radius: 8px;
    box-shadow: 0 12px 28px rgba(8, 45, 33, 0.06);
    color: var(--tr-ink);
    display: grid;
    gap: 6px 10px;
    grid-template-columns: 34px minmax(0, 1fr);
    min-height: 76px;
    padding: 13px 14px;
    text-decoration: none;
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.tr-onboarding-step:nth-child(2) {
    animation-delay: 45ms;
}

.tr-onboarding-step:nth-child(3) {
    animation-delay: 90ms;
}

.tr-onboarding-step:nth-child(4) {
    animation-delay: 135ms;
}

.tr-onboarding-step:not(.is-locked):hover,
.tr-onboarding-step:not(.is-locked):focus-visible {
    border-color: rgba(28, 106, 73, 0.24);
    box-shadow: 0 16px 34px rgba(8, 45, 33, 0.12);
    transform: translateY(-2px);
}

.tr-onboarding-step > span {
    align-items: center;
    background: var(--tr-green-100);
    border-radius: 999px;
    color: var(--tr-green-800);
    display: inline-flex;
    font-size: 12px;
    font-weight: 950;
    height: 30px;
    justify-content: center;
    transition: background 180ms ease, color 180ms ease, transform 180ms ease;
    width: 30px;
}

.tr-onboarding-step:not(.is-locked):hover > span,
.tr-onboarding-step:not(.is-locked):focus-visible > span {
    transform: scale(1.06);
}

.tr-onboarding-steps strong {
    display: block;
    font-size: 12.5px;
    font-weight: 950;
    line-height: 1.2;
    min-width: 0;
}

.tr-onboarding-steps small {
    color: var(--tr-muted);
    display: block;
    font-size: 11.5px;
    grid-column: 2;
    line-height: 1.4;
    min-width: 0;
}

.tr-onboarding-step.is-active {
    animation-name: tr-onboarding-active-pulse;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    background: var(--tr-green-900);
    border-color: rgba(230, 164, 59, 0.55);
    box-shadow: 0 18px 36px rgba(8, 45, 33, 0.18);
    color: #ffffff;
}

.tr-onboarding-step.is-active > span {
    background: rgba(230, 164, 59, 0.22);
    color: #ffffff;
}

.tr-onboarding-step.is-active small {
    color: rgba(255, 255, 255, 0.74);
}

.tr-onboarding-step.is-complete > span {
    background: rgba(21, 128, 61, 0.16);
    color: var(--tr-success);
}

.tr-onboarding-step.is-locked {
    background: rgba(255, 255, 255, 0.58);
    color: rgba(37, 51, 44, 0.48);
    cursor: not-allowed;
}

.tr-onboarding-step.is-locked > span {
    background: rgba(37, 51, 44, 0.08);
    color: rgba(37, 51, 44, 0.46);
}

.tr-onboarding-panel {
    animation: tr-onboarding-page-enter 480ms cubic-bezier(0.2, 0.8, 0.2, 1) 80ms both;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(8, 45, 33, 0.1);
    border-radius: 8px;
    box-shadow: 0 18px 44px rgba(8, 45, 33, 0.08);
    min-width: 0;
    padding: clamp(18px, 2.2vw, 28px);
    transition: box-shadow 220ms ease, transform 220ms ease;
}

.tr-onboarding-panel:focus-within {
    box-shadow: 0 22px 52px rgba(8, 45, 33, 0.12);
}

.tr-onboarding-shell.is-loading .tr-onboarding-panel,
.tr-onboarding-panel.is-loading {
    opacity: 0.68;
    pointer-events: none;
}

.tr-onboarding-heading {
    border-bottom: 1px solid rgba(8, 45, 33, 0.08);
    margin-bottom: 18px;
    padding-bottom: 14px;
}

.tr-onboarding-heading span {
    color: var(--tr-green-700);
    display: block;
    font-size: 11.5px;
    font-weight: 950;
    letter-spacing: 0;
    text-transform: uppercase;
}

.tr-onboarding-heading h2 {
    color: var(--tr-green-950);
    font-size: var(--tr-onboarding-heading-size);
    font-weight: 950;
    line-height: 1.2;
    margin: 4px 0;
}

.tr-onboarding-heading p,
.tr-onboarding-note {
    color: var(--tr-muted);
    font-size: var(--tr-onboarding-copy-size);
    line-height: 1.5;
    margin: 0;
}

.tr-onboarding-note.is-error {
    color: var(--tr-danger);
}

.tr-onboarding-panel .tr-admin-form-actions {
    flex-wrap: wrap;
    gap: 12px;
    justify-content: space-between;
    margin-top: 18px;
    width: 100%;
}

.tr-onboarding-panel .tr-admin-form-actions .btn-primary {
    margin-left: auto;
}

.tr-onboarding-form {
    display: grid;
    gap: 16px;
}

.tr-onboarding-step-form {
    max-width: 920px;
}

.tr-onboarding-personal-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
}

.tr-onboarding-field-grid {
    align-content: start;
    display: grid;
    gap: 13px;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
}

.tr-onboarding-field-grid-compact {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
}

.tr-onboarding-field-grid-bank {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
}

.tr-onboarding-form label,
.tr-onboarding-field-grid label,
.tr-selfie-upload-field {
    display: grid;
    gap: 6px;
    min-width: 0;
}

.tr-onboarding-field-wide {
    grid-column: 1 / -1;
}

.tr-onboarding-form label > span,
.tr-onboarding-field-grid label > span,
.tr-selfie-panel-heading > span,
.tr-selfie-upload-field > span {
    color: var(--tr-muted);
    font-size: var(--tr-onboarding-label-size);
    font-weight: 950;
}

.tr-onboarding-form input,
.tr-onboarding-form select,
.tr-onboarding-form textarea {
    background: var(--tr-green-50);
    border: 1px solid var(--tr-border);
    border-radius: 8px;
    color: var(--tr-green-950);
    font-size: var(--tr-onboarding-input-size);
    font-weight: 800;
    min-height: var(--tr-onboarding-control-size);
    padding: 8px 10px;
    transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
    width: 100%;
}

.tr-onboarding-form input[type="file"] {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tr-onboarding-form input:focus,
.tr-onboarding-form select:focus,
.tr-onboarding-form textarea:focus {
    border-color: rgba(28, 106, 73, 0.55);
    box-shadow: 0 0 0 3px rgba(46, 166, 106, 0.12);
    outline: 0;
    transform: translateY(-1px);
}

.tr-onboarding-panel .select2-container {
    max-width: 100%;
    min-width: 0;
    width: 100% !important;
}

.tr-onboarding-panel .select2-container--default .select2-selection--single {
    background: var(--tr-green-50);
    border: 1px solid var(--tr-border);
    border-radius: 8px;
    cursor: pointer;
    height: var(--tr-onboarding-control-size);
    position: relative;
    transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.tr-onboarding-panel .select2-container--default .select2-selection--single .select2-selection__rendered {
    align-items: center;
    color: var(--tr-green-950);
    display: flex;
    font-size: var(--tr-onboarding-input-size);
    font-weight: 650;
    height: 100%;
    line-height: 1.2;
    padding-left: 10px;
    padding-right: 86px;
}

.tr-onboarding-panel .select2-container--default .select2-selection--single .select2-selection__clear {
    align-items: center;
    background: rgba(8, 45, 33, 0.08);
    border-radius: 999px;
    color: var(--tr-green-800) !important;
    display: inline-flex;
    font-size: 20px;
    font-weight: 900;
    height: 24px;
    justify-content: center;
    margin: 0;
    position: absolute;
    right: 48px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    z-index: 2;
}

.tr-onboarding-panel .select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: rgba(102, 115, 107, 0.8);
}

.tr-onboarding-panel .select2-container--default .select2-selection--single .select2-selection__arrow {
    align-items: center;
    background: var(--tr-green-700);
    border-radius: 999px;
    box-shadow: 0 6px 14px rgba(8, 45, 33, 0.16);
    display: flex;
    height: 26px;
    justify-content: center;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    transition: background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
    width: 26px;
}

.tr-onboarding-panel .select2-container--default .select2-selection--single:hover .select2-selection__arrow,
.tr-onboarding-panel .select2-container--default.select2-container--focus .select2-selection--single .select2-selection__arrow,
.tr-onboarding-panel .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow {
    background: var(--tr-green-800);
    box-shadow: 0 8px 18px rgba(8, 45, 33, 0.2);
    transform: translateY(-50%) scale(1.04);
}

.tr-onboarding-panel .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #ffffff transparent transparent transparent !important;
    border-style: solid;
    border-width: 6px 5px 0 5px;
    height: 0;
    left: auto;
    margin: 0;
    position: static;
    top: auto;
    width: 0;
}

.tr-onboarding-panel .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent #ffffff transparent !important;
    border-width: 0 5px 6px 5px;
}

.tr-onboarding-panel .select2-container--default.select2-container--focus .select2-selection--single,
.tr-onboarding-panel .select2-container--default.select2-container--open .select2-selection--single {
    border-color: rgba(28, 106, 73, 0.55);
    box-shadow: 0 0 0 3px rgba(46, 166, 106, 0.12);
    transform: translateY(-1px);
}

.tr-onboarding-panel .select2-search,
.tr-onboarding-panel .select2-search--dropdown,
.select2-drop.tr-onboarding-select-dropdown .select2-search,
.select2-dropdown.tr-onboarding-select-dropdown .select2-search--dropdown {
    display: block !important;
    padding: 8px;
    position: static !important;
}

.tr-onboarding-panel .select2-search--dropdown.select2-search--hide,
.tr-onboarding-panel .select2-search-hidden,
.tr-onboarding-panel .select2-offscreen.select2-search,
.select2-drop.tr-onboarding-select-dropdown .select2-search-hidden,
.select2-drop.tr-onboarding-select-dropdown .select2-offscreen.select2-search {
    clip: auto !important;
    display: block !important;
    height: auto !important;
    left: auto !important;
    margin: 0 !important;
    overflow: visible !important;
    position: static !important;
    width: auto !important;
}

.tr-onboarding-panel .select2-search__field,
.tr-onboarding-panel .select2-input,
.select2-drop.tr-onboarding-select-dropdown .select2-input,
.select2-dropdown.tr-onboarding-select-dropdown .select2-search__field {
    background: #ffffff !important;
    border: 1px solid var(--tr-border) !important;
    border-radius: 8px !important;
    color: var(--tr-green-950) !important;
    font-size: var(--tr-onboarding-input-size) !important;
    font-weight: 700 !important;
    min-height: 36px;
    outline: 0;
    padding: 8px 10px !important;
    width: 100% !important;
}

.tr-onboarding-panel .select2-search__field:focus,
.tr-onboarding-panel .select2-input:focus,
.select2-drop.tr-onboarding-select-dropdown .select2-input:focus,
.select2-dropdown.tr-onboarding-select-dropdown .select2-search__field:focus {
    border-color: rgba(28, 106, 73, 0.55) !important;
    box-shadow: 0 0 0 3px rgba(46, 166, 106, 0.12) !important;
}

.tr-select2-manual-search {
    background: #ffffff;
    border-bottom: 1px solid rgba(8, 45, 33, 0.08);
    padding: 8px;
}

.tr-select2-manual-search-input {
    background: #ffffff;
    border: 1px solid var(--tr-border);
    border-radius: 8px;
    color: var(--tr-green-950);
    display: block;
    font-size: var(--tr-onboarding-input-size);
    font-weight: 700;
    min-height: 38px;
    outline: 0;
    padding: 8px 10px;
    width: 100%;
}

.tr-select2-manual-search-input:focus {
    border-color: rgba(28, 106, 73, 0.55);
    box-shadow: 0 0 0 3px rgba(46, 166, 106, 0.12);
}

.tr-selfie-panel {
    align-content: start;
    background: linear-gradient(180deg, #ffffff, var(--tr-green-50));
    border: 1px solid rgba(8, 45, 33, 0.1);
    border-radius: 8px;
    display: grid;
    gap: 12px;
    min-width: 0;
    padding: 14px;
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.tr-selfie-panel:focus-within,
.tr-selfie-panel:hover {
    border-color: rgba(28, 106, 73, 0.22);
    box-shadow: 0 16px 36px rgba(8, 45, 33, 0.11);
    transform: translateY(-1px);
}

.tr-selfie-panel-heading {
    align-items: center;
    display: flex;
    gap: 10px;
    justify-content: space-between;
    min-width: 0;
}

.tr-selfie-panel-heading strong {
    align-items: center;
    background: #14513A;
    border: 1px solid rgba(8, 45, 33, 0.14);
    border-radius: 999px;
    color: #ffffff;
    display: inline-flex;
    flex: 0 0 auto;
    font-size: 11px;
    font-weight: 950;
    justify-content: center;
    line-height: 1.2;
    max-width: 46%;
    min-height: 28px;
    padding: 6px 12px;
    text-align: center;
    white-space: normal;
}

.tr-selfie-frame {
    align-items: center;
    aspect-ratio: 4 / 3;
    background: #eef5ef;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border: 1px dashed rgba(8, 45, 33, 0.22);
    border-radius: 8px;
    display: grid;
    justify-items: center;
    min-height: 220px;
    overflow: hidden;
    position: relative;
}

.tr-selfie-frame.has-preview {
    border-style: solid;
}

.tr-selfie-frame video,
.tr-selfie-frame img {
    height: 100%;
    inset: 0;
    object-fit: cover;
    position: absolute;
    width: 100%;
}

.tr-selfie-frame.has-preview video {
    display: none;
}

.tr-selfie-frame.has-preview img:not([hidden]) {
    display: block;
}

.tr-selfie-placeholder {
    align-items: center;
    color: var(--tr-muted);
    display: grid;
    gap: 8px;
    justify-items: center;
    text-align: center;
}

.tr-selfie-placeholder em {
    align-items: center;
    animation: tr-onboarding-camera-pulse 2.8s ease-in-out infinite;
    background: var(--tr-white);
    border-radius: 999px;
    color: var(--tr-green-700);
    display: inline-flex;
    font-size: 26px;
    height: 56px;
    justify-content: center;
    width: 56px;
}

.tr-selfie-placeholder span {
    font-size: 13px;
    font-weight: 900;
}

.tr-selfie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tr-selfie-actions .btn {
    min-height: 38px;
}

.tr-selfie-upload-field input[type="file"] {
    background: var(--tr-white);
    font-size: var(--tr-onboarding-input-size);
    min-height: var(--tr-onboarding-control-size);
}

.tr-onboarding-panel .btn {
    font-size: 12px;
    min-height: 38px;
    padding: 8px 14px;
    transition: box-shadow 180ms ease, transform 180ms ease;
}

.tr-onboarding-panel .btn:hover,
.tr-onboarding-panel .btn:focus-visible {
    transform: translateY(-1px);
}

.tr-onboarding-panel .btn-primary:hover,
.tr-onboarding-panel .btn-primary:focus-visible {
    box-shadow: 0 12px 24px rgba(8, 45, 33, 0.16);
}

.tr-onboarding-panel .btn em {
    transition: transform 180ms ease;
}

.tr-onboarding-panel .btn:hover .ni-arrow-right,
.tr-onboarding-panel .btn:focus-visible .ni-arrow-right {
    transform: translateX(3px);
}

.tr-onboarding-panel .btn:hover .ni-arrow-left,
.tr-onboarding-panel .btn:focus-visible .ni-arrow-left {
    transform: translateX(-3px);
}

.tr-onboarding-review dl {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0 0 18px;
}

.tr-onboarding-review div {
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(57, 88, 45, 0.12);
    border-radius: 8px;
    min-width: 0;
    padding: 12px;
}

.tr-onboarding-review dt {
    color: rgba(37, 51, 44, 0.62);
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 4px;
}

.tr-onboarding-review dd {
    color: #17211b;
    font-size: 14px;
    font-weight: 700;
    margin: 0;
    overflow-wrap: anywhere;
}

@media (max-width: 1180px) {
    .tr-onboarding-personal-grid {
        grid-template-columns: 1fr;
    }

    .tr-selfie-frame {
        min-height: 260px;
    }
}

@media (max-width: 900px) {
    .tr-onboarding-shell {
        grid-template-columns: 1fr;
    }

    .tr-onboarding-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        position: static;
    }

}

@media (max-width: 560px) {
    .tr-onboarding-steps,
    .tr-onboarding-review dl,
    .tr-onboarding-field-grid {
        grid-template-columns: 1fr;
    }

    .tr-onboarding-panel {
        padding: 18px;
    }

    .tr-selfie-frame {
        min-height: 210px;
    }

    .tr-selfie-actions .btn {
        flex: 1 1 100%;
    }

    .tr-onboarding-panel .tr-admin-form-actions .btn {
        flex: 1 1 calc(50% - 6px);
        justify-content: center;
    }
}

.tr-admin-action-stack {
    display: grid;
    gap: 10px;
    min-width: 360px;
}

.tr-admin-action-stack details {
    color: var(--tr-muted);
}

.tr-admin-action-stack summary {
    color: var(--tr-green-700);
    cursor: pointer;
    font-weight: 900;
}

.tr-commodity-preview {
    align-items: start;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.34fr);
}

.tr-preview-facts {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 16px 0 0;
}

.tr-preview-facts div {
    background: var(--tr-green-50);
    border: 1px solid var(--tr-border);
    border-radius: 10px;
    padding: 12px;
}

.tr-preview-facts dt {
    color: var(--tr-muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.tr-preview-facts dd {
    color: var(--tr-green-950);
    font-weight: 900;
    margin: 4px 0 0;
}

.tr-preview-documents {
    display: grid;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.tr-preview-documents li {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 10px;
    color: var(--tr-white);
    font-weight: 900;
    padding: 10px;
}

.tr-preview-documents span {
    color: rgba(255, 255, 255, 0.72);
    display: block;
    font-size: 12px;
    margin-top: 3px;
}

.tr-admin-guidance-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tr-admin-guidance-card {
    background: var(--tr-green-50);
    border: 1px solid var(--tr-border);
    border-radius: 12px;
    display: grid;
    gap: 10px;
    padding: 14px;
}

.tr-admin-guidance-card > span {
    color: var(--tr-muted);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.tr-admin-guidance-card h3 {
    color: var(--tr-green-950);
    font-size: 18px;
    font-weight: 950;
    margin: 0;
}

.tr-admin-guidance-card p {
    color: var(--tr-muted);
    line-height: 1.45;
    margin: 0;
}

.tr-ui-reference,
.tr-reference-stack {
    display: grid;
    gap: 18px;
}

.tr-reference-section {
    background: transparent;
    display: grid;
    gap: 14px;
}

.tr-section-heading {
    display: grid;
    gap: 4px;
}

.tr-section-heading h2 {
    color: var(--tr-green-950);
    font-size: 18px;
    font-weight: 800;
    margin: 0;
}

.tr-reference-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tr-token-grid {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tr-token-swatch {
    background: var(--tr-white);
    border: 1px solid var(--tr-border);
    border-radius: 12px;
    display: grid;
    gap: 8px;
    padding: 12px;
}

.tr-token-swatch span {
    border: 1px solid rgba(23, 33, 27, 0.12);
    border-radius: 8px;
    display: block;
    height: 46px;
}

.tr-token-swatch strong {
    color: var(--tr-ink);
    font-size: 13px;
}

.tr-token-swatch small {
    color: var(--tr-muted);
    font-size: 12px;
}

.tr-ui-card {
    padding: 18px;
}

.tr-metric-card {
    align-items: center;
    display: flex;
    gap: 14px;
    min-height: 118px;
}

.tr-metric-card p,
.tr-commodity-card p,
.tr-warehouse-card p {
    color: var(--tr-muted);
    font-size: 13px;
    margin: 0;
}

.tr-metric-card strong {
    color: var(--tr-green-950);
    display: block;
    font-size: 26px;
    font-weight: 800;
    line-height: 1.1;
}

.tr-metric-card small {
    color: var(--tr-muted);
}

.tr-commodity-card {
    display: grid;
    gap: 14px;
    grid-template-columns: 62px minmax(0, 1fr);
}

.tr-commodity-thumb {
    align-items: center;
    background: var(--tr-green-100);
    border-radius: 12px;
    color: var(--tr-green-700);
    display: inline-flex;
    font-size: 28px;
    height: 62px;
    justify-content: center;
    width: 62px;
}

.tr-commodity-thumb.is-warning {
    background: var(--tr-gold-100);
    color: var(--tr-warning);
}

.tr-commodity-copy {
    min-width: 0;
}

.tr-commodity-card dl {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 14px 0 0;
}

.tr-commodity-card dt,
.tr-commodity-card dd {
    margin: 0;
}

.tr-commodity-card dt {
    color: var(--tr-muted);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.tr-commodity-card dd {
    color: var(--tr-ink);
    font-size: 13px;
    font-weight: 700;
}

.tr-warehouse-card,
.tr-document-viewer {
    display: grid;
    gap: 14px;
}

.tr-warehouse-capacity {
    align-items: center;
    display: flex;
    justify-content: space-between;
}

.tr-warehouse-capacity span {
    align-items: center;
    color: var(--tr-muted);
    display: inline-flex;
    gap: 8px;
}

.tr-warehouse-capacity strong {
    color: var(--tr-green-950);
    font-size: 20px;
}

.tr-progress-bar {
    background: var(--tr-green-500);
}

.tr-status-row {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tr-status-badge {
    align-items: center;
    border-radius: 999px;
    display: inline-flex;
    flex: 0 0 auto;
    font-size: 12px;
    font-weight: 800;
    gap: 6px;
    line-height: 1;
    max-width: 100%;
    padding: 8px 10px;
    white-space: normal;
}

.tr-status-badge em {
    flex: 0 0 auto;
}

.tr-status-badge span {
    min-width: 0;
    overflow-wrap: anywhere;
}

.tr-status-badge.is-success {
    background: var(--tr-green-100);
    color: var(--tr-green-900);
}

.tr-status-badge.is-warning {
    background: var(--tr-gold-100);
    color: #6B3A00;
}

.tr-status-badge.is-danger {
    background: rgba(194, 65, 59, 0.1);
    color: var(--tr-danger);
}

.tr-status-badge.is-info {
    background: rgba(37, 99, 235, 0.1);
    color: var(--tr-info);
}

.tr-status-badge.is-neutral {
    background: var(--tr-green-50);
    color: var(--tr-muted);
}

.tr-filter-bar {
    align-items: end;
    background: var(--tr-white);
    border: 1px solid var(--tr-border);
    border-radius: 12px;
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
    padding: 14px;
}

.tr-data-table {
    margin-bottom: 0;
}

.tr-data-table caption {
    color: var(--tr-muted);
    caption-side: top;
    font-size: 13px;
    font-weight: 700;
    padding: 14px 18px;
}

.tr-state-panel {
    align-items: center;
    background: var(--tr-white);
    border: 1px dashed var(--tr-border);
    border-radius: 12px;
    display: grid;
    justify-items: center;
    min-height: 170px;
    padding: 22px;
    text-align: center;
}

.tr-state-icon {
    align-items: center;
    background: var(--tr-green-50);
    border-radius: 50%;
    color: var(--tr-green-700);
    display: inline-flex;
    font-size: 26px;
    height: 54px;
    justify-content: center;
    width: 54px;
}

.tr-state-panel.is-error .tr-state-icon,
.tr-state-panel.is-permission .tr-state-icon {
    background: rgba(194, 65, 59, 0.1);
    color: var(--tr-danger);
}

.tr-state-panel h2 {
    color: var(--tr-green-950);
    font-size: 17px;
    font-weight: 800;
    margin: 8px 0 0;
}

.tr-state-panel p {
    color: var(--tr-muted);
    margin: 0;
}

.tr-activity-timeline {
    display: grid;
    gap: 14px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.tr-activity-timeline li {
    display: grid;
    gap: 12px;
    grid-template-columns: 36px minmax(0, 1fr);
}

.tr-timeline-marker {
    align-items: center;
    background: var(--tr-green-100);
    border-radius: 50%;
    color: var(--tr-green-700);
    display: inline-flex;
    height: 36px;
    justify-content: center;
    width: 36px;
}

.tr-activity-timeline strong {
    color: var(--tr-ink);
    display: block;
    font-size: 14px;
}

.tr-activity-timeline p,
.tr-activity-timeline time {
    color: var(--tr-muted);
    display: block;
    font-size: 12px;
    margin: 2px 0 0;
}

.tr-fee-breakdown {
    display: grid;
    gap: 10px;
}

.tr-fee-breakdown div {
    align-items: center;
    border-bottom: 1px solid var(--tr-border);
    display: flex;
    justify-content: space-between;
    padding-bottom: 10px;
}

.tr-fee-breakdown span {
    color: var(--tr-muted);
}

.tr-fee-breakdown strong {
    color: var(--tr-ink);
}

.tr-fee-breakdown .is-total {
    border-bottom: 0;
    padding: 8px 0 0;
}

.tr-fee-breakdown .is-total strong {
    color: var(--tr-green-700);
    font-size: 18px;
}

.tr-ai-card {
    border-color: rgba(230, 164, 59, 0.45);
    display: grid;
    gap: 14px;
    grid-template-columns: 46px minmax(0, 1fr);
}

.tr-ai-icon {
    align-items: center;
    background: var(--tr-gold-100);
    border-radius: 12px;
    color: var(--tr-gold-500);
    display: inline-flex;
    font-size: 24px;
    height: 46px;
    justify-content: center;
    width: 46px;
}

.tr-ai-message {
    color: var(--tr-ink);
    margin: 12px 0 0;
}

.tr-document-preview {
    align-items: center;
    aspect-ratio: 16 / 9;
    background:
        linear-gradient(135deg, rgba(221, 244, 231, 0.92), rgba(251, 235, 203, 0.72));
    border: 1px solid var(--tr-border);
    border-radius: 12px;
    color: var(--tr-green-700);
    display: flex;
    font-size: 44px;
    justify-content: center;
}

.tr-confirmation-modal .modal-content {
    border: 1px solid var(--tr-border);
    border-radius: 12px;
}

.tr-confirmation-modal .modal-title {
    color: var(--tr-green-950);
    font-size: 20px;
    font-weight: 800;
}

.tr-convention-list {
    background: var(--tr-white);
    border: 1px solid var(--tr-border);
    border-radius: 12px;
    color: var(--tr-ink);
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 18px 18px 18px 38px;
}

.tr-public-header,
.tr-public-footer {
    align-items: center;
    background: var(--tr-white);
    border: 1px solid var(--tr-border);
    display: flex;
    gap: 18px;
    justify-content: space-between;
    padding: 14px clamp(16px, 3vw, 36px);
}

.tr-public-brand img,
.tr-public-footer img {
    display: block;
    max-height: 54px;
    width: auto;
}

.tr-public-header nav,
.tr-public-footer nav {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.tr-public-header nav a,
.tr-public-footer nav a {
    color: var(--tr-green-900);
    font-weight: 700;
}

.tr-public-actions {
    align-items: center;
    display: flex;
    gap: 10px;
}

.transroc-public-shell {
    background: var(--tr-white);
    color: var(--tr-ink);
    font-family: var(--transroc-font-family);
}

.transroc-public-shell * {
    letter-spacing: 0;
}

.transroc-public-shell a:focus-visible,
.transroc-public-shell button:focus-visible,
.transroc-public-shell summary:focus-visible,
.transroc-public-shell input:focus-visible,
.transroc-public-shell select:focus-visible,
.transroc-public-shell textarea:focus-visible {
    box-shadow: 0 0 0 3px rgba(230, 164, 59, 0.42);
    outline: 2px solid transparent;
    outline-offset: 2px;
}

.tr-skip-link {
    background: var(--tr-green-950);
    color: var(--tr-white);
    left: 16px;
    padding: 10px 14px;
    position: absolute;
    top: -80px;
    z-index: 1000;
}

.tr-skip-link:focus {
    top: 16px;
}

.tr-public-container {
    margin: 0 auto;
    max-width: 1180px;
    padding: 0 24px;
    width: 100%;
}

.tr-public-header {
    border-left: 0;
    border-right: 0;
    border-top: 0;
    min-height: 82px;
    position: sticky;
    top: 0;
    z-index: 20;
}

.tr-public-brand {
    align-items: center;
    background: linear-gradient(135deg, var(--tr-brand-sage-800), var(--tr-brand-sage-700));
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 14px;
    box-shadow: 0 12px 28px rgba(59, 82, 43, 0.18);
    display: inline-flex;
    flex: 0 0 auto;
    padding: 5px 9px;
}

.tr-public-brand img {
    filter: drop-shadow(0 4px 10px rgba(13, 22, 10, 0.28));
    height: auto;
    max-height: 62px;
    object-fit: contain;
    width: 90px;
}

.tr-public-nav {
    align-items: center;
    display: flex;
    flex: 1 1 auto;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
}

.tr-public-nav a,
.tr-public-menu nav a {
    border-radius: 8px;
    color: var(--tr-green-900);
    font-size: 14px;
    font-weight: 800;
    padding: 9px 10px;
}

.tr-public-nav a:hover,
.tr-public-nav a[aria-current="page"],
.tr-public-menu nav a:hover,
.tr-public-menu nav a[aria-current="page"] {
    background: var(--tr-green-100);
    color: var(--tr-green-950);
}

.transroc-public-shell .btn {
    align-items: center;
    border-radius: 8px;
    display: inline-flex;
    font-weight: 800;
    gap: 8px;
    justify-content: center;
    min-height: 42px;
    padding-left: 16px;
    padding-right: 16px;
}

.transroc-public-shell .btn-primary {
    background: var(--tr-brand-sage-800);
    border-color: var(--tr-brand-sage-800);
    color: var(--tr-white);
}

.transroc-public-shell .btn-primary:hover {
    background: var(--tr-brand-sage-900);
    border-color: var(--tr-brand-sage-900);
    color: var(--tr-white);
}

.transroc-public-shell .btn-light {
    background: var(--tr-white);
    border-color: var(--tr-border);
    color: var(--tr-green-900);
}

.transroc-public-shell .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.74);
    color: var(--tr-white);
}

.transroc-public-shell .btn-outline-light:hover {
    background: var(--tr-white);
    color: var(--tr-green-900);
}

.tr-public-menu {
    display: none;
    position: relative;
}

.tr-public-menu summary {
    align-items: center;
    background: var(--tr-green-50);
    border: 1px solid var(--tr-border);
    border-radius: 8px;
    cursor: pointer;
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    height: 42px;
    justify-content: center;
    list-style: none;
    width: 42px;
}

.tr-public-menu summary::-webkit-details-marker {
    display: none;
}

.tr-public-menu summary span {
    background: var(--tr-green-900);
    border-radius: 999px;
    display: block;
    height: 2px;
    width: 18px;
}

.tr-public-menu nav {
    background: var(--tr-white);
    border: 1px solid var(--tr-border);
    border-radius: 12px;
    box-shadow: 0 18px 48px rgba(8, 45, 33, 0.14);
    display: grid;
    gap: 4px;
    min-width: 230px;
    padding: 10px;
    position: absolute;
    right: 0;
    top: 50px;
}

.tr-home-hero {
    align-items: center;
    display: flex;
    min-height: min(680px, calc(100svh - 140px));
    overflow: hidden;
    position: relative;
}

.tr-home-hero > img {
    height: 100%;
    inset: 0;
    object-fit: cover;
    position: absolute;
    width: 100%;
}

.tr-home-hero-overlay {
    background:
        linear-gradient(90deg, rgba(44, 66, 34, 0.76), rgba(88, 114, 68, 0.5) 58%, rgba(41, 63, 32, 0.68));
    inset: 0;
    position: absolute;
}

.tr-home-hero-content {
    align-items: end;
    display: grid;
    gap: 30px;
    grid-template-columns: minmax(0, 1fr) minmax(270px, 380px);
    padding-bottom: 46px;
    padding-top: 46px;
    position: relative;
    z-index: 1;
}

.tr-home-hero-copy {
    max-width: 760px;
}

.tr-home-hero-copy > span,
.tr-section-copy > span,
.tr-section-heading-public > span,
.tr-placeholder-page span {
    color: var(--tr-gold-500);
    display: block;
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.tr-home-hero h1 {
    color: var(--tr-white);
    font-size: 58px;
    font-weight: 900;
    line-height: 1;
    margin: 0 0 18px;
}

.tr-home-hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 19px;
    line-height: 1.55;
    margin: 0;
    max-width: 670px;
}

.tr-home-hero-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.tr-hero-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.tr-home-hero-stats {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 12px;
    display: grid;
    gap: 0;
    margin: 0;
}

.tr-home-hero-stats div {
    padding: 17px 18px;
}

.tr-home-hero-stats div + div {
    border-top: 1px solid var(--tr-border);
}

.tr-home-hero-stats dt {
    color: var(--tr-muted);
    font-size: 11px;
    font-weight: 900;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.tr-home-hero-stats dd {
    color: var(--tr-green-950);
    font-size: 16px;
    font-weight: 900;
    margin: 0;
}

.tr-public-section {
    padding: 78px 0;
}

.tr-public-section-light {
    background: var(--tr-green-50);
}

.tr-public-section-cream {
    background: var(--tr-cream);
}

.tr-public-section-green {
    background: linear-gradient(135deg, var(--tr-brand-sage-800), var(--tr-brand-sage-900));
    color: var(--tr-white);
}

.tr-home-intro,
.tr-split-section {
    align-items: start;
    display: grid;
    gap: 44px;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
}

.tr-section-copy h2,
.tr-section-heading-public h2,
.tr-placeholder-page h1 {
    color: var(--tr-green-950);
    font-size: 38px;
    font-weight: 900;
    line-height: 1.12;
    margin: 0 0 14px;
}

.tr-public-section-green .tr-section-heading-public h2 {
    color: var(--tr-white);
}

.tr-section-copy p,
.tr-section-heading-public p,
.tr-placeholder-page p {
    color: var(--tr-muted);
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

.tr-public-section-green .tr-section-heading-public p {
    color: rgba(255, 255, 255, 0.78);
}

.tr-check-list {
    display: grid;
    gap: 14px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.tr-check-list li {
    align-items: flex-start;
    background: var(--tr-white);
    border: 1px solid var(--tr-border);
    border-radius: 12px;
    color: var(--tr-ink);
    display: grid;
    font-weight: 700;
    gap: 12px;
    grid-template-columns: 28px minmax(0, 1fr);
    line-height: 1.5;
    padding: 16px;
}

.tr-check-list em {
    color: var(--tr-green-700);
    font-size: 22px;
}

.tr-section-heading-public {
    margin-bottom: 28px;
    max-width: 760px;
}

.tr-public-card-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tr-public-card-grid-four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tr-public-card {
    background: var(--tr-white);
    border: 1px solid var(--tr-border);
    border-radius: 12px;
    box-shadow: 0 14px 34px rgba(8, 45, 33, 0.08);
    color: var(--tr-ink);
    display: grid;
    gap: 13px;
    min-width: 0;
    padding: 20px;
}

.tr-public-card-icon {
    align-items: center;
    background: var(--tr-green-100);
    border-radius: 12px;
    color: var(--tr-green-700);
    display: inline-flex;
    font-size: 25px;
    height: 48px;
    justify-content: center;
    width: 48px;
}

.tr-public-commodity-media {
    aspect-ratio: 16 / 10;
    border-radius: 10px;
    margin: -6px -6px 2px;
    overflow: hidden;
}

.tr-public-commodity-media img {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.tr-public-commodity.is-warning .tr-public-card-icon {
    background: var(--tr-gold-100);
    color: #6B3A00;
}

.tr-public-commodity.is-info .tr-public-card-icon {
    background: rgba(37, 99, 235, 0.1);
    color: var(--tr-info);
}

.tr-public-commodity.is-neutral .tr-public-card-icon {
    background: var(--tr-green-50);
    color: var(--tr-muted);
}

.tr-public-card span {
    color: var(--tr-muted);
    display: block;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.tr-public-card h3 {
    color: var(--tr-green-950);
    font-size: 19px;
    font-weight: 900;
    margin: 0;
}

.tr-public-card p {
    color: var(--tr-muted);
    line-height: 1.6;
    margin: 0;
}

.tr-member-verify-page {
    min-height: calc(100vh - 250px);
}

.tr-member-verify-layout {
    display: grid;
    justify-items: center;
}

.tr-member-verify-card {
    background: var(--tr-white);
    border: 1px solid var(--tr-border);
    border-radius: 14px;
    box-shadow: 0 18px 44px rgba(8, 45, 33, 0.1);
    display: grid;
    gap: 20px;
    max-width: 720px;
    min-width: 0;
    padding: 34px;
    width: 100%;
}

.tr-member-verify-card.is-valid {
    border-top: 6px solid var(--tr-green-700);
}

.tr-member-verify-card.is-invalid {
    border-top: 6px solid var(--tr-danger);
}

.tr-member-verify-mark {
    align-items: center;
    background: var(--tr-green-100);
    border-radius: 16px;
    color: var(--tr-green-700);
    display: inline-flex;
    font-size: 38px;
    height: 66px;
    justify-content: center;
    width: 66px;
}

.tr-member-verify-card.is-invalid .tr-member-verify-mark {
    background: rgba(220, 38, 38, 0.08);
    color: var(--tr-danger);
}

.tr-member-verify-card span {
    color: var(--tr-muted);
    display: block;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.tr-member-verify-card h1 {
    color: var(--tr-green-950);
    font-size: 34px;
    font-weight: 950;
    line-height: 1.12;
    margin: 0 0 10px;
}

.tr-member-verify-card p {
    color: var(--tr-muted);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.tr-member-verify-details {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0;
}

.tr-member-verify-details div {
    background: var(--tr-green-50);
    border: 1px solid rgba(8, 45, 33, 0.1);
    border-radius: 10px;
    min-width: 0;
    padding: 13px 14px;
}

.tr-member-verify-details dt {
    color: var(--tr-muted);
    font-size: 10px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.tr-member-verify-details dd {
    color: var(--tr-green-950);
    font-size: 15px;
    font-weight: 850;
    line-height: 1.25;
    margin: 0;
    overflow-wrap: anywhere;
}

.tr-member-verify-reference {
    background: var(--tr-green-50);
    border: 1px solid rgba(8, 45, 33, 0.1);
    border-radius: 10px;
    padding: 13px 14px;
}

.tr-public-card-grade {
    color: var(--tr-green-700) !important;
    font-weight: 800;
}

.tr-process-list {
    counter-reset: process;
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    list-style: none;
    margin: 0;
    padding: 0;
}

.tr-process-list li {
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    padding: 20px;
}

.tr-process-list span {
    color: var(--tr-gold-500);
    display: block;
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 18px;
}

.tr-process-list h3 {
    color: var(--tr-white);
    font-size: 21px;
    font-weight: 900;
    margin: 0 0 8px;
}

.tr-process-list p {
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.6;
    margin: 0;
}

.tr-dashboard-preview,
.tr-market-panel {
    background: var(--tr-white);
    border: 1px solid var(--tr-border);
    border-radius: 12px;
    box-shadow: 0 16px 42px rgba(8, 45, 33, 0.1);
    display: grid;
    gap: 12px;
    padding: 18px;
}

.tr-dashboard-preview-top {
    align-items: center;
    background: linear-gradient(135deg, var(--tr-brand-sage-800), var(--tr-brand-sage-900));
    border-radius: 10px;
    display: flex;
    gap: 8px;
    min-height: 46px;
    padding: 0 14px;
}

.tr-dashboard-preview-top span {
    background: var(--tr-gold-500);
    border-radius: 50%;
    display: block;
    height: 10px;
    width: 10px;
}

.tr-dashboard-preview-row,
.tr-market-panel div {
    align-items: center;
    background: var(--tr-green-50);
    border: 1px solid var(--tr-border);
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    padding: 14px;
}

.tr-dashboard-preview-row span,
.tr-market-panel span {
    color: var(--tr-muted);
    font-size: 13px;
    font-weight: 800;
}

.tr-dashboard-preview-row strong,
.tr-market-panel strong {
    color: var(--tr-green-950);
    font-size: 15px;
    font-weight: 900;
    text-align: right;
}

.tr-market-panel {
    background: linear-gradient(135deg, var(--tr-brand-sage-800), var(--tr-brand-sage-900));
    border-color: rgba(230, 238, 219, 0.24);
}

.tr-market-panel div {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
}

.tr-market-panel span {
    color: rgba(255, 255, 255, 0.7);
}

.tr-market-panel strong {
    color: var(--tr-white);
}

.tr-text-link {
    align-items: center;
    color: var(--tr-green-700);
    display: inline-flex;
    font-weight: 900;
    gap: 8px;
    margin-top: 18px;
}

.tr-text-link:hover {
    color: var(--tr-green-950);
}

.tr-faq-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tr-faq-card h3 {
    font-size: 18px;
}

.tr-final-cta {
    background: linear-gradient(135deg, var(--tr-brand-sage-800), var(--tr-brand-sage-900));
}

.tr-final-cta .tr-section-copy {
    max-width: 720px;
}

.tr-final-cta h2 {
    color: var(--tr-white);
}

.tr-final-cta p {
    color: rgba(255, 255, 255, 0.8);
}

.tr-placeholder-page {
    align-items: center;
    background: var(--tr-green-50);
    display: flex;
    min-height: 58vh;
    padding: 96px 0;
}

.tr-placeholder-page .tr-public-container {
    max-width: 780px;
}

.tr-public-hero {
    background:
        linear-gradient(90deg, rgba(8, 45, 33, 0.94), rgba(8, 45, 33, 0.72)),
        url("../images/transroc/dashboard-background.webp");
    background-position: center;
    background-size: cover;
    color: var(--tr-white);
    padding: 90px 0;
}

.tr-public-hero-grid {
    align-items: end;
    display: grid;
    gap: 36px;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
}

.tr-public-hero .tr-section-copy {
    max-width: 790px;
}

.tr-public-hero .tr-section-copy h1 {
    color: var(--tr-white);
    font-size: 52px;
    font-weight: 900;
    line-height: 1.04;
    margin: 0 0 18px;
}

.tr-public-hero .tr-section-copy p,
.tr-public-section-green .tr-section-copy p {
    color: rgba(255, 255, 255, 0.84);
}

.tr-public-section-green .tr-section-copy h2 {
    color: var(--tr-white);
}

.tr-journey-summary,
.tr-fee-card,
.tr-risk-label,
.tr-topic-accordion {
    background: var(--tr-white);
    border: 1px solid var(--tr-border);
    border-radius: 12px;
    box-shadow: 0 16px 42px rgba(8, 45, 33, 0.1);
}

.tr-journey-summary {
    display: grid;
    gap: 12px;
    padding: 22px;
}

.tr-journey-summary > span,
.tr-fee-card > span,
.tr-risk-label > span {
    color: var(--tr-gold-500);
    display: block;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.tr-journey-summary strong {
    color: var(--tr-green-950);
    font-size: 36px;
    font-weight: 900;
    line-height: 1;
}

.tr-journey-summary p {
    color: var(--tr-muted);
    line-height: 1.6;
    margin: 0;
}

.tr-process-timeline {
    display: grid;
    gap: 18px;
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
}

.tr-process-timeline::before {
    background: var(--tr-green-100);
    bottom: 24px;
    content: "";
    left: 23px;
    position: absolute;
    top: 24px;
    width: 2px;
}

.tr-process-timeline-item {
    display: grid;
    gap: 18px;
    grid-template-columns: 48px minmax(0, 1fr);
    min-width: 0;
    position: relative;
}

.tr-process-timeline-marker {
    align-items: center;
    background: var(--tr-green-700);
    border: 4px solid var(--tr-white);
    border-radius: 50%;
    box-shadow: 0 0 0 1px var(--tr-green-100);
    color: var(--tr-white);
    display: flex;
    font-size: 13px;
    font-weight: 900;
    height: 48px;
    justify-content: center;
    position: relative;
    width: 48px;
    z-index: 1;
}

.tr-process-timeline-card {
    background: var(--tr-white);
    border: 1px solid var(--tr-border);
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(8, 45, 33, 0.08);
    display: grid;
    gap: 8px;
    min-width: 0;
    padding: 20px;
}

.tr-process-timeline-card span {
    color: var(--tr-gold-500);
    display: block;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.tr-process-timeline-card h3 {
    color: var(--tr-green-950);
    font-size: 20px;
    font-weight: 900;
    line-height: 1.25;
    margin: 0;
}

.tr-process-timeline-card p {
    color: var(--tr-muted);
    line-height: 1.65;
    margin: 0;
}

.tr-fee-card {
    display: grid;
    gap: 16px;
    padding: 26px;
}

.tr-fee-card h2 {
    color: var(--tr-green-950);
    font-size: 34px;
    font-weight: 900;
    line-height: 1.12;
    margin: 0;
}

.tr-fee-card p {
    color: var(--tr-muted);
    line-height: 1.7;
    margin: 0;
}

.tr-early-sale-callout {
    background: var(--tr-green-950);
    border-radius: 12px;
    display: grid;
    gap: 8px;
    padding: 18px;
}

.tr-early-sale-callout strong {
    color: var(--tr-gold-500);
    font-size: 18px;
    font-weight: 900;
}

.tr-early-sale-callout p {
    color: rgba(255, 255, 255, 0.84);
}

.tr-risk-label-grid {
    display: grid;
    gap: 14px;
}

.tr-risk-label {
    display: grid;
    gap: 8px;
    padding: 18px;
}

.tr-risk-label p {
    color: var(--tr-muted);
    font-weight: 700;
    line-height: 1.55;
    margin: 0;
}

.tr-guidance-band {
    align-items: start;
    display: grid;
    gap: 40px;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
}

.tr-guidance-list {
    display: grid;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.tr-guidance-list li {
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    color: var(--tr-white);
    display: grid;
    font-weight: 800;
    gap: 12px;
    grid-template-columns: 24px minmax(0, 1fr);
    padding: 16px;
}

.tr-guidance-list em {
    color: var(--tr-gold-500);
    font-size: 22px;
}

.tr-faq-layout {
    display: grid;
    gap: 24px;
}

.tr-accordion-list {
    display: grid;
    gap: 12px;
}

.tr-topic-accordion {
    overflow: hidden;
}

.tr-topic-accordion summary {
    align-items: center;
    color: var(--tr-green-950);
    cursor: pointer;
    display: grid;
    font-size: 17px;
    font-weight: 900;
    gap: 14px;
    grid-template-columns: minmax(0, 1fr) 24px;
    list-style: none;
    padding: 18px 20px;
}

.tr-topic-accordion summary::-webkit-details-marker {
    display: none;
}

.tr-topic-accordion summary span {
    min-width: 0;
}

.tr-topic-accordion summary em {
    color: var(--tr-green-700);
    font-size: 20px;
}

.tr-topic-accordion[open] summary {
    border-bottom: 1px solid var(--tr-border);
}

.tr-topic-accordion[open] summary em {
    transform: rotate(45deg);
}

.tr-topic-accordion-body {
    display: grid;
    gap: 4px;
    padding: 18px 20px 20px;
}

.tr-topic-accordion-body p {
    color: var(--tr-muted);
    line-height: 1.65;
    margin: 0;
}

.tr-commodity-layout {
    align-items: start;
    display: grid;
    gap: 24px;
    grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
}

.tr-filter-panel {
    background: var(--tr-white);
    border: 1px solid var(--tr-border);
    border-radius: 12px;
    box-shadow: 0 14px 34px rgba(8, 45, 33, 0.08);
    display: grid;
    gap: 18px;
    padding: 20px;
    position: sticky;
    top: 104px;
}

.tr-filter-panel-head {
    display: grid;
    gap: 4px;
}

.tr-filter-panel-head span,
.tr-catalogue-results-head span {
    color: var(--tr-gold-500);
    display: block;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.tr-filter-panel-head h2,
.tr-catalogue-results-head h2 {
    color: var(--tr-green-950);
    font-size: 24px;
    font-weight: 900;
    line-height: 1.15;
    margin: 0;
}

.tr-filter-fields {
    display: grid;
    gap: 12px;
}

.tr-filter-fields label {
    display: grid;
    gap: 6px;
    margin: 0;
}

.tr-filter-fields label > span,
.tr-filter-checks span {
    color: var(--tr-green-900);
    font-size: 12px;
    font-weight: 900;
}

.tr-filter-checks {
    display: grid;
    gap: 10px;
}

.tr-filter-checks label {
    align-items: center;
    display: flex;
    gap: 9px;
    margin: 0;
}

.tr-filter-checks input {
    accent-color: var(--tr-green-700);
}

.tr-filter-actions,
.tr-public-pagination {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tr-catalogue-results {
    display: grid;
    gap: 18px;
    min-width: 0;
}

.tr-catalogue-results-head {
    align-items: end;
    display: flex;
    gap: 16px;
    justify-content: space-between;
}

.tr-catalogue-results-head p,
.tr-public-pagination span {
    color: var(--tr-muted);
    font-size: 13px;
    font-weight: 800;
    margin: 0;
}

.tr-catalogue-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tr-catalog-card {
    background: var(--tr-white);
    border: 1px solid var(--tr-border);
    border-radius: 12px;
    box-shadow: 0 14px 34px rgba(8, 45, 33, 0.08);
    display: grid;
    min-width: 0;
    overflow: hidden;
}

.tr-catalog-card-media {
    aspect-ratio: 16 / 10;
    background: var(--tr-green-50);
    overflow: hidden;
    position: relative;
}

.tr-catalog-card-media img {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.tr-catalog-card-flags {
    align-items: flex-start;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    left: 12px;
    position: absolute;
    right: 12px;
    top: 12px;
}

.tr-status-pill,
.tr-mini-pill {
    border-radius: 999px;
    display: inline-flex;
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
    padding: 8px 10px;
}

.tr-status-pill {
    background: var(--tr-green-700);
    color: var(--tr-white);
}

.tr-status-pill.is-limited {
    background: var(--tr-warning);
}

.tr-status-pill.is-closing-soon {
    background: var(--tr-danger);
}

.tr-mini-pill {
    background: rgba(255, 255, 255, 0.92);
    color: var(--tr-green-950);
}

.tr-mini-pill.is-warning {
    color: var(--tr-danger);
}

.tr-mini-pill.is-stale {
    color: #6B3A00;
}

.tr-catalog-card-body {
    display: grid;
    gap: 16px;
    padding: 18px;
}

.tr-catalog-card-title {
    display: grid;
    gap: 5px;
}

.tr-catalog-card-title > span {
    color: var(--tr-gold-500);
    display: block;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.tr-catalog-card-title h3 {
    color: var(--tr-green-950);
    font-size: 22px;
    font-weight: 900;
    line-height: 1.15;
    margin: 0;
}

.tr-catalog-card-title p,
.tr-estimate-note {
    color: var(--tr-muted);
    line-height: 1.55;
    margin: 0;
}

.tr-catalog-facts {
    display: grid;
    gap: 10px;
    margin: 0;
}

.tr-catalog-facts div {
    border-top: 1px solid var(--tr-border);
    display: grid;
    gap: 3px;
    padding-top: 10px;
}

.tr-catalog-facts dt {
    color: var(--tr-muted);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.tr-catalog-facts dd {
    color: var(--tr-green-950);
    font-size: 14px;
    font-weight: 850;
    line-height: 1.35;
    margin: 0;
}

.tr-sale-cycles {
    display: grid;
    gap: 8px;
}

.tr-sale-cycles > span {
    color: var(--tr-muted);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.tr-sale-cycles ul {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.tr-sale-cycles li {
    background: var(--tr-green-50);
    border: 1px solid var(--tr-border);
    border-radius: 999px;
    color: var(--tr-green-900);
    font-size: 12px;
    font-weight: 900;
    padding: 7px 9px;
}

.tr-estimate-note {
    background: var(--tr-green-50);
    border: 1px solid var(--tr-border);
    border-radius: 10px;
    font-size: 13px;
    padding: 12px;
}

.tr-stale-alert,
.tr-empty-catalogue {
    background: var(--tr-gold-100);
    border: 1px solid rgba(217, 119, 6, 0.24);
    border-radius: 12px;
    color: #6B3A00;
    display: grid;
    gap: 6px;
    padding: 16px;
}

.tr-stale-alert strong,
.tr-empty-catalogue h3 {
    color: #5E3400;
    font-weight: 900;
}

.tr-stale-alert p,
.tr-empty-catalogue p {
    color: #6B3A00;
    line-height: 1.55;
    margin: 0;
}

.tr-empty-catalogue {
    background: var(--tr-white);
    border-color: var(--tr-border);
    color: var(--tr-muted);
    min-height: 260px;
    place-content: center;
}

.tr-empty-catalogue > span {
    color: var(--tr-gold-500);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.tr-public-pagination {
    justify-content: center;
    padding-top: 8px;
}

.tr-card-link {
    align-items: center;
    border: 1px solid var(--tr-green-700);
    border-radius: 999px;
    color: var(--tr-green-800);
    display: inline-flex;
    font-size: 13px;
    font-weight: 900;
    justify-content: center;
    padding: 10px 14px;
    text-decoration: none;
}

.tr-card-link:focus-visible,
.tr-card-link:hover {
    background: var(--tr-green-700);
    color: var(--tr-white);
}

.tr-detail-hero {
    padding-bottom: 38px;
}

.tr-detail-hero-grid,
.tr-detail-layout,
.tr-record-grid,
.tr-guidance-lists {
    display: grid;
    gap: 24px;
}

.tr-detail-hero-grid {
    align-items: center;
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.75fr);
}

.tr-detail-media {
    aspect-ratio: 16 / 10;
    background: var(--tr-green-50);
    border: 1px solid var(--tr-border);
    border-radius: 12px;
    box-shadow: 0 18px 44px rgba(8, 45, 33, 0.12);
    margin: 0;
    overflow: hidden;
}

.tr-detail-media img {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.tr-detail-layout {
    align-items: start;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
}

.tr-detail-main,
.tr-detail-sidebar {
    display: grid;
    gap: 18px;
    min-width: 0;
}

.tr-detail-sidebar {
    position: sticky;
    top: 94px;
}

.tr-detail-card {
    background: var(--tr-white);
    border: 1px solid var(--tr-border);
    border-radius: 12px;
    box-shadow: 0 14px 34px rgba(8, 45, 33, 0.08);
    display: grid;
    gap: 16px;
    min-width: 0;
    padding: 20px;
}

.tr-detail-card-head {
    align-items: flex-start;
    display: flex;
    gap: 14px;
    justify-content: space-between;
}

.tr-detail-card-head span,
.tr-freshness-card > span {
    color: var(--tr-gold-500);
    display: block;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.tr-detail-card h2 {
    color: var(--tr-green-950);
    font-size: 24px;
    font-weight: 900;
    line-height: 1.2;
    margin: 0;
}

.tr-detail-card p {
    color: var(--tr-muted);
    line-height: 1.6;
    margin: 0;
}

.tr-detail-facts {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0;
}

.tr-detail-facts.is-stacked {
    grid-template-columns: 1fr;
}

.tr-detail-facts div {
    border-top: 1px solid var(--tr-border);
    display: grid;
    gap: 4px;
    padding-top: 11px;
}

.tr-detail-facts dt {
    color: var(--tr-muted);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.tr-detail-facts dd {
    color: var(--tr-green-950);
    font-weight: 850;
    line-height: 1.42;
    margin: 0;
}

.tr-freshness-card {
    background: var(--tr-green-950);
}

.tr-freshness-card h2,
.tr-freshness-card strong {
    color: var(--tr-white);
}

.tr-freshness-card p {
    color: rgba(255, 255, 255, 0.78);
}

.tr-muted-line {
    background: var(--tr-green-50);
    border-radius: 8px;
    padding: 10px 12px;
}

.tr-detail-list,
.tr-document-list {
    display: grid;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.tr-detail-list li,
.tr-document-list a {
    background: var(--tr-green-50);
    border: 1px solid var(--tr-border);
    border-radius: 10px;
    display: grid;
    gap: 4px;
    padding: 12px;
}

.tr-detail-list strong,
.tr-document-list strong {
    color: var(--tr-green-950);
    font-weight: 900;
}

.tr-detail-list span,
.tr-document-list span {
    color: var(--tr-muted);
    font-size: 13px;
    line-height: 1.45;
}

.tr-document-list a {
    text-decoration: none;
}

.tr-document-list a:focus-visible,
.tr-document-list a:hover {
    border-color: var(--tr-green-700);
}

.tr-chart-ranges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tr-chart-ranges a {
    border: 1px solid var(--tr-border);
    border-radius: 999px;
    color: var(--tr-green-900);
    font-size: 12px;
    font-weight: 900;
    padding: 8px 11px;
    text-decoration: none;
}

.tr-chart-ranges a.is-active,
.tr-chart-ranges a:focus-visible,
.tr-chart-ranges a:hover {
    background: var(--tr-green-700);
    border-color: var(--tr-green-700);
    color: var(--tr-white);
}

.tr-chart-panel {
    aspect-ratio: 16 / 7;
    background: linear-gradient(180deg, var(--tr-green-50), var(--tr-white));
    border: 1px solid var(--tr-border);
    border-radius: 12px;
    min-height: 240px;
    overflow: hidden;
    padding: 10px;
}

.tr-chart-panel svg {
    display: block;
    height: 100%;
    width: 100%;
}

.tr-chart-axis {
    stroke: rgba(20, 83, 45, 0.2);
    stroke-width: 0.8;
}

.tr-chart-line {
    fill: none;
    stroke: var(--tr-green-700);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2.4;
}

.tr-chart-point {
    fill: var(--tr-gold-500);
    stroke: var(--tr-white);
    stroke-width: 0.8;
}

.tr-chart-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tr-chart-summary span {
    background: var(--tr-green-50);
    border: 1px solid var(--tr-border);
    border-radius: 999px;
    color: var(--tr-green-900);
    font-size: 12px;
    font-weight: 900;
    padding: 8px 10px;
}

.tr-table-wrap {
    border: 1px solid var(--tr-border);
    border-radius: 10px;
    overflow-x: auto;
}

.tr-public-table {
    border-collapse: collapse;
    min-width: 720px;
    width: 100%;
}

.tr-public-table caption {
    color: var(--tr-muted);
    font-size: 12px;
    font-weight: 900;
    padding: 12px;
    text-align: left;
    text-transform: uppercase;
}

.tr-public-table th,
.tr-public-table td {
    border-top: 1px solid var(--tr-border);
    color: var(--tr-green-950);
    font-size: 13px;
    line-height: 1.45;
    padding: 10px 12px;
    text-align: left;
    vertical-align: top;
}

.tr-public-table th {
    background: var(--tr-green-50);
    color: var(--tr-muted);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.tr-record-grid,
.tr-guidance-lists {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tr-guidance-window {
    color: var(--tr-green-950) !important;
    font-size: 18px;
    font-weight: 900;
}

.tr-guidance-lists h3 {
    color: var(--tr-green-950);
    font-size: 16px;
    font-weight: 900;
    margin: 0 0 8px;
}

.tr-guidance-lists ul {
    color: var(--tr-muted);
    display: grid;
    gap: 7px;
    line-height: 1.5;
    margin: 0;
    padding-left: 18px;
}

.tr-advisory-disclaimer,
.tr-no-guidance {
    background: var(--tr-gold-100);
    border: 1px solid rgba(217, 119, 6, 0.24);
    border-radius: 10px;
    color: #6B3A00 !important;
    padding: 12px;
}

.tr-no-guidance {
    display: grid;
    gap: 5px;
}

.tr-no-guidance strong {
    color: #5E3400;
}

.tr-market-data-layout {
    align-items: start;
    display: grid;
    gap: 24px;
    grid-template-columns: minmax(280px, 0.34fr) minmax(0, 1fr);
}

.tr-market-filter-panel {
    position: sticky;
    top: 94px;
}

.tr-market-data-main {
    display: grid;
    gap: 18px;
    min-width: 0;
}

.tr-market-summary-card {
    background: var(--tr-white);
    border: 1px solid var(--tr-border);
    border-radius: 12px;
    box-shadow: 0 18px 44px rgba(8, 45, 33, 0.12);
    display: grid;
    gap: 8px;
    padding: 20px;
}

.tr-market-summary-card span,
.tr-indicator-card span {
    color: var(--tr-gold-500);
    display: block;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.tr-market-summary-card strong {
    color: var(--tr-green-950);
    font-size: 30px;
    font-weight: 900;
    line-height: 1.1;
}

.tr-market-summary-card p {
    color: var(--tr-muted);
    line-height: 1.5;
    margin: 0;
}

.tr-commodity-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tr-commodity-tabs a {
    border: 1px solid var(--tr-border);
    border-radius: 999px;
    color: var(--tr-green-900);
    font-size: 12px;
    font-weight: 900;
    padding: 8px 10px;
    text-decoration: none;
}

.tr-commodity-tabs a.is-active,
.tr-commodity-tabs a:focus-visible,
.tr-commodity-tabs a:hover {
    background: var(--tr-green-700);
    border-color: var(--tr-green-700);
    color: var(--tr-white);
}

.tr-market-indicators {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tr-indicator-card {
    background: var(--tr-white);
    border: 1px solid var(--tr-border);
    border-radius: 12px;
    box-shadow: 0 14px 34px rgba(8, 45, 33, 0.08);
    display: grid;
    gap: 8px;
    padding: 18px;
}

.tr-indicator-card strong {
    color: var(--tr-green-950);
    font-size: 22px;
    font-weight: 900;
    line-height: 1.15;
}

.tr-indicator-card p {
    color: var(--tr-muted);
    line-height: 1.5;
    margin: 0;
}

.tr-warehouse-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tr-warehouse-card {
    background: var(--tr-white);
    border: 1px solid var(--tr-border);
    border-radius: 12px;
    box-shadow: 0 14px 34px rgba(8, 45, 33, 0.08);
    display: grid;
    min-width: 0;
    overflow: hidden;
}

.tr-warehouse-card figure {
    aspect-ratio: 16 / 10;
    background: var(--tr-green-50);
    margin: 0;
    overflow: hidden;
}

.tr-warehouse-card img {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.tr-warehouse-card-body {
    display: grid;
    gap: 16px;
    padding: 18px;
}

.tr-redaction-panel {
    background: var(--tr-green-950);
    border-radius: 12px;
    box-shadow: 0 18px 44px rgba(8, 45, 33, 0.12);
    padding: 22px;
}

.tr-redaction-panel ul {
    color: rgba(255, 255, 255, 0.82);
    display: grid;
    gap: 12px;
    line-height: 1.6;
    margin: 0;
    padding-left: 18px;
}

.tr-document-pending {
    background: var(--tr-gold-100);
    border: 1px solid rgba(217, 119, 6, 0.24);
    border-radius: 10px;
    display: grid;
    gap: 4px;
    padding: 12px;
}

.tr-document-pending strong {
    color: #5E3400;
}

.tr-document-pending span {
    color: #6B3A00;
    font-size: 13px;
    line-height: 1.45;
}

.tr-contact-layout,
.tr-legal-layout {
    align-items: start;
    display: grid;
    gap: 24px;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
}

.tr-contact-form label {
    display: grid;
    gap: 7px;
}

.tr-contact-form label > span {
    color: var(--tr-muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.tr-honeypot {
    height: 0;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    width: 0;
}

.tr-success-alert {
    background: var(--tr-success-soft);
    border: 1px solid rgba(22, 101, 52, 0.22);
    border-radius: 10px;
    color: var(--tr-green-900);
    display: grid;
    gap: 5px;
    padding: 12px;
}

.tr-success-alert strong {
    color: var(--tr-green-950);
}

.tr-success-alert p {
    color: var(--tr-green-900);
}

.tr-legal-sections {
    display: grid;
    gap: 14px;
}

.tr-legal-sections p {
    background: var(--tr-green-50);
    border: 1px solid var(--tr-border);
    border-radius: 10px;
    padding: 14px;
}

.tr-cookie-panel {
    align-items: center;
    background: var(--tr-white);
    border: 1px solid var(--tr-border);
    border-radius: 12px;
    bottom: 18px;
    box-shadow: 0 18px 44px rgba(8, 45, 33, 0.16);
    display: grid;
    gap: 14px;
    grid-template-columns: minmax(0, 1fr) auto;
    left: 18px;
    margin: 0 auto;
    max-width: min(980px, calc(100vw - 36px));
    padding: 16px;
    position: fixed;
    right: 18px;
    z-index: 1050;
}

.tr-cookie-panel h2,
.tr-cookie-choice h2,
.tr-not-found-card h2 {
    color: var(--tr-green-950);
    font-size: 18px;
    font-weight: 900;
    margin: 0;
}

.tr-cookie-panel p,
.tr-cookie-choice p,
.tr-cookie-choice-copy {
    color: var(--tr-muted);
    font-size: 14px;
    line-height: 1.55;
    margin: 0;
}

.tr-cookie-panel-form {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.tr-cookie-toggle {
    align-items: center;
    color: var(--tr-ink);
    display: inline-flex;
    font-weight: 800;
    gap: 8px;
    margin: 0;
    white-space: nowrap;
}

.tr-cookie-page-grid,
.tr-not-found-grid {
    align-items: start;
    display: grid;
    gap: 26px;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.55fr);
}

.tr-cookie-card form {
    display: grid;
    gap: 16px;
}

.tr-cookie-choice {
    align-items: center;
    border: 1px solid var(--tr-border);
    border-radius: 10px;
    display: flex;
    gap: 18px;
    justify-content: space-between;
    padding: 15px;
}

.tr-cookie-choice.is-required {
    background: var(--tr-green-50);
}

.tr-cookie-choice strong,
.tr-cookie-choice-title {
    color: var(--tr-green-900);
    display: block;
    font-weight: 900;
}

.tr-public-alert {
    border-radius: 10px;
    font-weight: 800;
    padding: 12px;
}

.tr-public-alert-success {
    background: var(--tr-success-soft);
    border: 1px solid rgba(22, 101, 52, 0.22);
    color: var(--tr-green-900);
}

.tr-not-found-card nav {
    display: grid;
    gap: 10px;
}

.tr-not-found-card a {
    border: 1px solid var(--tr-border);
    border-radius: 10px;
    color: var(--tr-green-800);
    font-weight: 900;
    padding: 12px 14px;
}

.tr-not-found-card a:hover {
    background: var(--tr-green-50);
    color: var(--tr-green-950);
}

@media (prefers-reduced-motion: no-preference) {
    .tr-process-timeline-card,
    .tr-topic-accordion summary em,
    .tr-catalog-card,
    .tr-warehouse-card {
        transition: box-shadow 160ms ease, transform 160ms ease;
    }

    .tr-process-timeline-card:hover,
    .tr-catalog-card:hover,
    .tr-warehouse-card:hover {
        box-shadow: 0 18px 40px rgba(8, 45, 33, 0.12);
    }
}

.tr-public-footer {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 250, 245, 0.98));
    border-bottom: 0;
    border-left: 0;
    border-right: 0;
    border-top: 1px solid var(--tr-border);
    display: block;
    padding: 0 clamp(20px, 5vw, 72px);
}

.tr-public-footer-inner {
    display: grid;
    gap: clamp(32px, 6vw, 92px);
    grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.25fr);
    margin: 0 auto;
    max-width: 1560px;
    padding: 42px 0 32px;
}

.tr-public-footer-brand {
    display: grid;
    gap: 16px;
    justify-items: start;
    max-width: 430px;
}

.tr-public-footer-brand img {
    background: linear-gradient(135deg, var(--tr-brand-sage-800), var(--tr-brand-sage-700));
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 14px;
    box-sizing: content-box;
    filter: drop-shadow(0 4px 10px rgba(13, 22, 10, 0.28));
    max-height: 62px;
    padding: 5px 9px;
    width: 90px;
}

.tr-public-footer-brand p {
    color: var(--tr-muted);
    line-height: 1.55;
    margin: 0;
}

.tr-public-footer-cta {
    align-items: center;
    background: var(--tr-brand-sage-800);
    border-radius: 8px;
    color: var(--tr-white) !important;
    display: inline-flex;
    font-size: 15px;
    font-weight: 800;
    min-height: 44px;
    padding: 0 18px;
}

.tr-public-footer-cta:hover {
    background: var(--tr-brand-sage-900);
}

.tr-public-footer-links {
    display: grid;
    gap: clamp(24px, 4vw, 52px);
    grid-template-columns: repeat(3, minmax(140px, 1fr));
}

.tr-public-footer .tr-public-footer-group {
    align-items: stretch;
    display: block;
}

.tr-public-footer-group h2 {
    color: var(--tr-green-950);
    font-size: 13px;
    font-weight: 900;
    line-height: 1.2;
    margin: 0 0 14px;
    text-transform: uppercase;
}

.tr-public-footer-group ul {
    display: grid;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.tr-public-footer-group a {
    color: var(--tr-green-900);
    display: inline-flex;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.3;
    text-decoration: none;
}

.tr-public-footer-group a:hover {
    color: var(--tr-green-700);
}

.tr-public-footer-bottom {
    align-items: center;
    border-top: 1px solid rgba(8, 45, 33, 0.1);
    color: var(--tr-muted);
    display: flex;
    gap: 18px;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1560px;
    padding: 18px 0 22px;
}

.tr-public-footer-bottom small,
.tr-public-footer-bottom span {
    color: var(--tr-muted);
    font-size: 14px;
    line-height: 1.4;
    white-space: nowrap;
}

@media (min-width: 1200px) {
    .transroc-shell.has-sidebar .transroc-wrap {
        margin-left: var(--tr-sidebar-width) !important;
        max-width: calc(100vw - var(--tr-sidebar-width));
        padding-left: 0 !important;
        width: calc(100vw - var(--tr-sidebar-width));
    }

    .transroc-shell .transroc-mobile-header {
        display: none;
    }
}

@media (max-width: 1279.98px) {
    .tr-dashboard-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tr-dashboard-grid .tr-advisor-card {
        grid-column: span 2;
    }

    .tr-lower-grid {
        grid-template-columns: minmax(680px, 2fr) minmax(280px, 0.8fr);
    }
}

@media (max-width: 1399.98px) {
    .tr-field-metric-grid {
        max-width: 610px;
    }
}

@media (max-width: 1199.98px) {
    .transroc-sidebar {
        width: min(86vw, var(--tr-sidebar-width));
    }

    .tr-public-header .tr-public-nav,
    .tr-public-header .tr-public-actions {
        display: none;
    }

    .tr-public-menu {
        display: block;
    }

    .tr-home-hero-content {
        grid-template-columns: 1fr;
    }

    .tr-home-hero-stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .tr-home-hero-stats div + div {
        border-left: 1px solid var(--tr-border);
        border-top: 0;
    }

    .tr-public-card-grid-four,
    .tr-process-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tr-public-footer {
        grid-template-columns: 1fr;
    }

    .tr-public-footer-inner {
        gap: 30px;
        grid-template-columns: 1fr;
    }

    .tr-public-footer-links {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .tr-public-footer nav {
        justify-content: flex-start;
    }

    .transroc-content {
        padding: 88px 20px 24px;
    }

    .transroc-dashboard-page .tr-dashboard {
        padding-top: 68px;
    }

    .tr-field-metric-grid {
        max-width: 100%;
    }
}

@media (max-width: 991.98px) {
    .tr-dashboard-grid,
    .tr-lower-grid {
        grid-template-columns: 1fr;
    }

    .tr-reference-grid,
    .tr-token-grid,
    .tr-portal-grid,
    .tr-portal-grid-technical,
    .tr-admin-kpi-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tr-home-intro,
    .tr-split-section,
    .tr-public-hero-grid,
    .tr-commodity-layout,
    .tr-detail-hero-grid,
    .tr-detail-layout,
    .tr-market-data-layout,
    .tr-contact-layout,
    .tr-legal-layout,
    .tr-cookie-page-grid,
    .tr-not-found-grid,
    .tr-guidance-band {
        grid-template-columns: 1fr;
    }

    .tr-filter-panel,
    .tr-market-filter-panel {
        position: static;
    }

    .tr-detail-sidebar {
        position: static;
    }

    .tr-public-card-grid,
    .tr-faq-grid,
    .tr-catalogue-grid,
    .tr-warehouse-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .tr-advisor-card {
        grid-column: auto;
    }

    .tr-dashboard-topbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .tr-admin-dashboard-filters,
    .tr-admin-dashboard-main,
    .tr-admin-form-grid,
    .tr-admin-form-grid-dense,
    .tr-admin-guidance-grid,
    .tr-commodity-preview,
    .tr-preview-facts,
    .tr-member-dashboard-grid,
    .tr-member-commodity-grid,
    .tr-member-market-layout,
    .tr-member-detail-grid,
    .tr-member-portfolio-context,
    .tr-member-wizard-grid,
    .tr-member-action-grid {
        grid-template-columns: 1fr;
    }

    .tr-member-detail-grid > .tr-admin-table-card:nth-child(n+3) {
        grid-column: auto;
    }

    .tr-member-market-main,
    .tr-early-sale-panel {
        grid-column: auto;
    }

    .tr-inline-admin-form,
    .tr-inline-admin-form-wrap {
        grid-template-columns: 1fr;
    }

    .tr-field-metric-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .tr-page-header {
        flex-direction: column;
    }

    .tr-page-header h1 {
        font-size: 24px;
    }

    .tr-member-request-desktop,
    .tr-member-holding-desktop,
    .tr-member-warehouse-desktop {
        display: none;
    }

    .tr-member-request-mobile,
    .tr-member-holding-mobile,
    .tr-member-warehouse-mobile {
        display: grid;
        gap: 12px;
    }

    .tr-member-request-card dl {
        grid-template-columns: 1fr;
    }

    .tr-member-media-grid {
        grid-template-columns: 1fr;
    }

    .tr-public-header {
        min-height: 72px;
        padding: 12px 16px;
    }

    .tr-public-brand img {
        max-height: 56px;
        width: 88px;
    }

    .tr-home-hero {
        min-height: auto;
    }

    .tr-home-hero-content {
        padding-bottom: 38px;
        padding-top: 54px;
    }

    .tr-home-hero h1 {
        font-size: 42px;
    }

    .tr-home-hero p {
        font-size: 16px;
    }

    .tr-cookie-panel {
        align-items: stretch;
        grid-template-columns: 1fr;
    }

    .tr-cookie-panel-form {
        justify-content: flex-start;
    }

    .tr-home-hero-stats,
    .tr-public-card-grid,
    .tr-public-card-grid-four,
    .tr-portal-grid,
    .tr-portal-grid-technical,
    .tr-admin-kpi-grid,
    .tr-member-fact-grid,
    .tr-process-list,
    .tr-faq-grid,
    .tr-catalogue-grid,
    .tr-warehouse-grid,
    .tr-market-indicators,
    .tr-detail-facts,
    .tr-record-grid,
    .tr-guidance-lists,
    .tr-guidance-factor-grid {
        grid-template-columns: 1fr;
    }

    .tr-home-hero-stats div + div {
        border-left: 0;
        border-top: 1px solid var(--tr-border);
    }

    .tr-public-section {
        padding: 56px 0;
    }

    .tr-public-hero {
        padding: 34px 0;
    }

    .tr-public-hero-grid {
        gap: 20px;
    }

    .tr-public-container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .tr-public-hero .tr-section-copy h1 {
        font-size: 34px;
    }

    .tr-public-hero .tr-section-copy p {
        font-size: 15px;
        line-height: 1.58;
    }

    .tr-section-copy h2,
    .tr-section-heading-public h2,
    .tr-placeholder-page h1 {
        font-size: 30px;
    }

    .tr-process-timeline {
        gap: 14px;
    }

    .tr-process-timeline::before {
        left: 19px;
    }

    .tr-process-timeline-item {
        gap: 14px;
        grid-template-columns: 40px minmax(0, 1fr);
    }

    .tr-process-timeline-marker {
        border-width: 3px;
        font-size: 12px;
        height: 40px;
        width: 40px;
    }

    .tr-process-timeline-card,
    .tr-fee-card,
    .tr-risk-label,
    .tr-topic-accordion summary,
    .tr-topic-accordion-body,
    .tr-filter-panel,
    .tr-catalog-card-body,
    .tr-detail-card {
        padding: 16px;
    }

    .tr-fee-card h2 {
        font-size: 28px;
    }

    .tr-journey-summary {
        gap: 8px;
        padding: 16px;
    }

    .tr-journey-summary strong {
        font-size: 28px;
    }

    .tr-journey-summary p {
        font-size: 14px;
        line-height: 1.45;
    }

    .tr-catalogue-results-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .tr-filter-actions,
    .tr-public-pagination,
    .tr-detail-card-head,
    .tr-cookie-choice {
        align-items: stretch;
        flex-direction: column;
    }

    .tr-filter-actions .btn,
    .tr-public-pagination .btn,
    .tr-cookie-panel .btn {
        width: 100%;
    }

    .tr-dashboard-preview-row,
    .tr-market-panel div,
    .tr-chart-summary {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
    }

    .tr-chart-panel {
        aspect-ratio: auto;
        height: 210px;
        min-height: 0;
        width: 100%;
    }

    .tr-chart-summary span,
    .tr-card-link {
        width: 100%;
    }

    .tr-dashboard-preview-row strong,
    .tr-market-panel strong {
        text-align: left;
    }

    .tr-reference-grid,
    .tr-token-grid,
    .tr-portal-workspace,
    .tr-filter-bar {
        grid-template-columns: 1fr;
    }

    .tr-admin-dashboard-filter-actions,
    .tr-admin-section-heading {
        align-items: stretch;
        flex-direction: column;
    }

    .tr-admin-dashboard-filter-actions .btn,
    .tr-admin-section-heading .btn {
        justify-content: center;
        width: 100%;
    }

    .tr-admin-tabs {
        display: grid;
        grid-template-columns: 1fr;
    }

    .tr-admin-action-stack {
        min-width: 0;
    }

    .tr-commodity-card,
    .tr-ai-card {
        grid-template-columns: 1fr;
    }

    .tr-public-header,
    .tr-public-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .tr-dashboard-surface {
        padding: 18px 14px 24px;
    }

    .tr-field-metric-grid {
        grid-template-columns: 1fr;
    }

    .tr-portfolio-body {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .tr-portfolio-list {
        width: 100%;
    }

    .tr-market-row {
        grid-template-columns: 48px minmax(0, 1fr) 70px;
    }

    .tr-market-row .tr-sparkline {
        display: none;
    }

    .tr-dashboard-title-copy {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .tr-card-heading {
        flex-direction: column;
    }
}

@media (max-width: 767.98px) {
    .tr-public-header {
        align-items: center;
        flex-direction: row;
    }

    .tr-public-footer {
        align-items: flex-start;
        padding-left: 18px;
        padding-right: 18px;
    }

    .tr-public-footer-inner {
        padding: 32px 0 24px;
    }

    .tr-public-footer-links {
        gap: 24px 18px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tr-public-footer-bottom {
        align-items: flex-start;
        flex-direction: column-reverse;
        gap: 8px;
    }

    .tr-public-footer-bottom small,
    .tr-public-footer-bottom span {
        white-space: normal;
    }
}

@media (max-width: 575.98px) {
    .tr-public-footer-links {
        grid-template-columns: 1fr;
    }

    .tr-public-footer-brand {
        max-width: none;
    }
}

@keyframes transroc-dashboard-bg-drift {
    0% {
        background-position: center, center, 50% 50%;
    }

    50% {
        background-position: center, center, 53% 48%;
    }

    100% {
        background-position: center, center, 48% 53%;
    }
}

@keyframes transroc-dashboard-image-drift {
    0% {
        transform: scale(1.035) translate3d(0, 0, 0);
    }

    50% {
        transform: scale(1.055) translate3d(-0.8%, -0.6%, 0);
    }

    100% {
        transform: scale(1.045) translate3d(0.7%, 0.8%, 0);
    }
}

@keyframes transroc-dashboard-rise-in {
    0% {
        opacity: 0;
        transform: translateY(12px) scale(0.99);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes transroc-dashboard-dropdown-in {
    0% {
        opacity: 0;
        transform: translateY(6px) scale(0.98);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.transroc-dashboard-page .tr-card:hover {
    background: rgba(252, 250, 238, 0.98);
    border-color: rgba(216, 242, 10, 0.62);
    box-shadow: 0 28px 64px rgba(8, 45, 33, 0.25);
}

.transroc-dashboard-page .tr-field-metric-card:hover,
.transroc-dashboard-page .tr-cultivation-card:hover,
.transroc-dashboard-page .tr-portfolio-card:hover,
.transroc-dashboard-page .tr-market-card:hover,
.transroc-dashboard-page .tr-holdings-card:hover,
.transroc-dashboard-page .tr-notifications-card:hover {
    background: rgba(252, 250, 238, 0.99);
}

.transroc-dashboard-page .tr-field-metric-card:hover .tr-card-icon,
.transroc-dashboard-page .tr-summary-card:hover .tr-card-icon,
.transroc-dashboard-page .tr-card:hover .tr-crop-thumb {
    background: rgba(216, 242, 10, 0.22);
}

@media (prefers-reduced-motion: no-preference) {
    .transroc-dashboard-page .tr-dashboard-surface {
        animation: transroc-dashboard-bg-drift 38s ease-in-out infinite alternate;
        background-size: 100% 100%, 100% 100%, 110% 110%;
    }

    .transroc-dashboard-page .tr-dashboard-bg {
        animation: transroc-dashboard-image-drift 42s ease-in-out infinite alternate;
        transform-origin: center;
        will-change: transform;
    }

    .transroc-dashboard-page .tr-dashboard-topbar,
    .transroc-dashboard-page .tr-field-metric-card,
    .transroc-dashboard-page .tr-cultivation-card,
    .transroc-dashboard-page .tr-portfolio-card,
    .transroc-dashboard-page .tr-market-card,
    .transroc-dashboard-page .tr-advisor-card,
    .transroc-dashboard-page .tr-holdings-card,
    .transroc-dashboard-page .tr-notifications-card {
        animation: transroc-dashboard-rise-in 520ms cubic-bezier(0.2, 0.8, 0.2, 1) backwards;
    }

    .transroc-dashboard-page .tr-field-metric-card:nth-child(2) {
        animation-delay: 60ms;
    }

    .transroc-dashboard-page .tr-field-metric-card:nth-child(3) {
        animation-delay: 120ms;
    }

    .transroc-dashboard-page .tr-cultivation-card,
    .transroc-dashboard-page .tr-portfolio-card {
        animation-delay: 150ms;
    }

    .transroc-dashboard-page .tr-market-card,
    .transroc-dashboard-page .tr-advisor-card {
        animation-delay: 210ms;
    }

    .transroc-dashboard-page .tr-holdings-card,
    .transroc-dashboard-page .tr-notifications-card {
        animation-delay: 270ms;
    }

    .transroc-dashboard-page .tr-card,
    .transroc-dashboard-page .tr-card-icon,
    .transroc-dashboard-page .tr-crop-thumb,
    .transroc-dashboard-page .tr-back-button,
    .transroc-dashboard-page .tr-add-crop-button,
    .transroc-dashboard-page .tr-filter-pill,
    .transroc-dashboard-page .tr-inline-link,
    .transroc-dashboard-page .tr-card-heading a,
    .transroc-dashboard-page .tr-card-heading button,
    .transroc-dashboard-page .tr-assistant-bar,
    .transroc-dashboard-page .tr-assistant-bar input,
    .transroc-dashboard-page .tr-assistant-bar button,
    .transroc-dashboard-page .tr-notification-item,
    .transroc-dashboard-page .tr-holdings-table tbody tr,
    .transroc-shell .btn,
    .transroc-menu-link,
    .transroc-profile-card,
    .transroc-utility-link,
    .transroc-profile-dropdown,
    .transroc-profile-dropdown a {
        transition:
            background-color 160ms ease,
            border-color 160ms ease,
            box-shadow 220ms ease,
            color 160ms ease,
            opacity 160ms ease,
            transform 200ms ease;
    }

    .transroc-dashboard-page .tr-card:hover {
        transform: translateY(-5px) scale(1.01);
    }

    .transroc-dashboard-page .tr-field-metric-card:hover .tr-card-icon,
    .transroc-dashboard-page .tr-summary-card:hover .tr-card-icon,
    .transroc-dashboard-page .tr-card:hover .tr-crop-thumb {
        transform: scale(1.08);
    }

    .transroc-dashboard-page .tr-back-button:hover,
    .transroc-dashboard-page .tr-add-crop-button:hover,
    .transroc-dashboard-page .tr-filter-pill:hover,
    .transroc-dashboard-page .tr-card-heading a:hover,
    .transroc-dashboard-page .tr-card-heading button:hover,
    .transroc-dashboard-page .tr-inline-link:hover,
    .transroc-shell .btn:hover,
    .transroc-shell .btn:focus {
        box-shadow: 0 14px 30px rgba(8, 45, 33, 0.18);
        transform: translateY(-1px);
    }

    .transroc-dashboard-page .tr-back-button:active,
    .transroc-dashboard-page .tr-add-crop-button:active,
    .transroc-dashboard-page .tr-filter-pill:active,
    .transroc-dashboard-page .tr-card-heading a:active,
    .transroc-dashboard-page .tr-card-heading button:active,
    .transroc-dashboard-page .tr-inline-link:active,
    .transroc-dashboard-page .tr-assistant-bar button:active,
    .transroc-shell .btn:active {
        box-shadow: 0 8px 18px rgba(8, 45, 33, 0.14);
        transform: translateY(0) scale(0.99);
    }

    .transroc-dashboard-page .tr-assistant-bar:focus-within {
        border-color: rgba(216, 242, 10, 0.6);
        box-shadow: 0 18px 42px rgba(8, 45, 33, 0.2);
        transform: translateY(-1px);
    }

    .transroc-dashboard-page .tr-assistant-bar button:hover {
        transform: scale(1.06);
    }

    .transroc-dashboard-page .tr-holdings-table tbody tr:hover {
        background: rgba(255, 255, 248, 0.38);
        transform: translateX(3px);
    }

    .transroc-dashboard-page .tr-notification-item:hover,
    .transroc-profile-dropdown a:hover,
    .transroc-menu-link:hover,
    .transroc-utility-link:hover,
    .transroc-profile-card:hover {
        transform: translateX(3px);
    }

    .transroc-profile-card[aria-expanded="true"] {
        transform: translateX(2px);
    }

    .transroc-profile-dropdown:not([hidden]) {
        animation: transroc-dashboard-dropdown-in 180ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
        transform-origin: left center;
    }

    .transroc-profile-dropdown.is-left:not([hidden]) {
        transform-origin: right center;
    }
}

.transroc-shell {
    --tr-page-title-size: 22px;
    --tr-page-title-weight: 560;
    --tr-section-title-size: 15px;
    --tr-section-title-weight: 540;
    --tr-page-copy-size: 13px;
    --tr-table-body-size: 13px;
    --tr-table-caption-size: 13px;
    --tr-table-head-size: 12px;
    --tr-table-action-size: 16px;
    --tr-table-copy-weight: 430;
    --tr-table-head-weight: 600;
    --tr-table-strong-weight: 560;
}

.transroc-shell:not(.transroc-dashboard-page) .transroc-content > .transroc-content-container > .nk-content {
    padding: 0 !important;
}

.transroc-shell:not(.transroc-dashboard-page) .nk-content-inner,
.transroc-shell:not(.transroc-dashboard-page) .nk-content-inner.mt-5,
.transroc-shell:not(.transroc-dashboard-page) .nk-content-body.mt-4,
.transroc-shell:not(.transroc-dashboard-page) .nk-block-head.mt-5 {
    margin-top: 0 !important;
}

.transroc-shell:not(.transroc-dashboard-page) .nk-block-head {
    margin-bottom: 18px;
}

.transroc-shell:not(.transroc-dashboard-page) .nk-block-title.page-title,
.transroc-shell:not(.transroc-dashboard-page) .tr-page-header h1 {
    color: var(--tr-green-950);
    font-family: var(--transroc-font-family);
    font-size: var(--tr-page-title-size);
    font-weight: var(--tr-page-title-weight);
    letter-spacing: 0;
    line-height: 1.2;
}

.transroc-shell:not(.transroc-dashboard-page) .tr-admin-section-heading h2,
.transroc-shell:not(.transroc-dashboard-page) .tr-admin-panel h2,
.transroc-shell:not(.transroc-dashboard-page) .tr-admin-export-card h2 {
    color: var(--tr-green-950);
    font-family: var(--transroc-font-family);
    font-size: var(--tr-section-title-size);
    font-weight: var(--tr-section-title-weight);
    letter-spacing: 0;
    line-height: 1.25;
}

body[data-shell-role="member"] .transroc-shell:not(.transroc-dashboard-page) .tr-page-header {
    background: var(--tr-card-bg);
    border: 1px solid var(--tr-card-border);
    border-radius: 16px;
    box-shadow: 0 16px 36px rgba(8, 45, 33, 0.24);
    margin-bottom: 18px;
    padding: 16px 18px;
}

body[data-shell-role="member"] .transroc-shell:not(.transroc-dashboard-page) .tr-page-header h1 {
    color: var(--tr-card-text);
    text-shadow: none;
}

body[data-shell-role="member"] .transroc-shell:not(.transroc-dashboard-page) .tr-page-header p,
body[data-shell-role="member"] .transroc-shell:not(.transroc-dashboard-page) .tr-breadcrumbs,
body[data-shell-role="member"] .transroc-shell:not(.transroc-dashboard-page) .tr-breadcrumbs a,
body[data-shell-role="member"] .transroc-shell:not(.transroc-dashboard-page) .tr-breadcrumbs span,
body[data-shell-role="member"] .transroc-shell:not(.transroc-dashboard-page) .tr-breadcrumbs em {
    color: var(--tr-card-muted) !important;
}

@supports ((backdrop-filter: blur(10px)) or (-webkit-backdrop-filter: blur(10px))) {
    body[data-shell-role="member"] .transroc-shell:not(.transroc-dashboard-page) .tr-page-header {
        -webkit-backdrop-filter: blur(2px);
        backdrop-filter: blur(2px);
    }
}

.transroc-shell:not(.transroc-dashboard-page) :where(
    .tr-page-header,
    .tr-admin-panel,
    .tr-admin-table-card,
    .tr-admin-export-card,
    .tr-profile-summary-card,
    .tr-ui-card,
    .tr-table-card,
    .transroc-content .card,
    .tr-card:not(.tr-field-metric-card)
) {
    background: var(--tr-card-bg);
    border-color: var(--tr-card-border);
    box-shadow: 0 18px 42px rgba(8, 45, 33, 0.24);
    color: var(--tr-card-text);
}

.transroc-shell:not(.transroc-dashboard-page) :where(
    .tr-page-header,
    .tr-admin-panel,
    .tr-admin-table-card,
    .tr-admin-export-card,
    .tr-profile-summary-card,
    .tr-ui-card,
    .tr-table-card,
    .transroc-content .card,
    .tr-card:not(.tr-field-metric-card)
) :where(h1, h2, h3, h4, h5, h6, strong, b, dt, legend, caption) {
    color: var(--tr-card-text) !important;
}

.transroc-shell:not(.transroc-dashboard-page) :where(
    .tr-page-header,
    .tr-admin-panel,
    .tr-admin-table-card,
    .tr-admin-export-card,
    .tr-profile-summary-card,
    .tr-ui-card,
    .tr-table-card,
    .transroc-content .card,
    .tr-card:not(.tr-field-metric-card)
) :where(p, small, dd, li, label, th, td, span:not(.badge):not(.tr-support-badge), a:not(.btn)) {
    color: var(--tr-card-muted) !important;
}

.transroc-shell:not(.transroc-dashboard-page) :where(
    .tr-admin-panel,
    .tr-admin-table-card,
    .tr-admin-export-card,
    .tr-profile-summary-card,
    .tr-ui-card,
    .tr-table-card,
    .transroc-content .card,
    .tr-card:not(.tr-field-metric-card)
) :where(input, select, textarea) {
    background: rgba(247, 252, 244, 0.94);
    border-color: rgba(232, 242, 218, 0.34);
    color: var(--tr-green-950);
}

.transroc-shell:not(.transroc-dashboard-page) :where(
    .tr-admin-panel,
    .tr-admin-table-card,
    .tr-admin-export-card,
    .tr-profile-summary-card,
    .tr-ui-card,
    .tr-table-card,
    .tr-card:not(.tr-field-metric-card)
) :where(.table thead th, .tr-admin-queue-table th, .tr-member-account-table th) {
    background: rgba(46, 61, 32, 0.66);
    border-color: rgba(232, 242, 218, 0.14);
    color: var(--tr-card-text) !important;
}

.transroc-shell:not(.transroc-dashboard-page) :where(
    .tr-admin-panel,
    .tr-admin-table-card,
    .tr-admin-export-card,
    .tr-profile-summary-card,
    .tr-ui-card,
    .tr-table-card,
    .tr-card:not(.tr-field-metric-card)
) :where(.table td, .tr-admin-queue-table td, .tr-member-account-table td) {
    border-color: rgba(232, 242, 218, 0.12);
}

.transroc-shell:not(.transroc-dashboard-page) .nk-block-des,
.transroc-shell:not(.transroc-dashboard-page) .nk-block-des p,
.transroc-shell:not(.transroc-dashboard-page) .text-soft,
.transroc-shell:not(.transroc-dashboard-page) .tr-section-heading p,
.transroc-shell:not(.transroc-dashboard-page) .tr-reference-note {
    color: var(--tr-muted) !important;
    font-family: var(--transroc-font-family);
    font-size: var(--tr-page-copy-size);
    font-weight: 400;
    line-height: 1.5;
}

.transroc-shell:not(.transroc-dashboard-page) .tr-page-header p {
    color: var(--tr-card-muted) !important;
    font-family: var(--transroc-font-family);
    font-size: var(--tr-page-copy-size);
    font-weight: 400;
    line-height: 1.5;
}

.transroc-shell:not(.transroc-dashboard-page) .btn {
    font-size: 13px;
    font-weight: 560;
    letter-spacing: 0;
}

.transroc-shell .dataTables_wrapper,
.transroc-shell .dataTables_wrapper label,
.transroc-shell .dataTables_info,
.transroc-shell .dataTables_paginate,
.transroc-shell .table {
    color: var(--tr-muted);
    font-family: var(--transroc-font-family);
    font-size: var(--tr-table-body-size);
    font-weight: var(--tr-table-copy-weight);
    line-height: 1.45;
}

.transroc-shell .dataTables_wrapper .row {
    align-items: center;
    row-gap: 12px;
}

.transroc-shell .dataTables_length label,
.transroc-shell .dataTables_filter label {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
}

.transroc-shell .dataTables_filter label {
    justify-content: flex-end;
}

.transroc-shell .dataTables_length select,
.transroc-shell .dataTables_filter input {
    background: var(--tr-white);
    border: 1px solid var(--tr-border);
    border-radius: 8px;
    color: var(--tr-green-950);
    font-family: var(--transroc-font-family);
    font-size: var(--tr-table-body-size);
    font-weight: 500;
    min-height: 36px;
}

.transroc-shell .dataTables_length select {
    min-width: 72px;
}

.transroc-shell .dataTables_filter input {
    min-width: min(320px, 100%);
}

.transroc-shell .table caption,
.transroc-shell .tr-admin-queue-table caption,
.transroc-shell .tr-member-account-table caption {
    font-size: var(--tr-table-caption-size);
    font-weight: 600;
    line-height: 1.35;
}

.transroc-shell .table thead th,
.transroc-shell .tr-admin-queue-table th,
.transroc-shell .tr-member-account-table th {
    font-family: var(--transroc-font-family);
    font-size: var(--tr-table-head-size);
    font-weight: var(--tr-table-head-weight);
    letter-spacing: 0;
    line-height: 1.3;
    padding: 12px 16px;
    text-transform: uppercase;
}

.transroc-shell .table tbody td,
.transroc-shell .tr-admin-queue-table td,
.transroc-shell .tr-member-account-table td {
    font-family: var(--transroc-font-family);
    font-size: var(--tr-table-body-size) !important;
    font-weight: var(--tr-table-copy-weight) !important;
    line-height: 1.45;
    padding: 14px 16px;
    vertical-align: middle;
}

.transroc-shell .table tbody td b,
.transroc-shell .table tbody td strong,
.transroc-shell .tr-admin-queue-table td strong,
.transroc-shell .tr-member-account-table td strong {
    color: var(--tr-green-950);
    font-size: inherit;
    font-weight: var(--tr-table-strong-weight) !important;
    line-height: inherit;
}

.transroc-shell .table tbody td span:not(.badge),
.transroc-shell .table tbody td a:not(.btn),
.transroc-shell .tr-admin-queue-table td span,
.transroc-shell .tr-member-account-table td span {
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
}

.transroc-shell .table tbody td small,
.transroc-shell .table tbody td .small {
    color: var(--tr-muted) !important;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.45;
}

.transroc-shell .table tbody td .badge {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.2;
}

.transroc-shell .table tbody td .icon,
.transroc-shell .table tbody td em.icon,
.transroc-shell .table tbody td i {
    font-size: var(--tr-table-action-size);
    line-height: 1;
    vertical-align: -0.08em;
}

.transroc-shell .table tbody td .text-center .icon,
.transroc-shell .table tbody td .text-center em.icon {
    font-size: 18px;
}

.transroc-shell .table tbody tr {
    transition: background-color 160ms ease, transform 180ms ease;
}

.transroc-shell .table:not(.tr-member-account-table) tbody tr:hover {
    background: rgba(242, 250, 245, 0.72);
}

.transroc-shell .paginate_button,
.transroc-shell .page-link {
    font-family: var(--transroc-font-family);
    font-size: 13px;
    font-weight: 560;
}

.transroc-shell:not(.transroc-dashboard-page) .tr-breadcrumbs,
.transroc-shell:not(.transroc-dashboard-page) .tr-breadcrumbs a {
    font-size: 12px;
    font-weight: 560;
}

.transroc-shell:not(.transroc-dashboard-page) .tr-admin-section-heading > div > span,
.transroc-shell:not(.transroc-dashboard-page) .tr-admin-panel > span,
.transroc-shell:not(.transroc-dashboard-page) .tr-admin-export-card > span,
.transroc-shell:not(.transroc-dashboard-page) .tr-profile-field-list dt,
.transroc-shell:not(.transroc-dashboard-page) .tr-member-fact-grid dt,
.transroc-shell:not(.transroc-dashboard-page) .tr-member-guidance-card dt,
.transroc-shell:not(.transroc-dashboard-page) .tr-member-status-list li > span {
    font-size: 10.5px;
    font-weight: 560;
    letter-spacing: 0;
    line-height: 1.25;
}

.transroc-shell:not(.transroc-dashboard-page) .tr-profile-field-list dd,
.transroc-shell:not(.transroc-dashboard-page) .tr-member-fact-grid dd,
.transroc-shell:not(.transroc-dashboard-page) .tr-member-status-list strong,
.transroc-shell:not(.transroc-dashboard-page) .tr-member-notification-list strong,
.transroc-shell:not(.transroc-dashboard-page) .tr-member-status-callout strong {
    font-size: 14px;
    font-weight: 560;
    line-height: 1.35;
}

.transroc-shell:not(.transroc-dashboard-page) .tr-member-fact-grid div,
.transroc-shell:not(.transroc-dashboard-page) .tr-profile-field-list div {
    gap: 3px;
    padding: 10px 11px;
}

.transroc-shell:not(.transroc-dashboard-page) .tr-admin-panel p,
.transroc-shell:not(.transroc-dashboard-page) .tr-member-muted,
.transroc-shell:not(.transroc-dashboard-page) .tr-member-guidance-card dd,
.transroc-shell:not(.transroc-dashboard-page) .tr-member-status-list small,
.transroc-shell:not(.transroc-dashboard-page) .tr-member-notification-list span,
.transroc-shell:not(.transroc-dashboard-page) .tr-member-status-callout span,
.transroc-shell:not(.transroc-dashboard-page) .tr-profile-summary-card p,
.transroc-shell:not(.transroc-dashboard-page) .tr-profile-empty {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.45;
}

.transroc-shell:not(.transroc-dashboard-page) .tr-profile-summary-card h2,
.transroc-shell:not(.transroc-dashboard-page) .tr-member-guidance-card h3 {
    font-size: 16px;
    font-weight: 560;
    line-height: 1.25;
}

.transroc-shell:not(.transroc-dashboard-page) .tr-admin-dashboard-filters input,
.transroc-shell:not(.transroc-dashboard-page) .tr-admin-dashboard-filters select,
.transroc-shell:not(.transroc-dashboard-page) .tr-admin-form-grid input,
.transroc-shell:not(.transroc-dashboard-page) .tr-admin-form-grid select,
.transroc-shell:not(.transroc-dashboard-page) .tr-admin-form-grid textarea,
.transroc-shell:not(.transroc-dashboard-page) .tr-profile-edit-form .tr-admin-form-grid input,
.transroc-shell:not(.transroc-dashboard-page) .tr-profile-edit-form .tr-admin-form-grid select,
.transroc-shell:not(.transroc-dashboard-page) .tr-profile-edit-form .tr-admin-form-grid textarea {
    font-size: 13px;
    font-weight: 450;
    line-height: 1.35;
    min-height: 36px;
}

.transroc-profile-page {
    --tr-profile-heading-size: 18px;
    --tr-profile-copy-size: var(--tr-page-copy-size, 14px);
    --tr-profile-label-size: 11px;
}

.tr-profile-layout {
    align-items: start;
    display: grid;
    gap: 18px;
    grid-template-columns: minmax(240px, 330px) minmax(0, 1fr);
}

.tr-profile-summary-card {
    align-items: center;
    background: var(--tr-white);
    border: 1px solid var(--tr-border);
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(8, 45, 33, 0.06);
    display: grid;
    gap: 14px;
    justify-items: center;
    min-width: 0;
    padding: 22px 18px;
    text-align: center;
}

.tr-profile-avatar {
    align-items: center;
    background: var(--tr-green-700);
    border-radius: 999px;
    color: var(--tr-white);
    display: inline-flex;
    font-size: 34px;
    font-weight: 800;
    height: 104px;
    justify-content: center;
    line-height: 1;
    width: 104px;
}

.tr-profile-avatar-image {
    display: block;
    object-fit: cover;
}

.tr-profile-summary-card h2 {
    color: var(--tr-green-950);
    font-size: 20px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 4px;
    overflow-wrap: anywhere;
}

.tr-profile-summary-card p {
    color: var(--tr-muted);
    font-size: var(--tr-profile-copy-size);
    font-weight: 650;
    margin: 0;
}

.tr-profile-summary-card .tr-admin-priority {
    background: #14513A;
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 10px 22px rgba(8, 45, 33, 0.2);
    color: #ffffff !important;
}

.tr-profile-section-stack,
.tr-profile-section-grid,
.tr-profile-edit-form,
.tr-profile-edit-grid {
    display: grid;
    gap: 18px;
    min-width: 0;
}

.tr-profile-section-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tr-profile-field-list {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0;
}

.tr-profile-field-list div {
    background: var(--tr-green-50);
    border: 1px solid var(--tr-border);
    border-radius: 10px;
    display: grid;
    gap: 4px;
    min-width: 0;
    padding: 11px 12px;
}

.tr-profile-field-list dt {
    color: var(--tr-muted);
    font-size: var(--tr-profile-label-size);
    font-weight: 850;
    line-height: 1.2;
    text-transform: uppercase;
}

.tr-profile-field-list dd {
    color: var(--tr-green-950);
    font-size: var(--tr-profile-copy-size);
    font-weight: 700;
    line-height: 1.35;
    margin: 0;
    overflow-wrap: anywhere;
}

.tr-profile-empty {
    color: var(--tr-muted);
    font-size: var(--tr-profile-copy-size);
    font-weight: 650;
    line-height: 1.5;
    margin: 0;
}

.tr-profile-document-table {
    min-width: 680px;
}

.tr-profile-password-card {
    margin-top: 18px;
}

.tr-profile-edit-form.tr-onboarding-panel {
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
}

.tr-profile-edit-form .tr-admin-form-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
}

.tr-profile-edit-form .tr-admin-form-grid label {
    min-width: 0;
}

.tr-profile-edit-form .tr-admin-form-grid input,
.tr-profile-edit-form .tr-admin-form-grid select,
.tr-profile-edit-form .tr-admin-form-grid textarea {
    font-size: 13px;
    font-weight: 720;
    min-height: 42px;
}

.tr-profile-edit-form .tr-admin-form-grid input[type="file"] {
    height: auto;
    min-height: 42px;
}

.tr-profile-edit-form .select2-container--default .select2-selection--single {
    background: #ffffff !important;
    border: 1px solid #bccbc0 !important;
    border-radius: 8px;
    min-height: 42px;
}

.tr-profile-edit-form .select2-container--default .select2-selection--single .select2-selection__rendered {
    align-items: center;
    color: var(--tr-green-950) !important;
    display: flex;
    font-size: 13px;
    font-weight: 760;
    min-height: 42px;
    padding-left: 14px;
    padding-right: 90px;
}

.tr-profile-edit-form .select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #52665B !important;
}

.tr-profile-edit-form .select2-container--default .select2-selection--single .select2-selection__clear {
    color: var(--tr-green-800) !important;
    font-weight: 900;
    right: 52px;
}

.tr-profile-edit-form .select2-container--default .select2-selection--single .select2-selection__arrow {
    background: var(--tr-green-700);
    box-shadow: 0 7px 16px rgba(8, 45, 33, 0.18);
    height: 28px;
    right: 10px;
    width: 28px;
}

.tr-profile-edit-form .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #ffffff transparent transparent transparent !important;
}

.tr-profile-edit-form .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent #ffffff transparent !important;
}

.tr-profile-edit-form .select2-dropdown.tr-onboarding-select-dropdown,
.tr-profile-edit-form .tr-onboarding-select-dropdown {
    background: #ffffff !important;
    border-color: #bccbc0 !important;
    color: var(--tr-green-950) !important;
}

.tr-profile-edit-form .select2-dropdown.tr-onboarding-select-dropdown .select2-results__option,
.tr-profile-edit-form .tr-onboarding-select-dropdown .select2-results__option {
    color: var(--tr-green-950) !important;
}

.tr-profile-photo-field {
    display: grid !important;
    gap: 10px;
}

.tr-current-profile-photo {
    align-items: center;
    background: linear-gradient(135deg, #082D21, #14513A);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 10px;
    box-shadow: 0 12px 26px rgba(8, 45, 33, 0.2);
    color: #ffffff !important;
    display: flex !important;
    gap: 12px;
    padding: 10px;
}

.tr-current-profile-photo img {
    background: rgba(255, 255, 255, 0.08);
    border: 3px solid rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.24);
    display: block;
    height: 82px;
    object-fit: cover;
    width: 82px;
}

.tr-current-profile-photo > span {
    display: grid;
    gap: 3px;
    min-width: 0;
}

.tr-current-profile-photo strong {
    color: #ffffff !important;
    font-size: 13px;
    font-weight: 850;
    line-height: 1.2;
}

.transroc-shell:not(.transroc-dashboard-page) .tr-profile-edit-form .tr-current-profile-photo :where(span, strong, small) {
    color: #ffffff !important;
}

.transroc-shell:not(.transroc-dashboard-page) .tr-profile-edit-form .tr-current-profile-photo small {
    color: rgba(255, 255, 255, 0.78) !important;
}

.tr-profile-photo-warning {
    background: rgba(251, 235, 203, 0.96);
    border: 1px solid rgba(230, 164, 59, 0.35);
    border-radius: 10px;
    color: #6B3A00 !important;
    display: block !important;
    font-size: 12px;
    font-weight: 760;
    line-height: 1.45;
    padding: 10px 12px;
}

.tr-profile-edit-form .tr-admin-form-grid small {
    color: var(--tr-muted);
    display: block;
    font-size: 12px;
    font-weight: 650;
    line-height: 1.35;
}

.tr-profile-edit-form .tr-admin-form-grid small strong {
    color: var(--tr-green-950);
    font-weight: 820;
}

.tr-profile-form-actions {
    align-items: center;
    display: flex;
    gap: 12px;
    justify-content: space-between;
}

.tr-membership-card-panel {
    background: var(--tr-white);
    border: 1px solid var(--tr-border);
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(8, 45, 33, 0.06);
    display: grid;
    gap: 14px;
    min-width: 0;
    padding: 18px;
}

.tr-membership-card-stage {
    min-width: 0;
    overflow-x: auto;
    padding-bottom: 4px;
}

.tr-membership-card-template {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(242, 250, 245, 0.94) 52%, rgba(251, 235, 203, 0.74)),
        linear-gradient(135deg, var(--tr-green-950), var(--tr-green-700));
    border: 1px solid rgba(8, 45, 33, 0.14);
    border-radius: 18px;
    box-shadow: 0 20px 44px rgba(8, 45, 33, 0.16);
    color: var(--tr-green-950);
    display: grid;
    gap: 16px;
    grid-template-rows: auto 1fr auto;
    height: 352px;
    overflow: hidden;
    padding: 22px 24px;
    position: relative;
    width: 620px;
}

.tr-membership-card-template::before,
.tr-membership-card-template::after {
    content: "";
    pointer-events: none;
    position: absolute;
}

.tr-membership-card-template::before {
    background: rgba(28, 106, 73, 0.1);
    height: 220px;
    right: -88px;
    top: -74px;
    transform: rotate(22deg);
    width: 250px;
}

.tr-membership-card-template::after {
    background: var(--tr-gold-500);
    bottom: 0;
    height: 8px;
    left: 0;
    right: 0;
}

.tr-membership-card-template > * {
    position: relative;
    z-index: 1;
}

.tr-membership-card-top,
.tr-membership-card-body,
.tr-membership-card-footer {
    min-width: 0;
}

.tr-membership-card-top {
    align-items: flex-start;
    display: flex;
    gap: 16px;
    justify-content: space-between;
}

.tr-membership-card-brand {
    align-items: center;
    display: flex;
    gap: 10px;
    min-width: 0;
}

.tr-membership-card-brand-logo {
    background: linear-gradient(145deg, #082D21, #14513A);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 10px;
    box-shadow: 0 10px 24px rgba(8, 45, 33, 0.18);
    display: block;
    flex: 0 0 auto;
    height: 50px;
    object-fit: contain;
    padding: 6px;
    width: 58px;
}

.tr-membership-card-brand > div {
    min-width: 0;
}

.tr-membership-card-brand span,
.tr-membership-card-copy > span {
    color: rgba(23, 33, 27, 0.66);
    display: block;
    font-size: 11px;
    font-weight: 900;
    line-height: 1.2;
    text-transform: uppercase;
}

.tr-membership-card-brand strong {
    color: var(--tr-green-950);
    display: block;
    font-size: 19px;
    font-weight: 950;
    line-height: 1.15;
    margin-top: 4px;
    overflow-wrap: anywhere;
}

.tr-membership-card-state {
    background: rgba(102, 115, 107, 0.12);
    border: 1px solid rgba(102, 115, 107, 0.16);
    border-radius: 999px;
    color: var(--tr-muted) !important;
    display: block;
    flex: 0 0 auto;
    font-size: 11px;
    font-weight: 900;
    line-height: 1.2;
    max-width: 170px;
    padding: 7px 10px;
    text-align: center;
    text-transform: uppercase;
}

.tr-membership-card-state.is-ready {
    background: var(--tr-green-100);
    border-color: rgba(21, 128, 61, 0.18);
    color: var(--tr-green-900) !important;
}

.tr-membership-card-state.is-submitted {
    background: var(--tr-gold-100);
    border-color: rgba(230, 164, 59, 0.28);
    color: #6B3A00 !important;
}

.tr-membership-card-body {
    align-items: center;
    display: grid;
    gap: 16px;
    grid-template-columns: 108px minmax(0, 1fr) 96px;
}

.tr-membership-card-photo {
    align-items: center;
    background: var(--tr-green-50);
    border: 4px solid #ffffff;
    border-radius: 16px;
    box-shadow: 0 14px 28px rgba(8, 45, 33, 0.14);
    color: var(--tr-green-700);
    display: flex;
    height: 132px;
    justify-content: center;
    overflow: hidden;
    width: 104px;
}

.tr-membership-card-photo.is-empty {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(236, 247, 241, 0.9));
}

.tr-membership-card-photo img {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.tr-membership-card-photo span {
    font-size: 42px;
    font-weight: 950;
    line-height: 1;
}

.tr-membership-card-copy {
    min-width: 0;
}

.tr-membership-card-copy h3 {
    color: var(--tr-green-950);
    font-size: 24px;
    font-weight: 950;
    line-height: 1.08;
    margin: 5px 0 12px;
    max-width: 100%;
    overflow-wrap: anywhere;
}

.tr-membership-card-copy dl {
    display: grid;
    gap: 9px 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0;
}

.tr-membership-card-copy div {
    min-width: 0;
}

.tr-membership-card-copy dt {
    color: rgba(23, 33, 27, 0.56);
    font-size: 10px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 3px;
    text-transform: uppercase;
}

.tr-membership-card-copy dd {
    color: var(--tr-green-950);
    font-size: 13px;
    font-weight: 850;
    line-height: 1.2;
    margin: 0;
    overflow-wrap: anywhere;
}

.tr-membership-card-qr {
    align-items: center;
    align-self: center;
    display: grid;
    gap: 6px;
    justify-items: center;
    min-width: 0;
}

.tr-membership-card-qr img {
    background: #ffffff;
    border: 1px solid rgba(8, 45, 33, 0.14);
    border-radius: 12px;
    box-shadow: 0 12px 24px rgba(8, 45, 33, 0.12);
    display: block;
    height: 86px;
    object-fit: contain;
    padding: 6px;
    width: 86px;
}

.tr-membership-card-qr span {
    color: rgba(23, 33, 27, 0.62);
    display: block;
    font-size: 9.5px;
    font-weight: 900;
    line-height: 1.15;
    text-align: center;
    text-transform: uppercase;
}

.tr-membership-card-footer {
    align-items: end;
    border-top: 1px solid rgba(8, 45, 33, 0.12);
    display: flex;
    gap: 14px;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 12px;
}

.tr-membership-card-footer span {
    color: rgba(23, 33, 27, 0.64);
    font-size: 12px;
    font-weight: 800;
}

.tr-membership-card-footer strong {
    color: var(--tr-green-950);
    font-size: 12px;
    font-weight: 900;
    max-width: 58%;
    overflow-wrap: anywhere;
    text-align: right;
}

.tr-membership-card-help.is-error {
    color: var(--tr-danger) !important;
    font-weight: 760 !important;
}

.tr-membership-card-help.is-success {
    color: var(--tr-success) !important;
    font-weight: 760 !important;
}

.tr-membership-card-help.is-loading {
    color: var(--tr-green-700) !important;
    font-weight: 760 !important;
}

@media (max-width: 1199px) {
    .tr-profile-layout,
    .tr-profile-section-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 680px) {
    .tr-member-verify-card {
        padding: 24px;
    }

    .tr-member-verify-card h1 {
        font-size: 28px;
    }

    .tr-member-verify-details {
        grid-template-columns: 1fr;
    }

    .tr-profile-field-list {
        grid-template-columns: 1fr;
    }

    .tr-profile-form-actions {
        align-items: stretch;
        flex-direction: column-reverse;
    }

    .tr-profile-form-actions .btn {
        justify-content: center;
        width: 100%;
    }

    .tr-membership-card-panel .tr-admin-section-heading {
        align-items: stretch;
        display: grid;
    }
}

@media (min-width: 768px) {
    .transroc-shell:not(.transroc-dashboard-page) .nk-block-tools-toggle > .toggle-expand {
        display: none !important;
    }

    .transroc-shell:not(.transroc-dashboard-page) .nk-block-tools-toggle > .toggle-expand-content {
        display: block !important;
        opacity: 1 !important;
        position: static !important;
        visibility: visible !important;
    }
}

@media (min-width: 1200px) {
    .transroc-shell:not(.transroc-dashboard-page) .transroc-content {
        padding: 22px 28px 28px;
    }
}

.tr-support-layout,
.tr-support-admin-layout,
.tr-ticket-layout,
.tr-support-admin-tables,
.tr-support-secondary-grid {
    align-items: start;
    display: grid;
    gap: 18px;
}

.tr-support-layout {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.35fr);
}

.tr-support-admin-layout {
    grid-template-columns: minmax(300px, 0.36fr) minmax(0, 1fr);
}

.tr-support-member-layout,
.tr-support-ops-layout {
    grid-template-columns: minmax(0, 1fr);
}

.tr-ticket-layout {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.34fr);
}

.tr-ticket-side,
.tr-support-secondary-grid {
    display: grid;
    gap: 18px;
}

.tr-support-admin-tables,
.tr-support-secondary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 18px;
}

.tr-support-admin-kpis {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 18px;
}

.tr-support-admin-kpis article {
    background: var(--tr-white);
    border: 1px solid var(--tr-border);
    border-radius: 10px;
    box-shadow: 0 12px 28px rgba(8, 45, 33, 0.06);
    padding: 14px 16px;
}

.tr-support-admin-kpis span,
.tr-support-form label span,
.tr-support-filter label span,
.tr-support-inline-details summary span,
.tr-support-secondary summary span {
    color: var(--tr-muted);
    font-size: 10.5px;
    font-weight: 560;
    line-height: 1.3;
}

.tr-support-admin-kpis strong {
    color: var(--tr-green-950);
    display: block;
    font-size: 20px;
    font-weight: 560;
    margin-top: 2px;
}

.tr-support-form,
.tr-support-filter,
.tr-support-mini-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tr-support-filter {
    align-items: end;
    grid-template-columns: repeat(4, minmax(120px, 1fr)) auto;
    margin-bottom: 14px;
}

.tr-support-form label,
.tr-support-filter label {
    display: grid;
    gap: 6px;
}

.tr-support-form input,
.tr-support-form select,
.tr-support-form textarea,
.tr-support-filter input,
.tr-support-filter select {
    background: var(--tr-green-50);
    border: 1px solid var(--tr-border);
    border-radius: 10px;
    color: var(--tr-green-950);
    font-size: 13px;
    font-weight: 450;
    line-height: 1.35;
    min-height: 36px;
    padding: 8px 10px;
    width: 100%;
}

.tr-support-form input::placeholder,
.tr-support-form textarea::placeholder,
.tr-support-filter input::placeholder {
    color: rgba(102, 115, 107, 0.78);
    font-weight: 450;
}

.tr-support-form input[type="file"]::file-selector-button,
.tr-support-filter input[type="file"]::file-selector-button {
    font-size: 13px;
    font-weight: 560;
}

.tr-support-form textarea,
.tr-support-filter textarea {
    line-height: 1.45;
}

.tr-support-wide,
.tr-support-actions,
.tr-ticket-reply-form {
    grid-column: 1 / -1;
}

.tr-support-actions {
    align-items: center;
    display: flex;
    gap: 10px;
}

.tr-support-heading-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.tr-support-heading-actions > span {
    color: var(--tr-muted);
    font-size: 12px;
    font-weight: 650;
    line-height: 1.25;
    text-transform: uppercase;
}

.tr-support-context {
    align-items: center;
    background: #EEF6FF;
    border: 1px solid #BFDBFE;
    border-radius: 999px;
    color: #1D4ED8;
    display: inline-flex;
    font-size: 13px;
    font-weight: 560;
    gap: 8px;
    margin: 0 0 14px;
    padding: 8px 12px;
}

body.tr-support-modal-open {
    overflow: hidden;
}

.tr-support-modal[hidden] {
    display: none !important;
}

.tr-support-modal {
    align-items: center;
    display: grid;
    inset: 0;
    justify-items: center;
    padding: 24px;
    position: fixed;
    z-index: 1080;
}

.tr-support-modal-backdrop {
    background: rgba(5, 22, 16, 0.52);
    backdrop-filter: blur(4px);
    inset: 0;
    position: absolute;
}

.tr-support-modal-panel {
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    position: relative;
    width: min(860px, calc(100vw - 32px));
    z-index: 1;
}

.tr-support-modal-header {
    align-items: start;
    display: flex;
    gap: 14px;
    justify-content: space-between;
    margin-bottom: 14px;
}

.tr-support-modal-header span {
    color: var(--tr-muted);
    display: block;
    font-size: 10.5px;
    font-weight: 650;
    line-height: 1.25;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.tr-support-modal-header h2 {
    color: var(--tr-green-950);
    font-size: 20px;
    font-weight: 950;
    line-height: 1.2;
    margin: 0;
}

.tr-support-modal-close {
    align-items: center;
    background: var(--tr-green-50);
    border: 1px solid var(--tr-border);
    border-radius: 8px;
    color: var(--tr-green-950);
    cursor: pointer;
    display: inline-flex;
    flex: 0 0 auto;
    font-size: 18px;
    height: 38px;
    justify-content: center;
    width: 38px;
}

.tr-support-modal-close:hover,
.tr-support-modal-close:focus {
    background: var(--tr-green-100);
    color: var(--tr-green-800);
}

.tr-support-update-list {
    display: grid;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.tr-support-update-list li,
.tr-support-empty {
    background: var(--tr-green-50);
    border: 1px solid var(--tr-border);
    border-radius: 10px;
    color: var(--tr-muted);
    font-size: 13px;
    line-height: 1.45;
    padding: 11px 12px;
}

.tr-support-update-list li.is-unread {
    background: var(--tr-gold-100);
    border-color: rgba(230, 164, 59, 0.45);
}

.tr-support-update-list strong,
.tr-support-ticket-main strong {
    color: var(--tr-green-950);
    display: block;
    font-size: 13px;
    font-weight: 560;
    line-height: 1.4;
}

.tr-support-update-list span,
.tr-support-ticket-main small,
.tr-support-ticket-date {
    color: var(--tr-muted);
    font-size: 12px;
    font-weight: 450;
    line-height: 1.35;
}

.tr-support-ticket-list {
    display: grid;
    gap: 10px;
}

.tr-support-tabs {
    align-items: center;
    border-bottom: 1px solid var(--tr-border);
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 16px;
}

.tr-support-tab {
    align-items: center;
    border: 1px solid transparent;
    border-radius: 8px 8px 0 0;
    color: var(--tr-muted);
    display: inline-flex;
    font-size: 13px;
    font-weight: 560;
    gap: 8px;
    margin-bottom: -1px;
    min-height: 38px;
    padding: 9px 13px;
    text-decoration: none;
}

.tr-support-tab[type="button"] {
    background: transparent;
    cursor: pointer;
    font-family: inherit;
}

.tr-support-tab:hover,
.tr-support-tab:focus {
    color: var(--tr-green-800);
    text-decoration: none;
}

.tr-support-tab.is-active {
    background: var(--tr-white);
    border-color: var(--tr-border);
    border-bottom-color: var(--tr-white);
    color: var(--tr-green-950);
}

.tr-ticket-tab-panel {
    display: grid;
    gap: 18px;
}

.tr-ticket-tab-panel[hidden] {
    display: none !important;
}

.tr-ticket-tabs-shell {
    display: grid;
    gap: 0;
}

.tr-support-ticket-row {
    align-items: center;
    background: var(--tr-white);
    border: 1px solid var(--tr-border);
    border-radius: 10px;
    color: inherit;
    display: grid;
    gap: 12px;
    grid-template-columns: minmax(0, 1fr) auto minmax(100px, auto);
    padding: 13px 14px;
    text-decoration: none;
}

.tr-support-ticket-row:hover,
.tr-support-ticket-row:focus {
    border-color: var(--tr-green-500);
    box-shadow: 0 12px 28px rgba(8, 45, 33, 0.08);
    color: inherit;
}

.tr-support-ticket-row.is-active {
    background: var(--tr-green-50);
    border-color: rgba(28, 120, 84, 0.4);
    box-shadow: inset 3px 0 0 var(--tr-green-700);
}

.tr-member-support-page {
    display: grid;
    gap: 18px;
}

.tr-member-support-page .tr-page-header {
    background: var(--tr-card-bg);
    border: 1px solid var(--tr-card-border);
    border-radius: 16px;
    box-shadow: 0 16px 36px rgba(8, 45, 33, 0.14);
    margin-bottom: 0;
    padding: 16px 18px;
}

.tr-member-support-page .tr-page-header h1 {
    color: var(--tr-card-text);
    text-shadow: none;
}

.tr-member-support-page .tr-page-header p,
.tr-member-support-page .tr-breadcrumbs,
.tr-member-support-page .tr-breadcrumbs a,
.tr-member-support-page .tr-breadcrumbs span,
.tr-member-support-page .tr-breadcrumbs em {
    color: var(--tr-card-muted) !important;
}

.tr-member-support-page .tr-support-queue {
    background: var(--tr-card-bg);
    border-color: var(--tr-card-border);
    box-shadow: 0 18px 42px rgba(8, 45, 33, 0.24);
}

.tr-member-support-page .tr-support-ticket-row {
    background: var(--tr-card-bg-soft);
    border-color: rgba(232, 242, 218, 0.18);
}

.tr-member-support-page .tr-support-filter input,
.tr-member-support-page .tr-support-filter select {
    background: rgba(247, 252, 244, 0.94);
    border-color: rgba(232, 242, 218, 0.34);
    color: var(--tr-green-950);
}

.tr-member-support-page .tr-support-ticket-row:hover,
.tr-member-support-page .tr-support-ticket-row:focus {
    background: rgba(79, 103, 58, 0.92);
    border-color: rgba(232, 242, 218, 0.34);
}

@supports ((backdrop-filter: blur(10px)) or (-webkit-backdrop-filter: blur(10px))) {
    .tr-member-support-page .tr-page-header,
    .tr-member-support-page .tr-support-queue {
        -webkit-backdrop-filter: blur(2px);
        backdrop-filter: blur(2px);
    }
}

.tr-support-ticket-page {
    display: grid;
    gap: 18px;
}

.tr-support-ticket-page .tr-page-header {
    background: var(--tr-card-bg);
    border: 1px solid var(--tr-card-border);
    border-radius: 16px;
    box-shadow: 0 16px 36px rgba(8, 45, 33, 0.12);
    margin-bottom: 0;
    padding: 16px 18px;
}

.tr-support-ticket-page .tr-page-header h1 {
    color: var(--tr-card-text);
    text-shadow: none;
}

.tr-support-ticket-page .tr-page-header p,
.tr-support-ticket-page .tr-breadcrumbs,
.tr-support-ticket-page .tr-breadcrumbs a,
.tr-support-ticket-page .tr-breadcrumbs span,
.tr-support-ticket-page .tr-breadcrumbs em {
    color: var(--tr-card-muted) !important;
}

.tr-support-ticket-page .tr-page-actions .btn-light {
    background: rgba(247, 250, 240, 0.88);
    border-color: rgba(255, 255, 255, 0.58);
    color: var(--tr-green-950) !important;
    box-shadow: 0 10px 22px rgba(8, 45, 33, 0.12);
}

.tr-support-ticket-page .tr-support-tabs {
    background: var(--tr-card-bg);
    border: 1px solid var(--tr-card-border);
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(8, 45, 33, 0.1);
    gap: 6px;
    margin-bottom: 0;
    padding: 6px;
}

.tr-support-ticket-page .tr-support-tab {
    background: rgba(73, 95, 53, 0.76);
    border-radius: 10px;
    color: var(--tr-card-muted);
    margin-bottom: 0;
}

.tr-support-ticket-page .tr-support-tab:hover,
.tr-support-ticket-page .tr-support-tab:focus {
    background: rgba(79, 103, 58, 0.92);
    color: var(--tr-card-text);
}

.tr-support-ticket-page .tr-support-tab.is-active {
    background: rgba(251, 252, 244, 0.92);
    border-color: rgba(255, 255, 255, 0.62);
    box-shadow: 0 7px 18px rgba(8, 45, 33, 0.11);
    color: var(--tr-green-950);
}

.tr-support-ticket-page .tr-admin-table-card {
    background: var(--tr-card-bg);
    border-color: var(--tr-card-border);
    box-shadow: 0 18px 42px rgba(8, 45, 33, 0.24);
}

.tr-support-ticket-page .tr-admin-section-heading > a {
    align-items: center;
    background: rgba(247, 250, 240, 0.88);
    border: 1px solid rgba(28, 120, 84, 0.18);
    border-radius: 999px;
    color: var(--tr-green-800);
    display: inline-flex;
    font-size: 13px;
    font-weight: 650;
    min-height: 34px;
    padding: 7px 12px;
    text-decoration: none;
}

.tr-support-ticket-page .tr-admin-section-heading > a:hover,
.tr-support-ticket-page .tr-admin-section-heading > a:focus {
    background: var(--tr-green-700);
    border-color: var(--tr-green-700);
    color: var(--tr-white);
}

.tr-support-ticket-page .tr-support-ticket-row,
.tr-support-ticket-page .tr-member-fact-grid div,
.tr-support-ticket-page .tr-ticket-attachment-card,
.tr-support-ticket-page .tr-ticket-meta-block,
.tr-support-ticket-page .tr-support-empty {
    background: var(--tr-card-bg-soft);
    border-color: rgba(232, 242, 218, 0.18);
}

.tr-support-ticket-page .tr-support-ticket-row:hover,
.tr-support-ticket-page .tr-support-ticket-row:focus {
    background: rgba(79, 103, 58, 0.92);
    border-color: rgba(232, 242, 218, 0.34);
}

.tr-support-ticket-page .tr-support-ticket-row.is-active {
    background: rgba(79, 103, 58, 0.94);
    border-color: rgba(232, 242, 218, 0.42);
}

.tr-support-ticket-page .tr-ticket-message.is-member {
    background: rgba(73, 95, 53, 0.88);
    border-color: rgba(232, 242, 218, 0.18);
}

.tr-support-ticket-page .tr-ticket-message.is-support {
    background: rgba(52, 79, 86, 0.9);
    border-color: rgba(214, 232, 238, 0.22);
}

.tr-support-ticket-page .tr-ticket-message.is-system {
    background: rgba(65, 84, 61, 0.82);
}

.tr-support-ticket-page .tr-ticket-composer {
    background: var(--tr-card-bg);
    border-color: var(--tr-card-border);
}

.tr-support-ticket-page .tr-admin-queue-table thead th {
    background: rgba(50, 70, 33, 0.62);
}

@supports ((backdrop-filter: blur(10px)) or (-webkit-backdrop-filter: blur(10px))) {
    .tr-support-ticket-page .tr-page-header,
    .tr-support-ticket-page .tr-support-tabs,
    .tr-support-ticket-page .tr-admin-table-card,
    .tr-support-ticket-page .tr-ticket-composer {
        -webkit-backdrop-filter: blur(5px);
        backdrop-filter: blur(5px);
    }
}

body[data-shell-role="member"] .tr-member-support-page .tr-page-header,
body[data-shell-role="member"] .tr-support-ticket-page .tr-page-header {
    margin-bottom: 0;
}

body[data-shell-role="member"] .tr-support-ticket-page .tr-page-header {
    background: var(--tr-card-bg);
    border-color: var(--tr-card-border);
    box-shadow: 0 16px 36px rgba(8, 45, 33, 0.24);
}

.tr-support-badge {
    align-items: center;
    border-radius: 999px;
    display: inline-flex;
    font-size: 11px;
    font-weight: 560;
    justify-content: center;
    min-height: 24px;
    padding: 4px 9px;
    white-space: nowrap;
}

.transroc-shell .tr-admin-section-heading .tr-support-badge,
.transroc-shell .tr-support-badge {
    font-size: 11px !important;
    font-weight: 560 !important;
    line-height: 1.2 !important;
}

.transroc-shell .tr-support-admin-queue .tr-admin-queue-table {
    min-width: 760px;
    table-layout: fixed;
    width: 100%;
}

.transroc-shell .tr-support-admin-queue .tr-admin-queue-table caption {
    font-size: 12px;
    font-weight: 560;
    padding-bottom: 8px;
}

.transroc-shell .tr-support-admin-queue .tr-admin-queue-table th {
    font-size: 10.5px;
    font-weight: 650;
    line-height: 1.25;
    padding: 10px 12px;
}

.transroc-shell .tr-support-admin-queue .tr-admin-queue-table td {
    font-size: 12.5px !important;
    line-height: 1.35;
    padding: 10px;
    overflow-wrap: normal;
    vertical-align: middle;
}

.transroc-shell .tr-support-admin-queue .tr-admin-queue-table td strong {
    font-size: 12.5px;
    font-weight: 650 !important;
    line-height: 1.25;
}

.transroc-shell .tr-support-admin-queue .tr-admin-queue-table td span {
    font-size: 12px;
    line-height: 1.3;
}

.transroc-shell .tr-support-admin-queue .tr-admin-queue-table td small {
    color: var(--tr-muted) !important;
    display: block;
    font-size: 10.5px;
    font-weight: 500;
    line-height: 1.25;
    margin-top: 2px;
}

.transroc-shell .tr-support-admin-queue .tr-support-badge {
    font-size: 10.5px !important;
    min-height: 22px;
    padding: 3px 8px;
}

.transroc-shell .tr-support-admin-queue .btn-sm {
    font-size: 12px;
    min-height: 34px;
    min-width: 52px;
    padding: 7px 8px;
    white-space: nowrap;
}

.tr-support-badge.is-open {
    background: var(--tr-green-100);
    color: var(--tr-green-800);
}

.tr-support-badge.is-info {
    background: #DBEAFE;
    color: #1D4ED8;
}

.tr-support-badge.is-warning {
    background: var(--tr-gold-100);
    color: #92400E;
}

.tr-support-badge.is-danger {
    background: #FEE2E2;
    color: var(--tr-danger);
}

.tr-support-badge.is-success {
    background: #DCFCE7;
    color: var(--tr-success);
}

.tr-ticket-message-list {
    align-content: start;
    display: grid;
    gap: 12px;
    min-height: 0;
}

.tr-ticket-status-cluster {
    align-items: center;
    display: inline-flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
}

.tr-ticket-live-status {
    align-items: center;
    background: var(--tr-green-50);
    border: 1px solid var(--tr-border);
    border-radius: 999px;
    color: var(--tr-green-800);
    display: inline-flex;
    font-size: 10.5px;
    font-weight: 650;
    line-height: 1.2;
    min-height: 22px;
    padding: 4px 8px;
    white-space: nowrap;
}

.tr-ticket-live-status.is-updating {
    background: #EFF6FF;
    border-color: #BFDBFE;
    color: #1D4ED8;
}

.tr-ticket-live-status.is-new {
    background: var(--tr-gold-100);
    border-color: rgba(230, 164, 59, 0.5);
    color: #92400E;
}

.tr-ticket-live-status.is-error {
    background: #FEE2E2;
    border-color: rgba(220, 38, 38, 0.24);
    color: var(--tr-danger);
}

.tr-ticket-chat-card {
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 220px);
}

.tr-ticket-chat-card .tr-ticket-message-list {
    flex: 1 1 auto;
    max-height: calc(100vh - 430px);
    min-height: 240px;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding-right: 6px;
}

.tr-ticket-chat-layout.is-member-chat {
    grid-template-columns: minmax(0, 1fr);
}

.tr-ticket-chat-layout.is-ops-chat,
.tr-ticket-tab-panel[data-support-tab-panel="chat"] {
    grid-template-columns: minmax(0, 1fr);
}

.tr-ticket-chat-layout.is-member-chat .tr-ticket-chat-card {
    max-height: calc(100vh - 170px);
    min-height: calc(100vh - 210px);
    overflow: hidden;
}

.tr-ticket-chat-layout.is-member-chat .tr-ticket-message-list {
    max-height: none;
}

.tr-ticket-ops-chat-card {
    max-height: calc(100vh - 174px);
    min-height: calc(100vh - 220px);
    overflow: hidden;
}

.tr-ticket-ops-chat-card .tr-ticket-message-list {
    max-height: none;
}

.tr-ticket-history-panel .tr-support-admin-tables {
    margin-top: 0;
}

.tr-ticket-meta-drawer {
    background: var(--tr-green-50);
    border: 1px solid var(--tr-border);
    border-radius: 12px;
    margin-bottom: 14px;
}

.tr-ticket-meta-drawer summary {
    align-items: center;
    color: var(--tr-green-950);
    cursor: pointer;
    display: grid;
    gap: 12px;
    grid-template-columns: minmax(0, 1fr) auto 20px;
    list-style: none;
    min-height: 54px;
    padding: 11px 14px;
}

.tr-ticket-meta-drawer summary::-webkit-details-marker {
    display: none;
}

.tr-ticket-meta-drawer summary small,
.tr-ticket-meta-drawer summary strong {
    display: block;
}

.tr-ticket-meta-drawer summary small {
    color: var(--tr-muted);
    font-size: 11px;
    font-weight: 650;
    letter-spacing: 0;
    line-height: 1.2;
    text-transform: uppercase;
}

.tr-ticket-meta-drawer summary strong {
    color: var(--tr-green-950);
    font-size: 14px;
    font-weight: 620;
    line-height: 1.25;
}

.tr-ticket-meta-drawer summary > em {
    color: var(--tr-muted);
    transition: transform 0.16s ease;
}

.tr-ticket-meta-drawer[open] summary > em {
    transform: rotate(180deg);
}

.tr-ticket-meta-drawer-grid {
    border-top: 1px solid var(--tr-border);
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 14px;
}

.tr-ticket-meta-block {
    background: var(--tr-white);
    border: 1px solid var(--tr-border);
    border-radius: 10px;
    display: grid;
    gap: 12px;
    min-width: 0;
    padding: 12px;
}

.tr-ticket-meta-block-heading {
    align-items: start;
    display: flex;
    gap: 12px;
    justify-content: space-between;
}

.tr-ticket-meta-block-heading span,
.tr-ticket-meta-block-heading strong {
    display: block;
    line-height: 1.25;
}

.tr-ticket-meta-block-heading span {
    color: var(--tr-muted);
    font-size: 11px;
    font-weight: 650;
    text-transform: uppercase;
}

.tr-ticket-meta-block-heading strong {
    color: var(--tr-green-950);
    font-size: 14px;
    font-weight: 620;
    text-align: right;
}

.tr-ticket-message {
    border: 1px solid var(--tr-border);
    border-radius: 10px;
    display: grid;
    gap: 6px;
    max-width: 82%;
    padding: 11px 12px;
}

.tr-ticket-message.is-member {
    background: var(--tr-green-50);
    justify-self: start;
}

.tr-ticket-message.is-support {
    background: #EEF6FF;
    border-color: #BFDBFE;
    justify-self: end;
}

.tr-ticket-message.is-internal {
    background: #F8FAFC;
    border-color: #CBD5E1;
    border-style: dashed;
    justify-self: stretch;
    max-width: 100%;
}

.tr-ticket-message.is-system {
    background: rgba(28, 120, 84, 0.08);
    border-color: rgba(28, 120, 84, 0.16);
    justify-self: center;
    max-width: min(520px, 100%);
    padding: 8px 12px;
    text-align: center;
}

.tr-ticket-message div {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: space-between;
}

.tr-ticket-message strong {
    color: var(--tr-green-950);
    font-size: 13px;
    font-weight: 560;
    line-height: 1.35;
}

.tr-ticket-message span {
    color: var(--tr-muted);
    font-size: 12px;
    font-weight: 450;
}

.tr-ticket-message p {
    color: var(--tr-ink);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
}

.tr-ticket-message.is-system p {
    color: var(--tr-muted);
    font-size: 12px;
    font-weight: 560;
}

.tr-ticket-message-files {
    margin-top: 4px;
}

.tr-ticket-request-copy {
    color: var(--tr-ink);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.55;
    margin: 0 0 14px;
}

.tr-ticket-request-files {
    display: grid;
    gap: 10px;
    margin-top: 14px;
}

.tr-ticket-request-files h3 {
    color: var(--tr-green-950);
    font-size: 14px;
    font-weight: 560;
    line-height: 1.3;
    margin: 0;
}

.tr-ticket-attachment-grid {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
}

.tr-ticket-attachment-grid.is-compact {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tr-ticket-attachment-card {
    background: var(--tr-green-50);
    border: 1px solid var(--tr-border);
    border-radius: 10px;
    display: grid;
    gap: 9px;
    overflow: hidden;
    padding: 10px;
}

.tr-ticket-attachment-grid.is-compact .tr-ticket-attachment-card {
    gap: 7px;
    padding: 8px;
    width: 150px;
}

.tr-ticket-attachment-preview {
    align-items: center;
    background: var(--tr-white);
    border: 1px solid rgba(28, 120, 84, 0.16);
    border-radius: 8px;
    color: var(--tr-green-800);
    display: flex;
    height: 96px;
    justify-content: center;
    min-height: 0;
    overflow: hidden;
    text-decoration: none;
    width: 128px;
}

.tr-ticket-attachment-grid.is-compact .tr-ticket-attachment-preview {
    height: 82px;
    width: 132px;
}

.tr-ticket-attachment-preview img {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.tr-ticket-attachment-preview.is-file {
    flex-direction: column;
    font-size: 13px;
    font-weight: 560;
    gap: 6px;
}

.tr-ticket-attachment-preview.is-file em {
    font-size: 24px;
}

.tr-ticket-attachment-meta {
    display: grid;
    gap: 3px;
    min-width: 0;
}

.tr-ticket-attachment-meta strong,
.tr-ticket-attachment-meta strong a {
    color: var(--tr-green-950);
    font-size: 13px;
    font-weight: 560;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.tr-ticket-attachment-meta span,
.tr-ticket-attachment-meta a {
    font-size: 12px;
    font-weight: 450;
    line-height: 1.35;
}

.tr-ticket-attachment-grid.is-compact .tr-ticket-attachment-meta span {
    display: none;
}

.tr-ticket-attachment-grid.is-compact .tr-ticket-attachment-meta strong,
.tr-ticket-attachment-grid.is-compact .tr-ticket-attachment-meta strong a {
    font-size: 12px;
}

.tr-ticket-table-preview {
    align-items: center;
    background: var(--tr-green-50);
    border: 1px solid var(--tr-border);
    border-radius: 8px;
    color: var(--tr-green-800);
    display: inline-flex;
    height: 48px;
    justify-content: center;
    overflow: hidden;
    text-decoration: none;
    width: 64px;
}

.tr-ticket-table-preview img {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.tr-ticket-table-preview.is-file em {
    font-size: 22px;
}

.tr-ticket-composer {
    background: var(--tr-white);
    border: 1px solid var(--tr-border);
    border-radius: 10px;
    bottom: 0;
    box-shadow: 0 14px 32px rgba(8, 45, 33, 0.12);
    margin-top: 18px;
    padding: 12px;
    position: sticky;
    z-index: 12;
}

.tr-ticket-composer textarea {
    min-height: 84px;
}

.tr-support-form-feedback {
    border-radius: 8px;
    font-size: 12px;
    font-weight: 560;
    grid-column: 1 / -1;
    line-height: 1.35;
    padding: 9px 11px;
}

.tr-support-form-feedback.is-success {
    background: #DCFCE7;
    color: var(--tr-success);
}

.tr-support-form-feedback.is-danger {
    background: #FEE2E2;
    color: var(--tr-danger);
}

.tr-support-participant-list {
    display: grid;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.tr-support-participant-list li,
.tr-ticket-join-gate {
    background: var(--tr-green-50);
    border: 1px solid var(--tr-border);
    border-radius: 10px;
    color: var(--tr-muted);
    padding: 12px;
}

.tr-support-participant-list strong,
.tr-ticket-join-gate strong {
    color: var(--tr-green-950);
    display: block;
    font-size: 13px;
    font-weight: 560;
    line-height: 1.35;
}

.tr-support-participant-list span,
.tr-ticket-join-gate span {
    color: var(--tr-muted);
    display: block;
    font-size: 12px;
    font-weight: 450;
    margin-top: 3px;
}

.tr-ticket-join-gate .btn span {
    color: inherit;
    display: inline;
    font-size: inherit;
    font-weight: inherit;
    margin-top: 0;
}

.tr-ticket-join-gate {
    display: grid;
    gap: 10px;
    margin-top: 16px;
}

.tr-ticket-reply-form,
.tr-ticket-assign-form {
    border-top: 1px solid var(--tr-border);
    margin-top: 16px;
    padding-top: 16px;
}

.tr-ticket-workflow-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 12px 0 14px;
}

.tr-support-inline-details,
.tr-support-secondary {
    background: var(--tr-white);
    border: 1px solid var(--tr-border);
    border-radius: 10px;
}

.tr-support-inline-details {
    padding: 10px 12px;
}

.tr-support-secondary {
    box-shadow: 0 12px 32px rgba(8, 45, 33, 0.06);
    margin-top: 18px;
    padding: 14px 18px 18px;
}

.tr-support-inline-details summary,
.tr-support-secondary summary {
    align-items: center;
    color: var(--tr-green-950);
    cursor: pointer;
    display: flex;
    gap: 10px;
    justify-content: space-between;
}

.tr-support-secondary summary strong {
    color: var(--tr-green-950);
    font-weight: 560;
}

.tr-support-inline-details[open] summary,
.tr-support-secondary[open] summary {
    margin-bottom: 14px;
}

@media (max-width: 1199px) {
    .tr-support-admin-layout,
    .tr-ticket-layout,
    .tr-support-admin-tables,
    .tr-support-secondary-grid {
        grid-template-columns: 1fr;
    }

    .tr-support-filter {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 840px) {
    .tr-support-layout,
    .tr-support-admin-kpis,
    .tr-support-form,
    .tr-support-filter,
    .tr-support-mini-grid {
        grid-template-columns: 1fr;
    }

    .tr-support-ticket-row {
        align-items: start;
        grid-template-columns: 1fr;
    }

    .tr-ticket-meta-drawer summary,
    .tr-ticket-meta-drawer-grid {
        grid-template-columns: 1fr;
    }

    .tr-ticket-meta-drawer summary > em {
        justify-self: start;
    }

    .tr-ticket-message {
        max-width: 100%;
    }

    .tr-ticket-attachment-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }

    .tr-ticket-composer {
        bottom: 0;
    }

    .tr-support-heading-actions {
        align-items: stretch;
        flex-direction: column;
        justify-content: stretch;
        width: 100%;
    }

    .tr-support-modal {
        align-items: stretch;
        padding: 14px;
    }

    .tr-support-modal-panel {
        max-height: calc(100vh - 28px);
        width: 100%;
    }
}

body[data-page="member/commodities"] .transroc-content,
body[data-page="member/market-insights"] .transroc-content,
body[data-page="member/requests"] .transroc-content,
body[data-page="member/sales-proceeds"] .transroc-content {
    background: #092007;
    min-height: 100vh;
    overflow-x: clip;
    padding: 0 !important;
}

body[data-page="member/commodities"] .transroc-content-container,
body[data-page="member/market-insights"] .transroc-content-container,
body[data-page="member/requests"] .transroc-content-container,
body[data-page="member/sales-proceeds"] .transroc-content-container {
    max-width: none;
    min-width: 0;
    padding: 0 !important;
    width: 100%;
}

body[data-page="member/commodities"] .transroc-footer,
body[data-page="member/market-insights"] .transroc-footer,
body[data-page="member/requests"] .transroc-footer,
body[data-page="member/sales-proceeds"] .transroc-footer {
    display: none;
}

body[data-page="member/commodities"] #debug-icon,
body[data-page="member/commodities"] #debug-bar,
body[data-page="member/market-insights"] #debug-icon,
body[data-page="member/market-insights"] #debug-bar,
body[data-page="member/requests"] #debug-icon,
body[data-page="member/requests"] #debug-bar,
body[data-page="member/sales-proceeds"] #debug-icon,
body[data-page="member/sales-proceeds"] #debug-bar {
    display: none !important;
}

body[data-page="member/commodities"] .tr-auto-breadcrumbs,
body[data-page="member/market-insights"] .tr-auto-breadcrumbs,
body[data-page="member/requests"] .tr-auto-breadcrumbs,
body[data-page="member/sales-proceeds"] .tr-auto-breadcrumbs {
    display: none;
}

.tr-payout-page {
    --tr-payout-panel: rgba(30, 56, 22, 0.91);
    --tr-payout-panel-strong: rgba(27, 52, 20, 0.97);
    --tr-payout-border: rgba(255, 255, 255, 0.14);
    --tr-payout-lime: #dff21e;
    --tr-payout-cream: #f1eedb;
    --tr-payout-ink: #11170f;
    color: #ffffff;
    min-height: 100vh;
    overflow: hidden;
    padding: 18px clamp(16px, 1.7vw, 32px) 34px;
    position: relative;
}

.tr-payout-page :where(h1, h2, h3, p, a, button, input, select, span, strong, small, td, th, label):not(.icon):not(.ni) {
    font-family: var(--transroc-font-family) !important;
    letter-spacing: 0;
}

.tr-payout-page::before {
    background:
        linear-gradient(90deg, rgba(3, 13, 2, 0.88), rgba(13, 36, 7, 0.5) 48%, rgba(4, 14, 2, 0.9)),
        linear-gradient(180deg, rgba(8, 20, 3, 0.08), rgba(5, 15, 2, 0.34));
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
    z-index: 1;
}

.tr-payout-bg {
    height: 100%;
    inset: 0;
    object-fit: cover;
    object-position: center top;
    opacity: 0.72;
    pointer-events: none;
    position: absolute;
    width: 100%;
    z-index: 0;
}

.tr-payout-page > *:not(.tr-payout-bg) {
    position: relative;
    z-index: 2;
}

.tr-payout-alert {
    margin: 0 0 12px;
}

.tr-payout-shell {
    display: grid;
    gap: 22px;
    grid-template-columns: minmax(0, 1fr) minmax(306px, 330px);
    min-height: calc(100vh - 52px);
}

.tr-payout-main,
.tr-payout-sidebar {
    min-width: 0;
}

.tr-payout-main {
    align-content: start;
    display: grid;
    gap: 16px;
}

.tr-payout-header {
    align-items: center;
    display: flex;
    gap: 18px;
    min-height: 74px;
}

.tr-payout-back {
    align-items: center;
    background: rgba(247, 246, 225, 0.96);
    border-radius: 50%;
    color: #15200f;
    display: inline-flex;
    flex: 0 0 auto;
    font-size: 22px;
    height: 44px;
    justify-content: center;
    width: 44px;
}

.tr-payout-header h1 {
    color: #ffffff;
    font-size: clamp(30px, 2.2vw, 40px);
    font-weight: 590;
    line-height: 1;
    margin: 0 0 6px;
}

.tr-payout-header p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 13px;
    margin: 0;
}

.tr-payout-kpis {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.tr-payout-kpi,
.tr-payout-table-card,
.tr-payout-withdrawal,
.tr-payout-help-card,
.tr-payout-side-card {
    background: var(--tr-payout-panel);
    backdrop-filter: blur(14px);
    border: 1px solid var(--tr-payout-border);
    box-shadow: 0 24px 50px rgba(8, 24, 6, 0.24);
}

.tr-payout-kpi {
    align-items: start;
    border-radius: 10px;
    display: grid;
    gap: 9px;
    grid-template-columns: 34px minmax(0, 1fr);
    min-height: 128px;
    min-width: 0;
    padding: 16px 13px;
}

.tr-payout-kpi-icon {
    align-items: center;
    background: rgba(223, 242, 30, 0.12);
    border-radius: 10px;
    color: var(--tr-payout-lime);
    display: inline-flex;
    font-size: 18px;
    height: 34px;
    justify-content: center;
    width: 34px;
}

.tr-payout-kpi-icon.is-warning {
    color: #f2a900;
}

.tr-payout-kpi-icon.is-success {
    color: #8ec843;
}

.tr-payout-kpi-icon.is-danger {
    color: #ff4d3f;
}

.tr-payout-kpi div {
    min-width: 0;
}

.tr-payout-kpi span,
.tr-payout-kpi small,
.tr-payout-kpi a {
    display: block;
}

.tr-payout-kpi div > span {
    color: rgba(255, 255, 255, 0.84);
    font-size: 10.5px;
    font-weight: 520;
    line-height: 1.15;
}

.tr-payout-kpi strong {
    color: #ffffff;
    display: block;
    font-size: clamp(18px, 1.05vw, 21px);
    font-weight: 560;
    line-height: 1.1;
    margin-top: 9px;
    white-space: nowrap;
}

.tr-payout-kpi small {
    color: rgba(255, 255, 255, 0.72);
    font-size: 10.5px;
    line-height: 1.25;
    margin-top: 6px;
}

.tr-payout-kpi a {
    align-items: center;
    color: var(--tr-payout-lime);
    display: inline-flex;
    font-size: 10.5px;
    font-weight: 650;
    gap: 7px;
    margin-top: 12px;
}

.tr-payout-withdrawal {
    border-radius: 12px;
    overflow: hidden;
}

.tr-payout-withdrawal summary {
    align-items: center;
    cursor: pointer;
    display: flex;
    gap: 18px;
    justify-content: space-between;
    list-style: none;
    min-height: 54px;
    padding: 0 18px;
}

.tr-payout-withdrawal summary::-webkit-details-marker {
    display: none;
}

.tr-payout-withdrawal summary span {
    color: #ffffff;
    font-size: 14px;
    font-weight: 560;
}

.tr-payout-withdrawal summary strong {
    color: var(--tr-payout-lime);
    font-size: 13px;
    font-weight: 620;
}

.tr-payout-withdrawal form {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: grid;
    gap: 12px;
    grid-template-columns: minmax(160px, 1fr) minmax(180px, 1fr) minmax(110px, 150px) auto;
    padding: 16px 18px 18px;
}

.tr-payout-withdrawal label,
.tr-payout-method-form form {
    display: grid;
    gap: 6px;
}

.tr-payout-withdrawal label span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 10.5px;
    font-weight: 560;
    text-transform: uppercase;
}

.tr-payout-withdrawal input,
.tr-payout-withdrawal select,
.tr-payout-method-form input {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 9px;
    color: #ffffff;
    font-size: 13px;
    min-height: 42px;
    outline: 0;
    padding: 0 12px;
    width: 100%;
}

.tr-payout-withdrawal select option {
    color: #11170f;
}

.tr-payout-withdrawal button,
.tr-payout-method-form button {
    align-items: center;
    align-self: end;
    background: var(--tr-payout-lime);
    border: 0;
    border-radius: 9px;
    color: #15200f;
    cursor: pointer;
    display: inline-flex;
    font-size: 13px;
    font-weight: 650;
    gap: 8px;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
}

.tr-payout-withdrawal button:disabled {
    opacity: 0.55;
}

.tr-payout-table-card {
    border-radius: 10px;
    overflow: hidden;
}

.tr-payout-table-top {
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    gap: 18px;
    justify-content: space-between;
    min-height: 76px;
    padding: 14px 20px;
}

.tr-payout-tabs {
    align-items: center;
    display: flex;
    gap: clamp(16px, 2.3vw, 34px);
    min-width: 0;
    overflow-x: auto;
}

.tr-payout-tabs a {
    color: rgba(255, 255, 255, 0.88);
    flex: 0 0 auto;
    font-size: 13px;
    font-weight: 560;
    padding: 10px 0;
    position: relative;
}

.tr-payout-tabs a.is-active {
    color: var(--tr-payout-lime);
}

.tr-payout-tabs a.is-active::after {
    background: var(--tr-payout-lime);
    border-radius: 999px;
    bottom: 0;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    width: 100%;
}

.tr-payout-filter-form {
    align-items: center;
    display: flex;
    flex: 0 0 auto;
    gap: 10px;
}

.tr-payout-filter-form label {
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 9px;
    display: grid;
    gap: 2px;
    min-height: 44px;
    min-width: 132px;
    padding: 6px 10px;
}

.tr-payout-filter-form label span {
    color: rgba(255, 255, 255, 0.58);
    font-size: 9px;
    font-weight: 650;
    line-height: 1;
    text-transform: uppercase;
}

.tr-payout-filter-form input {
    background: transparent;
    border: 0;
    color: #ffffff;
    font-size: 12px;
    outline: 0;
    padding: 0;
}

.tr-payout-filter-form select {
    appearance: none;
    background: transparent;
    border: 0;
    color: #ffffff;
    font-size: 12px;
    min-width: 0;
    outline: 0;
    padding: 0 18px 0 0;
    width: 100%;
}

.tr-payout-filter-form select option {
    color: #11170f;
}

.tr-payout-filter-form button,
.tr-payout-filter-form a {
    align-items: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 9px;
    color: #ffffff;
    cursor: pointer;
    display: inline-flex;
    font-size: 12px;
    font-weight: 560;
    gap: 8px;
    min-height: 44px;
    padding: 0 15px;
}

.tr-payout-table-scroll {
    overflow-x: auto;
}

.tr-payout-table {
    border-collapse: collapse;
    color: #ffffff;
    min-width: 990px;
    width: 100%;
}

.tr-payout-table caption {
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

.tr-payout-table th,
.tr-payout-table td {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 12px;
    line-height: 1.22;
    padding: 13px 20px;
    text-align: left;
    vertical-align: middle;
}

.tr-payout-table th {
    color: rgba(255, 255, 255, 0.8);
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
}

.tr-payout-table td {
    color: rgba(255, 255, 255, 0.91);
    font-weight: 470;
}

.tr-payout-method,
.tr-payout-commodity {
    align-items: center;
    display: inline-flex;
    gap: 9px;
    min-width: 0;
}

.tr-payout-method em {
    color: var(--tr-payout-cream);
    font-size: 18px;
}

.tr-payout-commodity img {
    border-radius: 7px;
    display: block;
    height: 34px;
    object-fit: cover;
    width: 34px;
}

.tr-payout-status {
    border-radius: 7px;
    display: inline-flex;
    font-size: 11px;
    font-weight: 620;
    line-height: 1;
    padding: 7px 9px;
    white-space: nowrap;
}

.tr-payout-status.is-success {
    background: rgba(127, 171, 58, 0.42);
    color: #dff5b2;
}

.tr-payout-status.is-warning {
    background: rgba(197, 157, 0, 0.34);
    color: #ffea66;
}

.tr-payout-status.is-danger {
    background: rgba(191, 61, 49, 0.44);
    color: #ffd2cb;
}

.tr-payout-action {
    align-items: center;
    background: transparent;
    border: 0;
    color: rgba(255, 255, 255, 0.84);
    cursor: pointer;
    display: inline-flex;
    font-size: 20px;
    height: 34px;
    justify-content: center;
    width: 34px;
}

.tr-action-menu {
    display: inline-flex;
}

.tr-action-menu-list {
    background: rgba(20, 42, 16, 0.99);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 10px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
    display: grid;
    gap: 2px;
    padding: 6px;
    position: fixed;
    z-index: 2000;
}

.tr-action-menu-list[hidden] {
    display: none;
}

.tr-action-menu-list a,
.tr-action-menu-list button {
    align-items: center;
    background: transparent;
    border: 0;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    display: flex;
    font-size: 12px;
    font-weight: 560;
    gap: 9px;
    line-height: 1.2;
    min-height: 34px;
    padding: 0 10px;
    text-align: left;
    white-space: nowrap;
    width: 100%;
}

.tr-action-menu-list a:hover,
.tr-action-menu-list button:hover,
.tr-action-menu-list a:focus-visible,
.tr-action-menu-list button:focus-visible {
    background: rgba(223, 242, 30, 0.14);
    color: #ffffff;
    outline: 0;
}

.tr-action-menu-list em {
    color: var(--tr-payout-lime);
    font-size: 15px;
}

.tr-action-modal {
    align-items: center;
    display: flex;
    inset: 0;
    justify-content: center;
    padding: 22px;
    position: fixed;
    z-index: 2400;
}

.tr-action-modal[hidden] {
    display: none;
}

.tr-action-modal-backdrop {
    background: rgba(5, 14, 4, 0.68);
    inset: 0;
    position: absolute;
}

.tr-action-modal-card {
    background: rgba(20, 42, 16, 0.99);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 13px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.42);
    color: #ffffff;
    display: grid;
    gap: 10px;
    max-width: min(360px, 100%);
    padding: 14px;
    position: relative;
    width: 100%;
    z-index: 1;
}

.tr-record-modal .tr-action-modal-card {
    max-width: min(640px, 100%);
    padding: 18px;
}

.tr-action-modal-card header {
    align-items: center;
    display: flex;
    gap: 14px;
    justify-content: space-between;
    padding: 2px 2px 8px;
}

.tr-action-modal-card header span {
    color: var(--tr-payout-lime);
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.tr-action-modal-card h2 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 650;
    line-height: 1.2;
    margin: 3px 0 0;
}

.tr-action-modal-card header button {
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    color: #ffffff;
    cursor: pointer;
    display: inline-flex;
    height: 34px;
    justify-content: center;
    width: 34px;
}

.tr-action-modal-list {
    display: grid;
    gap: 6px;
}

.tr-action-modal-list a,
.tr-action-modal-list button {
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 9px;
    color: rgba(255, 255, 255, 0.93);
    cursor: pointer;
    display: flex;
    font-size: 13px;
    font-weight: 590;
    gap: 10px;
    min-height: 44px;
    padding: 0 12px;
    text-align: left;
    width: 100%;
}

.tr-action-modal-list a:hover,
.tr-action-modal-list button:hover,
.tr-action-modal-list a:focus-visible,
.tr-action-modal-list button:focus-visible {
    background: rgba(223, 242, 30, 0.14);
    color: #ffffff;
    outline: 0;
}

.tr-action-modal-list em {
    color: var(--tr-payout-lime);
    font-size: 17px;
}

.tr-record-modal-body {
    display: grid;
    gap: 14px;
}

.tr-record-modal-summary {
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 10px;
    display: grid;
    gap: 4px;
    padding: 14px;
}

.tr-record-modal-summary strong {
    color: #ffffff;
    font-size: 17px;
    font-weight: 680;
}

.tr-record-modal-summary span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
}

.tr-record-modal-grid {
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0;
}

.tr-record-modal-grid div {
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: 9px;
    padding: 12px;
}

.tr-record-modal-grid dt {
    color: rgba(255, 255, 255, 0.58);
    font-size: 10px;
    font-weight: 720;
    letter-spacing: 0;
    margin: 0 0 5px;
    text-transform: uppercase;
}

.tr-record-modal-grid dd {
    color: #ffffff;
    font-size: 13px;
    font-weight: 620;
    line-height: 1.25;
    margin: 0;
}

@media (max-width: 575.98px) {
    .tr-record-modal .tr-action-modal-card {
        max-height: calc(100vh - 44px);
        overflow: auto;
    }

    .tr-record-modal-grid {
        grid-template-columns: 1fr;
    }
}

.tr-payout-empty-row {
    color: rgba(255, 255, 255, 0.72) !important;
    padding: 30px 20px !important;
    text-align: center !important;
}

.tr-table-skeleton-row td {
    padding-bottom: 18px;
    padding-top: 18px;
}

.tr-skeleton-line {
    animation: trSkeletonPulse 1.25s ease-in-out infinite;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.19), rgba(255, 255, 255, 0.08));
    background-size: 220% 100%;
    border-radius: 999px;
    display: block;
    height: 12px;
    max-width: 100%;
    min-width: 42px;
    width: 82%;
}

.tr-table-skeleton-row td:nth-child(2n) .tr-skeleton-line {
    width: 62%;
}

.tr-table-skeleton-row td:nth-child(3n) .tr-skeleton-line {
    width: 74%;
}

.tr-skeleton-line.is-footer {
    height: 13px;
    width: 220px;
}

.tr-card-skeleton .tr-skeleton-line {
    background-color: rgba(255, 255, 255, 0.13);
}

@keyframes trSkeletonPulse {
    0% {
        background-position: 100% 0;
    }

    100% {
        background-position: -100% 0;
    }
}

.tr-payout-table-footer {
    align-items: center;
    display: flex;
    gap: 16px;
    justify-content: space-between;
    min-height: 58px;
    padding: 0 20px;
}

.tr-payout-table-footer > span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
}

.tr-payout-pagination {
    align-items: center;
    display: flex;
    gap: 8px;
}

.tr-payout-pagination a {
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.82);
    display: inline-flex;
    font-size: 12px;
    font-weight: 560;
    height: 32px;
    justify-content: center;
    width: 32px;
}

.tr-payout-pagination a.is-active {
    background: var(--tr-payout-lime);
    color: #15200f;
}

.tr-payout-help-card {
    align-items: center;
    border-radius: 10px;
    display: grid;
    gap: 18px;
    grid-template-columns: 52px minmax(0, 1fr) minmax(170px, 220px) minmax(170px, 220px);
    min-height: 86px;
    padding: 14px 20px;
}

.tr-payout-help-card > span {
    align-items: center;
    background: rgba(223, 242, 30, 0.18);
    border-radius: 13px;
    color: var(--tr-payout-cream);
    display: inline-flex;
    font-size: 28px;
    height: 52px;
    justify-content: center;
    width: 52px;
}

.tr-payout-help-card h2 {
    color: #ffffff;
    font-size: 17px;
    font-weight: 560;
    line-height: 1.15;
    margin: 0 0 6px;
}

.tr-payout-help-card p {
    color: rgba(255, 255, 255, 0.74);
    font-size: 12px;
    margin: 0;
}

.tr-payout-help-card a {
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: #ffffff;
    display: inline-flex;
    font-size: 13px;
    font-weight: 560;
    gap: 10px;
    justify-content: center;
    min-height: 44px;
    padding: 0 16px;
}

.tr-payout-help-card a.is-primary {
    background: var(--tr-payout-lime);
    border-color: var(--tr-payout-lime);
    color: #15200f;
}

.tr-payout-sidebar {
    align-content: start;
    display: grid;
    gap: 14px;
}

.tr-payout-weather {
    display: none;
    gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tr-payout-weather article {
    align-items: center;
    background: rgba(247, 246, 225, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 13px;
    color: var(--tr-payout-ink);
    display: grid;
    gap: 10px;
    grid-template-columns: 46px minmax(0, 1fr);
    min-height: 68px;
    padding: 10px 12px;
}

.tr-payout-weather article > span {
    align-items: center;
    background: rgba(17, 23, 15, 0.08);
    border-radius: 50%;
    display: inline-flex;
    font-size: 22px;
    height: 46px;
    justify-content: center;
    width: 46px;
}

.tr-payout-weather small,
.tr-payout-weather strong {
    display: block;
}

.tr-payout-weather small {
    color: rgba(17, 23, 15, 0.66);
    font-size: 9.5px;
    font-weight: 560;
}

.tr-payout-weather strong {
    color: var(--tr-payout-ink);
    font-size: 18px;
    font-weight: 610;
    line-height: 1.1;
}

.tr-payout-side-card {
    border-radius: 13px;
    padding: 18px;
}

.tr-payout-side-card header {
    align-items: center;
    display: flex;
    gap: 12px;
    justify-content: space-between;
}

.tr-payout-side-card h2 {
    color: #ffffff;
    font-size: 17px;
    font-weight: 560;
    line-height: 1.15;
    margin: 0;
}

.tr-payout-side-card header a,
.tr-payout-side-card header span {
    color: var(--tr-payout-lime);
    font-size: 11px;
    font-weight: 560;
    white-space: nowrap;
}

.tr-payout-ai-card {
    display: grid;
    gap: 13px;
}

.tr-payout-ai-card header > div {
    align-items: center;
    display: flex;
    gap: 12px;
}

.tr-payout-ai-card header em {
    font-size: 26px;
}

.tr-payout-ai-card header button {
    background: transparent;
    border: 0;
    color: rgba(255, 255, 255, 0.86);
    cursor: pointer;
    font-size: 18px;
}

.tr-payout-ai-copy h3 {
    color: #ffffff;
    font-size: 15px;
    font-weight: 560;
    line-height: 1.2;
    margin: 0 0 6px;
}

.tr-payout-ai-copy p {
    color: rgba(255, 255, 255, 0.84);
    font-size: 12.5px;
    line-height: 1.35;
    margin: 0;
}

.tr-payout-ai-prompts {
    display: grid;
    gap: 7px;
}

.tr-payout-ai-prompts button {
    align-items: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 9px;
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    display: flex;
    font-size: 11.5px;
    gap: 10px;
    justify-content: space-between;
    min-height: 34px;
    padding: 7px 10px;
    text-align: left;
}

.tr-payout-ai-prompts span {
    min-width: 0;
    overflow-wrap: anywhere;
}

.tr-payout-ai-input {
    align-items: center;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 11px;
    display: grid;
    gap: 10px;
    grid-template-columns: minmax(0, 1fr) 40px;
    padding: 7px;
}

.tr-payout-ai-input input {
    background: transparent;
    border: 0;
    color: #ffffff;
    font-size: 12px;
    outline: 0;
    padding: 0 8px;
}

.tr-payout-ai-input input::placeholder {
    color: rgba(255, 255, 255, 0.68);
}

.tr-payout-ai-input button {
    align-items: center;
    background: var(--tr-payout-lime);
    border: 0;
    border-radius: 50%;
    color: #15200f;
    cursor: pointer;
    display: inline-flex;
    font-size: 19px;
    height: 40px;
    justify-content: center;
    width: 40px;
}

.tr-payout-method-card,
.tr-payout-summary-card,
.tr-payout-status-card {
    display: grid;
    gap: 14px;
}

.tr-payout-method-list {
    display: grid;
    gap: 0;
}

.tr-payout-method-list article {
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    display: grid;
    gap: 11px;
    grid-template-columns: 32px minmax(0, 1fr) auto;
    min-height: 48px;
}

.tr-payout-method-list article > span {
    align-items: center;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    color: #ffffff;
    display: inline-flex;
    font-size: 15px;
    font-weight: 650;
    height: 28px;
    justify-content: center;
    width: 28px;
}

.tr-payout-method-list article > span.is-p {
    background: #6e30d8;
}

.tr-payout-method-list article > span.is-t {
    background: #2fa983;
}

.tr-payout-method-list article > span.is-v {
    background: #477ed7;
}

.tr-order-page .tr-payout-kpi strong {
    white-space: normal;
}

.tr-order-table-top {
    align-items: flex-start;
}

.tr-order-table-top .tr-payout-tabs {
    flex: 1 1 auto;
}

.tr-order-filter-panel {
    flex: 0 0 auto;
    position: relative;
    z-index: 30;
}

.tr-order-filter-panel summary {
    align-items: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 9px;
    color: #ffffff;
    cursor: pointer;
    display: inline-flex;
    font-size: 12px;
    font-weight: 560;
    gap: 8px;
    list-style: none;
    min-height: 44px;
    padding: 0 15px;
}

.tr-order-filter-panel summary::-webkit-details-marker {
    display: none;
}

.tr-order-filter-panel summary em:last-child {
    font-size: 14px;
    transition: transform 160ms ease;
}

.tr-order-filter-panel[open] summary em:last-child {
    transform: rotate(180deg);
}

.tr-order-filter-panel .tr-order-filter-form {
    background: rgba(31, 61, 23, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 11px;
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.3);
    justify-content: flex-end;
    min-width: min(720px, calc(100vw - 56px));
    padding: 12px;
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    z-index: 32;
}

.tr-order-filter-form label {
    min-width: 152px;
}

.tr-order-filter-form label:first-child {
    min-width: 190px;
}

.tr-order-table {
    min-width: 1120px;
}

.tr-order-table td:first-child strong,
.tr-order-table td:first-child span {
    display: block;
}

.tr-order-table td:first-child strong {
    color: #ffffff;
    font-weight: 570;
    white-space: nowrap;
}

.tr-order-table td:first-child span {
    color: rgba(255, 255, 255, 0.58);
    font-size: 10.5px;
    line-height: 1.35;
    margin-top: 5px;
    max-width: 230px;
}

.tr-order-card-grid {
    display: none;
}

.tr-order-recent-list article {
    grid-template-columns: 32px minmax(0, 1fr) minmax(72px, auto);
}

.tr-order-recent-list article > span {
    background: rgba(223, 242, 30, 0.14);
    color: var(--tr-payout-lime);
    border-radius: 8px;
    overflow: hidden;
}

.tr-order-recent-list article > span em {
    font-size: 15px;
}

.tr-order-recent-list article > span img {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.tr-order-recent-list em {
    text-align: center;
}

.tr-order-page .tr-member-request-card {
    background: rgba(30, 56, 22, 0.91);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 10px;
    box-shadow: 0 18px 34px rgba(7, 20, 5, 0.2);
}

.tr-order-page .tr-member-request-card > span,
.tr-order-page .tr-member-request-card p,
.tr-order-page .tr-member-request-card dt {
    color: rgba(255, 255, 255, 0.68);
}

.tr-order-page .tr-member-request-card h2,
.tr-order-page .tr-member-request-card dd {
    color: #ffffff;
    font-weight: 600;
}

.tr-order-page .tr-member-request-card a {
    align-items: center;
    background: var(--tr-payout-lime);
    border-radius: 9px;
    color: #15200f;
    display: inline-flex;
    font-size: 12px;
    font-weight: 650;
    gap: 8px;
    justify-content: center;
    min-height: 38px;
    padding: 0 14px;
}

.tr-payout-method-list strong,
.tr-payout-method-list small {
    display: block;
    min-width: 0;
}

.tr-payout-method-list strong {
    color: #ffffff;
    font-size: 12px;
    font-weight: 540;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tr-payout-method-list small {
    color: rgba(255, 255, 255, 0.68);
    font-size: 10.5px;
    margin-top: 2px;
}

.tr-payout-method-list em {
    background: rgba(223, 242, 30, 0.22);
    border-radius: 7px;
    color: #eaf782;
    font-size: 9.5px;
    font-style: normal;
    font-weight: 650;
    padding: 6px 8px;
}

.tr-payout-method-list p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    margin: 0;
}

.tr-payout-method-form summary {
    align-items: center;
    color: var(--tr-payout-lime);
    cursor: pointer;
    display: flex;
    font-size: 12px;
    font-weight: 650;
    gap: 8px;
    justify-content: center;
    list-style: none;
    padding: 5px 0 0;
}

.tr-payout-method-form summary::-webkit-details-marker {
    display: none;
}

.tr-payout-method-form form {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 11px;
    padding-top: 12px;
}

.tr-payout-method-form input {
    min-height: 38px;
}

.tr-payout-method-form button {
    align-self: stretch;
}

.tr-payout-summary-card dl {
    display: grid;
    gap: 0;
    margin: 0;
}

.tr-payout-summary-card dl div {
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    display: flex;
    gap: 14px;
    justify-content: space-between;
    min-height: 37px;
}

.tr-payout-summary-card dt {
    color: rgba(255, 255, 255, 0.78);
    font-size: 12px;
    font-weight: 450;
}

.tr-payout-summary-card dd {
    color: #ffffff;
    font-size: 12px;
    font-weight: 650;
    margin: 0;
}

.tr-payout-summary-card dd.is-warning {
    color: #f2a900;
}

.tr-payout-summary-card dd.is-success {
    color: #67d57d;
}

.tr-payout-summary-card dd.is-danger {
    color: #ff594d;
}

.tr-payout-status-card div {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tr-payout-status-card div span {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 10.5px;
    padding: 6px 9px;
}

@media (max-width: 1560px) {
    .tr-payout-shell {
        grid-template-columns: minmax(0, 1fr) minmax(292px, 316px);
    }

    .tr-payout-kpis {
        grid-template-columns: repeat(5, minmax(136px, 1fr));
    }

    .tr-payout-kpi {
        padding: 15px 13px;
    }

    .tr-payout-filter-form label {
        min-width: 122px;
    }
}

@media (max-width: 1399px) {
    .tr-payout-shell {
        grid-template-columns: minmax(0, 1fr);
    }

    .tr-payout-sidebar {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tr-payout-weather {
        grid-column: 1 / -1;
    }

    .tr-payout-kpis {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 1180px) {
    .tr-payout-table-top {
        align-items: stretch;
        flex-direction: column;
        gap: 12px;
    }

    .tr-payout-filter-form {
        flex-wrap: wrap;
    }

    .tr-order-filter-panel {
        width: 100%;
    }

    .tr-order-filter-panel summary {
        justify-content: center;
        width: 100%;
    }

    .tr-order-filter-panel .tr-order-filter-form {
        margin-top: 10px;
        min-width: 0;
        position: static;
        width: 100%;
    }

    .tr-payout-filter-form label {
        flex: 1 1 140px;
    }

    .tr-payout-help-card {
        grid-template-columns: 52px minmax(0, 1fr);
    }

    .tr-payout-help-card a {
        grid-column: span 1;
    }

    .tr-payout-withdrawal form {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tr-payout-withdrawal button {
        align-self: stretch;
    }
}

@media (max-width: 860px) {
    .tr-payout-page {
        padding: 16px 12px 26px;
    }

    .tr-payout-header {
        align-items: flex-start;
        gap: 12px;
    }

    .tr-payout-header h1 {
        font-size: 30px;
    }

    .tr-payout-kpis,
    .tr-payout-sidebar,
    .tr-payout-weather,
    .tr-payout-withdrawal form {
        grid-template-columns: minmax(0, 1fr);
    }

    .tr-payout-table-card {
        border-radius: 9px;
    }

    .tr-payout-table-top {
        padding: 12px 14px;
    }

    .tr-payout-tabs {
        gap: 18px;
    }

    .tr-payout-filter-form button,
    .tr-payout-filter-form a {
        flex: 1 1 130px;
        justify-content: center;
    }

    .tr-payout-table-footer {
        align-items: stretch;
        flex-direction: column;
        min-height: 0;
        padding: 14px;
    }

    .tr-payout-pagination {
        flex-wrap: wrap;
    }

    .tr-payout-help-card {
        align-items: stretch;
        grid-template-columns: minmax(0, 1fr);
    }

    .tr-payout-help-card > span {
        height: 48px;
        width: 48px;
    }

    .tr-order-page .tr-payout-table-scroll {
        display: none;
    }

    .tr-order-page .tr-order-card-grid {
        display: grid;
        gap: 12px;
        padding: 14px;
    }
}

.tr-order-page .tr-payout-kpis {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.tr-order-page .tr-payout-kpi {
    background: rgba(241, 238, 219, 0.96);
    border-color: rgba(17, 23, 15, 0.1);
    color: var(--tr-payout-ink);
    container-type: inline-size;
    grid-column: span 2;
    grid-template-columns: 42px minmax(0, 1fr);
    min-height: 148px;
    overflow: visible;
    padding: 18px 16px;
}

.tr-order-page .tr-payout-kpi:nth-child(-n+2) {
    grid-column: span 3;
}

.tr-order-page .tr-payout-kpi-icon {
    align-items: center;
    background: rgba(47, 112, 48, 0.13);
    color: #2f7030;
    display: inline-flex;
    flex: 0 0 42px;
    font-size: 22px;
    height: 42px;
    justify-content: center;
    line-height: 1;
    width: 42px;
}

.tr-order-page .tr-payout-kpi-icon.is-warning {
    background: rgba(242, 169, 0, 0.16);
    color: #a16a00;
}

.tr-order-page .tr-payout-kpi-icon.is-success {
    background: rgba(47, 112, 48, 0.13);
    color: #2f7030;
}

.tr-order-page .tr-payout-kpi-icon em,
.tr-order-page .tr-payout-kpi-icon em::before {
    align-items: center;
    color: currentColor !important;
    display: inline-flex;
    height: 1em;
    justify-content: center;
    line-height: 1 !important;
    opacity: 1 !important;
    text-align: center;
    width: 1em;
    -webkit-text-fill-color: currentColor !important;
}

.tr-order-page .tr-payout-kpi > div {
    min-width: 0;
}

.tr-order-page .tr-payout-kpi div > span,
.tr-order-page .tr-payout-kpi small {
    color: rgba(17, 23, 15, 0.68);
}

.tr-order-page .tr-payout-kpi strong {
    color: var(--tr-payout-ink);
    font-size: clamp(26px, 2.2vw, 35px);
    font-weight: 650;
    line-height: 1.04;
    overflow-wrap: anywhere;
    white-space: normal;
}

@supports (font-size: 1cqi) {
    .tr-order-page .tr-payout-kpi strong {
        font-size: clamp(22px, 9cqi, 35px);
    }
}

.tr-order-page .tr-payout-kpi a {
    color: #2f7030;
}

.tr-order-page .tr-payout-summary-card,
.tr-order-page .tr-payout-method-card {
    background: rgba(241, 238, 219, 0.97);
    border-color: rgba(17, 23, 15, 0.1);
    color: var(--tr-payout-ink);
}

.tr-order-page .tr-payout-summary-card h2,
.tr-order-page .tr-payout-method-card h2,
.tr-order-page .tr-payout-method-list strong,
.tr-order-page .tr-payout-summary-card dd {
    color: var(--tr-payout-ink);
}

.tr-order-page .tr-payout-summary-card dd {
    overflow-wrap: anywhere;
    text-align: right;
}

.tr-order-page .tr-payout-summary-card dd.is-success {
    color: #238b43;
}

.tr-order-page .tr-payout-summary-card dd.is-warning {
    color: #a16a00;
}

.tr-order-page .tr-payout-summary-card header span,
.tr-order-page .tr-payout-method-card header a {
    color: #2f7030;
}

.tr-order-page .tr-payout-summary-card dt,
.tr-order-page .tr-payout-method-list small,
.tr-order-page .tr-payout-method-list p {
    color: rgba(17, 23, 15, 0.62);
}

.tr-order-page .tr-payout-summary-card dl div,
.tr-order-page .tr-payout-method-list article {
    border-bottom-color: rgba(17, 23, 15, 0.1);
}

.tr-order-page .tr-payout-method-list em {
    background: rgba(47, 112, 48, 0.12);
    color: #2f7030;
}

.tr-order-page .tr-order-table {
    min-width: 760px;
}

.tr-order-identity {
    align-items: center;
    display: flex !important;
    gap: 11px;
    min-width: 0;
}

.tr-order-identity img {
    border-radius: 8px;
    display: block;
    flex: 0 0 40px;
    height: 40px;
    object-fit: cover;
    width: 40px;
}

.tr-order-identity > span {
    display: grid !important;
    gap: 4px;
    min-width: 0;
}

.tr-order-identity strong {
    color: #ffffff;
    display: block;
    font-weight: 620;
    line-height: 1.2;
    max-width: 270px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tr-order-identity small {
    color: rgba(255, 255, 255, 0.68);
    display: block;
    font-size: 11px;
    line-height: 1.25;
    max-width: 270px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tr-order-status-stack {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

@media (max-width: 860px) {
    .tr-order-page .tr-payout-kpis {
        grid-template-columns: minmax(0, 1fr);
    }

    .tr-order-page .tr-payout-kpi,
    .tr-order-page .tr-payout-kpi:nth-child(-n+2) {
        grid-column: auto;
    }
}

.tr-discover-page {
    --tr-discover-panel: rgba(247, 246, 225, 0.86);
    --tr-discover-panel-strong: rgba(247, 246, 225, 0.95);
    --tr-discover-dark-panel: rgba(44, 75, 31, 0.86);
    --tr-discover-border: rgba(255, 255, 255, 0.2);
    --tr-discover-lime: #dff21e;
    --tr-discover-ink: #11170f;
    --tr-discover-muted: rgba(17, 23, 15, 0.66);
    color: #ffffff;
    min-height: 100vh;
    overflow-x: clip;
    overflow-y: visible;
    padding: 22px clamp(18px, 1.7vw, 28px) 26px;
    position: relative;
}

.tr-discover-page :where(h1, h2, h3, p, a, button, input, select, span, strong, small):not(.icon):not(.ni) {
    font-family: var(--transroc-font-family) !important;
    letter-spacing: 0;
}

.tr-discover-page::before {
    background:
        radial-gradient(ellipse at 53% 5%, transparent 0 10%, rgba(255, 255, 255, 0.15) 10.5%, transparent 11%),
        radial-gradient(ellipse at 53% 5%, transparent 0 16%, rgba(255, 255, 255, 0.09) 16.5%, transparent 17%),
        linear-gradient(90deg, rgba(4, 23, 2, 0.75), rgba(18, 48, 9, 0.36) 48%, rgba(5, 22, 3, 0.78)),
        linear-gradient(180deg, rgba(18, 38, 9, 0.18), rgba(4, 16, 3, 0.34));
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
    z-index: 1;
}

.tr-discover-bg {
    height: 100%;
    inset: 0;
    object-fit: cover;
    object-position: center;
    pointer-events: none;
    position: absolute;
    width: 100%;
    z-index: 0;
}

.tr-discover-page > *:not(.tr-discover-bg) {
    position: relative;
    z-index: 2;
}

.tr-discover-alert {
    margin: 0 0 14px;
}

.tr-discover-layout {
    display: grid;
    gap: 22px;
    grid-template-columns: minmax(0, 1fr) minmax(312px, 326px);
    min-height: calc(100vh - 50px);
}

.tr-discover-primary,
.tr-discover-sidebar-panel {
    min-width: 0;
}

.tr-discover-primary {
    display: grid;
    align-content: start;
    gap: 14px;
    grid-template-rows: auto auto auto 1fr auto;
}

.tr-discover-header {
    align-items: center;
    display: flex;
    justify-content: space-between;
    min-height: 66px;
}

.tr-discover-title-group {
    align-items: center;
    display: flex;
    gap: 16px;
    min-width: 0;
}

.tr-discover-back {
    align-items: center;
    background: rgba(247, 246, 225, 0.95);
    border-radius: 50%;
    box-shadow: 0 16px 36px rgba(11, 29, 11, 0.18);
    color: #11170f;
    display: inline-flex;
    flex: 0 0 auto;
    font-size: 23px;
    height: 48px;
    justify-content: center;
    width: 48px;
}

.tr-discover-back:hover {
    background: var(--tr-discover-lime);
    color: #11170f;
}

.tr-discover-title-group h1 {
    color: #ffffff;
    font-size: clamp(28px, 2.05vw, 34px);
    font-weight: 600;
    line-height: 1.02;
    margin: 0;
}

.tr-discover-title-group p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 470;
    line-height: 1.35;
    margin: 7px 0 0;
}

.tr-discover-filterbar {
    align-items: center;
    display: grid;
    gap: 14px;
    grid-template-columns: minmax(280px, 365px) 174px 156px 94px;
    min-width: 0;
}

.tr-discover-search,
.tr-discover-select,
.tr-discover-filter-button,
.tr-discover-sort {
    align-items: center;
    backdrop-filter: blur(12px);
    background: rgba(35, 62, 25, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    box-shadow: 0 16px 34px rgba(8, 24, 6, 0.17);
    color: #ffffff;
    display: flex;
    min-height: 54px;
    min-width: 0;
}

.tr-discover-search {
    gap: 13px;
    padding: 0 18px;
}

.tr-discover-search em {
    color: rgba(255, 255, 255, 0.86);
    flex: 0 0 auto;
    font-size: 24px;
}

.tr-discover-search input,
.tr-discover-select select,
.tr-discover-sort select {
    appearance: none;
    background: transparent;
    border: 0;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    min-width: 0;
    outline: 0;
    width: 100%;
}

.tr-discover-search input::placeholder {
    color: rgba(255, 255, 255, 0.78);
}

.tr-discover-select {
    padding: 0 15px;
    position: relative;
}

.tr-discover-select select,
.tr-discover-sort select {
    cursor: pointer;
    padding-right: 24px;
}

.tr-discover-select option,
.tr-discover-sort option {
    color: #17211b;
}

.tr-discover-select > em,
.tr-discover-sort > em {
    color: rgba(255, 255, 255, 0.86);
    flex: 0 0 auto;
    font-size: 18px;
    margin-left: -18px;
    pointer-events: none;
}

.tr-discover-filter-button {
    border: 0;
    cursor: pointer;
    font-family: inherit;
    gap: 10px;
    justify-content: center;
    padding: 0 14px;
}

.tr-discover-filter-button em {
    font-size: 19px;
}

.tr-discover-filter-button span {
    font-size: 13px;
    font-weight: 550;
}

.tr-discover-tabs-row {
    align-items: center;
    display: flex;
    gap: 14px;
    justify-content: space-between;
    min-width: 0;
}

.tr-discover-tabs {
    display: flex;
    flex: 1 1 auto;
    gap: 10px;
    min-width: 0;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
}

.tr-discover-tabs::-webkit-scrollbar {
    display: none;
}

.tr-discover-tabs button,
.tr-discover-sort {
    flex: 0 0 auto;
}

.tr-discover-tabs button {
    align-items: center;
    background: rgba(49, 78, 36, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    color: #ffffff;
    cursor: pointer;
    display: inline-flex;
    font-family: inherit;
    gap: 8px;
    min-height: 40px;
    padding: 0 13px;
}

.tr-discover-tabs button.is-active {
    background: var(--tr-discover-lime);
    border-color: var(--tr-discover-lime);
    color: #15200f;
}

.tr-discover-tabs em {
    font-size: 18px;
}

.tr-discover-tabs span {
    font-size: 12px;
    font-weight: 560;
    white-space: nowrap;
}

.tr-discover-sort {
    gap: 8px;
    min-height: 44px;
    padding: 0 15px;
}

.tr-discover-sort > span {
    color: rgba(255, 255, 255, 0.86);
    flex: 0 0 auto;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
}

.tr-discover-sort select {
    font-size: 12px;
    width: 82px;
}

.tr-discover-card-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-content: start;
    min-width: 0;
}

.tr-discover-grid-shell {
    min-width: 0;
}

.tr-discover-preloader {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    min-width: 0;
}

.tr-discover-preloader[hidden] {
    display: none;
}

.tr-discover-card-skeleton {
    background: rgba(247, 246, 225, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 18px;
    box-shadow: 0 22px 45px rgba(9, 26, 6, 0.18);
    display: grid;
    min-height: 300px;
    overflow: hidden;
}

.tr-discover-card-skeleton span,
.tr-discover-card-skeleton i {
    animation: trDiscoverSkeletonPulse 1.2s ease-in-out infinite;
    background: linear-gradient(90deg, rgba(247, 246, 225, 0.22), rgba(247, 246, 225, 0.58), rgba(247, 246, 225, 0.22));
    background-size: 220% 100%;
    display: block;
}

.tr-discover-card-skeleton > span {
    height: 116px;
}

.tr-discover-card-skeleton > div {
    background: linear-gradient(135deg, rgba(247, 246, 225, 0.7), rgba(226, 230, 200, 0.58));
    border-radius: 18px 18px 0 0;
    display: grid;
    gap: 15px;
    margin-top: -16px;
    padding: 22px 16px 16px;
}

.tr-discover-card-skeleton i {
    border-radius: 999px;
    height: 14px;
}

.tr-discover-card-skeleton i:nth-child(1) {
    width: 74%;
}

.tr-discover-card-skeleton i:nth-child(2) {
    height: 24px;
    width: 88%;
}

.tr-discover-card-skeleton i:nth-child(3) {
    width: 64%;
}

.tr-discover-card-skeleton i:nth-child(4) {
    width: 78%;
}

@keyframes trDiscoverSkeletonPulse {
    0% {
        background-position: 100% 0;
    }
    100% {
        background-position: -100% 0;
    }
}

.tr-discover-commodity-card {
    background: rgba(247, 246, 225, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 18px;
    box-shadow: 0 22px 45px rgba(9, 26, 6, 0.22);
    color: var(--tr-discover-ink);
    display: flex;
    flex-direction: column;
    min-height: 300px;
    min-width: 0;
    overflow: hidden;
}

.tr-discover-card-media {
    background: linear-gradient(135deg, rgba(22, 55, 14, 0.55), rgba(231, 218, 160, 0.3));
    align-items: center;
    display: flex;
    flex: 0 0 auto;
    height: 116px;
    justify-content: center;
    overflow: hidden;
    padding: 0;
    position: relative;
}

.tr-discover-card-media::after {
    background:
        linear-gradient(180deg, rgba(4, 20, 4, 0.04), rgba(4, 20, 4, 0.16)),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 42%, rgba(4, 20, 4, 0.08));
    content: "";
    inset: 0;
    position: absolute;
}

.tr-discover-card-media img {
    display: block;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: relative;
    width: 100%;
    z-index: 1;
}

.tr-discover-card-body {
    background: linear-gradient(135deg, rgba(247, 246, 225, 0.76), rgba(226, 230, 200, 0.64));
    border-radius: 18px 18px 0 0;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.48),
        0 -12px 24px rgba(12, 31, 8, 0.08);
    backdrop-filter: blur(10px);
    display: grid;
    flex: 1 1 auto;
    gap: 9px;
    margin-top: -16px;
    padding: 18px 16px 14px;
    position: relative;
    z-index: 2;
}

.tr-discover-card-title {
    align-items: center;
    display: flex;
    gap: 6px;
    justify-content: space-between;
    min-width: 0;
}

.tr-discover-card-title h2 {
    color: #12170f;
    flex: 1 1 auto;
    font-size: 16px;
    font-weight: 560;
    line-height: 1.08;
    margin: 0;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tr-discover-card-title span {
    background: rgba(180, 211, 99, 0.82);
    border-radius: 7px;
    color: #38531c;
    flex: 0 0 auto;
    font-size: 9px;
    font-weight: 650;
    line-height: 1;
    max-width: 96px;
    overflow: hidden;
    padding: 5px 7px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tr-discover-price {
    align-items: baseline;
    display: flex;
    gap: 6px;
    min-width: 0;
}

.tr-discover-price strong {
    color: #10140e;
    display: block;
    font-size: clamp(19px, 1.34vw, 24px);
    font-weight: 590;
    line-height: 1.05;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tr-discover-price span {
    color: rgba(18, 20, 14, 0.86);
    flex: 0 0 auto;
    font-size: 13px;
    font-weight: 540;
}

.tr-discover-trend-row {
    align-items: center;
    display: grid;
    gap: 8px;
    grid-template-columns: minmax(66px, auto) minmax(74px, 1fr);
    min-width: 0;
}

.tr-discover-trend {
    align-items: center;
    display: inline-flex;
    font-size: 13px;
    font-weight: 620;
    gap: 5px;
    line-height: 1;
    white-space: nowrap;
}

.tr-discover-trend.is-up {
    color: #2d8c32;
}

.tr-discover-trend.is-down {
    color: #b9362b;
}

.tr-discover-trend em {
    font-size: 15px;
}

.tr-discover-spark {
    display: block;
    height: 28px;
    justify-self: end;
    max-width: 104px;
    width: 100%;
}

.tr-discover-spark path {
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2.1;
}

.tr-discover-spark.is-up path {
    stroke: #469d38;
}

.tr-discover-spark.is-down path {
    stroke: #d24638;
}

.tr-discover-demand {
    color: #11170f;
    font-size: 12px;
    font-weight: 520;
    line-height: 1.2;
    margin: -1px 0 0;
}

.tr-discover-card-footer {
    align-items: end;
    border-top: 1px solid rgba(17, 23, 15, 0.09);
    display: flex;
    justify-content: space-between;
    margin-top: 1px;
    min-width: 0;
    padding-top: 8px;
}

.tr-discover-card-footer > span {
    display: grid;
    gap: 1px;
    min-width: 0;
}

.tr-discover-card-footer small {
    color: rgba(17, 23, 15, 0.64);
    font-size: 11px;
    font-weight: 520;
    line-height: 1.05;
}

.tr-discover-card-footer strong {
    color: #152010;
    font-size: 12px;
    font-weight: 540;
    line-height: 1.12;
    overflow-wrap: anywhere;
}

.tr-discover-card-footer a {
    align-items: center;
    background: var(--tr-discover-lime);
    border-radius: 50%;
    color: #15200f;
    display: inline-flex;
    flex: 0 0 auto;
    font-size: 17px;
    height: 36px;
    justify-content: center;
    width: 36px;
}

.tr-discover-card-footer a[aria-disabled="true"] {
    opacity: 0.7;
    pointer-events: none;
}

.tr-discover-generated-art {
    display: block;
    height: 100%;
    width: 100%;
}

.tr-discover-generated-art.is-cashew-nuts {
    background:
        radial-gradient(ellipse 30px 20px at 20% 34%, #e8d0a6 0 58%, #b98a52 59% 63%, transparent 64%),
        radial-gradient(ellipse 32px 21px at 38% 53%, #ead4aa 0 58%, #bd925a 59% 63%, transparent 64%),
        radial-gradient(ellipse 28px 19px at 59% 30%, #f0dcb5 0 58%, #c59b60 59% 63%, transparent 64%),
        radial-gradient(ellipse 30px 20px at 78% 55%, #e7c99b 0 58%, #b9874f 59% 63%, transparent 64%),
        linear-gradient(135deg, #866835, #dac083 58%, #6f532d);
    background-size: auto;
}

.tr-discover-generated-art.is-gold {
    background:
        linear-gradient(158deg, transparent 0 18%, rgba(255, 255, 255, 0.54) 19% 21%, transparent 22%),
        linear-gradient(14deg, #805d0a 0 16%, #f5c63e 17% 33%, #a77a11 34% 36%, transparent 37%),
        linear-gradient(14deg, transparent 0 22%, #a67a14 23% 42%, #ffd858 43% 58%, #8f690e 59% 61%, transparent 62%),
        linear-gradient(14deg, transparent 0 38%, #906a0f 39% 56%, #efba32 57% 74%, #73520a 75% 77%, transparent 78%),
        linear-gradient(135deg, #5c4611, #e2b532 56%, #42300a);
}

.tr-discover-empty {
    align-content: center;
    background: rgba(35, 62, 25, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    display: grid;
    justify-items: center;
    min-height: 380px;
    padding: 34px;
    text-align: center;
}

.tr-discover-empty > em {
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: inline-flex;
    font-size: 28px;
    height: 56px;
    justify-content: center;
    margin-bottom: 14px;
    width: 56px;
}

.tr-discover-empty h2 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 560;
    margin: 0 0 8px;
}

.tr-discover-empty p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    margin: 0 0 18px;
}

.tr-discover-empty a,
.tr-discover-empty button {
    background: var(--tr-discover-lime);
    border: 0;
    border-radius: 999px;
    color: #15200f;
    cursor: pointer;
    font-family: inherit;
    font-size: 13px;
    font-weight: 650;
    padding: 11px 18px;
}

.tr-discover-request-card {
    align-items: center;
    background: rgba(49, 78, 36, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 16px;
    box-shadow: 0 22px 45px rgba(9, 26, 6, 0.2);
    display: grid;
    gap: 16px;
    grid-template-columns: 56px minmax(0, 1fr) minmax(190px, 240px);
    min-height: 76px;
    padding: 14px 18px;
}

.tr-discover-request-icon {
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    display: inline-flex;
    font-size: 28px;
    height: 56px;
    justify-content: center;
    width: 56px;
}

.tr-discover-request-card h2 {
    color: #ffffff;
    font-size: 15px;
    font-weight: 560;
    line-height: 1.2;
    margin: 0 0 4px;
}

.tr-discover-request-card p {
    color: rgba(255, 255, 255, 0.76);
    font-size: 12px;
    font-weight: 430;
    line-height: 1.35;
    margin: 0;
}

.tr-discover-request-card a {
    align-items: center;
    align-self: stretch;
    background: var(--tr-discover-lime);
    border-radius: 11px;
    color: #15200f;
    display: inline-flex;
    font-size: 13px;
    font-weight: 650;
    gap: 14px;
    justify-content: center;
    padding: 0 18px;
}

.tr-discover-request-card a em {
    font-size: 22px;
}

.tr-discover-sidebar-panel {
    display: grid;
    gap: 16px;
    align-content: start;
    grid-template-rows: auto auto auto;
    margin-top: -15px;
}

.tr-discover-ai-card,
.tr-discover-highlights-card,
.tr-discover-coming-card {
    background: var(--tr-discover-dark-panel);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    box-shadow: 0 24px 50px rgba(8, 24, 6, 0.28);
    color: #ffffff;
    min-width: 0;
}

.tr-discover-ai-card {
    display: grid;
    gap: 12px;
    padding: 18px 20px 14px;
}

.tr-discover-ai-card header,
.tr-discover-highlights-card header {
    align-items: center;
    display: flex;
    justify-content: space-between;
    gap: 14px;
}

.tr-discover-ai-card header > div {
    align-items: center;
    display: flex;
    gap: 13px;
    min-width: 0;
}

.tr-discover-ai-card header em,
.tr-discover-ai-card header .tr-purchase-svg-icon {
    font-size: 28px;
}

.tr-discover-ai-card h2,
.tr-discover-highlights-card h2 {
    color: #ffffff;
    font-size: 17px;
    font-weight: 560;
    line-height: 1.15;
    margin: 0;
}

.tr-discover-ai-card header button {
    align-items: center;
    background: transparent;
    border: 0;
    color: rgba(255, 255, 255, 0.88);
    cursor: pointer;
    display: inline-flex;
    font-size: 18px;
    height: 32px;
    justify-content: center;
    padding: 0;
    width: 32px;
}

.tr-discover-ai-intro h3 {
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.25;
    margin: 0 0 6px;
}

.tr-discover-ai-intro p {
    color: rgba(255, 255, 255, 0.84);
    font-size: 12.5px;
    font-weight: 420;
    line-height: 1.35;
    margin: 0;
    max-width: 260px;
}

.tr-discover-ai-prompts {
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    display: grid;
    gap: 8px;
    padding-top: 1px;
}

.tr-discover-ai-prompts button {
    align-items: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    display: flex;
    font-family: inherit;
    font-size: 11.5px;
    font-weight: 430;
    gap: 10px;
    justify-content: space-between;
    min-height: 36px;
    min-width: 0;
    padding: 7px 11px;
    text-align: left;
}

.tr-discover-ai-prompts button:hover,
.tr-discover-ai-card header button:hover {
    background: rgba(255, 255, 255, 0.1);
}

.tr-discover-ai-prompts span {
    min-width: 0;
    overflow-wrap: anywhere;
}

.tr-discover-ai-prompts em,
.tr-discover-ai-prompts .tr-purchase-svg-icon {
    flex: 0 0 auto;
    font-size: 18px;
}

.tr-discover-ai-input {
    align-items: center;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 12px;
    display: grid;
    gap: 10px;
    grid-template-columns: minmax(0, 1fr) 40px;
    padding: 7px;
}

.tr-discover-ai-input input {
    background: transparent;
    border: 0;
    color: #ffffff;
    font-size: 12px;
    font-weight: 430;
    min-width: 0;
    outline: 0;
    padding: 0 8px;
}

.tr-discover-ai-input input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.tr-discover-ai-input button,
.tr-discover-coming-card a {
    align-items: center;
    background: var(--tr-discover-lime);
    border: 0;
    border-radius: 50%;
    color: #15200f;
    display: inline-flex;
    font-size: 19px;
    height: 40px;
    justify-content: center;
    width: 40px;
}

.tr-discover-highlights-card {
    display: grid;
    gap: 15px;
    min-height: 251px;
    padding: 20px;
}

.tr-discover-highlights-card header a {
    align-items: center;
    color: var(--tr-discover-lime);
    display: inline-flex;
    flex: 0 0 auto;
    font-size: 11px;
    font-weight: 500;
    gap: 7px;
    white-space: nowrap;
}

.tr-discover-highlight-list {
    display: grid;
    gap: 12px;
}

.tr-discover-highlight-list article {
    align-items: start;
    display: grid;
    gap: 11px;
    grid-template-columns: 30px minmax(0, 1fr);
}

.tr-discover-highlight-list article > span {
    align-items: center;
    background: rgba(223, 242, 30, 0.12);
    border-radius: 9px;
    color: var(--tr-discover-lime);
    display: inline-flex;
    font-size: 17px;
    height: 30px;
    justify-content: center;
    width: 30px;
}

.tr-discover-highlight-list strong,
.tr-discover-highlight-list small {
    display: block;
}

.tr-discover-highlight-list strong {
    color: #ffffff;
    font-size: 11.5px;
    font-weight: 560;
    line-height: 1.2;
}

.tr-discover-highlight-list small {
    color: rgba(255, 255, 255, 0.68);
    font-size: 10.5px;
    font-weight: 420;
    line-height: 1.25;
    margin-top: 2px;
}

.tr-discover-coming-card {
    align-items: center;
    display: grid;
    gap: 15px;
    grid-template-columns: 86px minmax(0, 1fr) 40px;
    min-height: 132px;
    overflow: hidden;
    padding: 17px 17px 17px 20px;
}

.tr-discover-coming-card img {
    display: block;
    border-radius: 12px;
    height: 86px;
    object-fit: cover;
    object-position: 39% center;
    width: 86px;
}

.tr-discover-coming-card h2 {
    color: #ffffff;
    font-size: 15px;
    font-weight: 560;
    line-height: 1.12;
    margin: 0 0 8px;
}

.tr-discover-coming-card p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 12px;
    font-weight: 430;
    line-height: 1.25;
    margin: 0;
}

@media (max-width: 1560px) {
    .tr-discover-layout {
        grid-template-columns: minmax(0, 1fr) minmax(312px, 326px);
    }

    .tr-discover-filterbar {
        grid-template-columns: minmax(260px, 365px) 174px 156px 94px;
    }

    .tr-discover-card-grid {
        gap: 12px;
    }

    .tr-discover-preloader {
        gap: 12px;
    }

    .tr-discover-card-title h2 {
        font-size: 16px;
    }
}

@media (max-width: 1399px) {
    .tr-discover-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .tr-discover-sidebar-panel {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        grid-template-rows: auto;
        margin-top: 0;
    }
}

@media (max-width: 1199.98px) {
    .tr-discover-page {
        padding-top: 88px;
    }

    .tr-discover-sidebar-panel {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 1040px) {
    .tr-discover-filterbar {
        grid-template-columns: 1fr 1fr;
    }

    .tr-discover-filter-button {
        justify-content: center;
    }

    .tr-discover-tabs-row {
        align-items: stretch;
        flex-direction: column;
    }

    .tr-discover-sort {
        align-self: flex-start;
    }

    .tr-discover-card-grid,
    .tr-discover-preloader {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .tr-discover-page {
        padding-left: 14px;
        padding-right: 14px;
    }

    .tr-discover-header {
        min-height: 64px;
    }

    .tr-discover-title-group {
        gap: 12px;
    }

    .tr-discover-title-group h1 {
        font-size: 25px;
    }

    .tr-discover-title-group p {
        font-size: 12px;
    }

    .tr-discover-back {
        height: 42px;
        width: 42px;
    }

    .tr-discover-filterbar,
    .tr-discover-card-grid,
    .tr-discover-preloader,
    .tr-discover-request-card {
        grid-template-columns: 1fr;
    }

    .tr-discover-request-card a {
        min-height: 48px;
    }

}

.tr-commodity-detail-page {
    --tr-detail-panel: rgba(43, 73, 31, 0.88);
    --tr-detail-panel-soft: rgba(247, 246, 225, 0.94);
    --tr-detail-border: rgba(255, 255, 255, 0.15);
    --tr-detail-lime: #dff21e;
    --tr-detail-ink: #11170f;
    --tr-discover-dark-panel: var(--tr-detail-panel);
    --tr-discover-lime: var(--tr-detail-lime);
    color: #ffffff;
    min-height: 100vh;
    overflow-x: clip;
    overflow-y: visible;
    padding: 22px clamp(18px, 1.7vw, 28px) 26px;
    position: relative;
}

.tr-commodity-detail-page :where(h1, h2, h3, p, a, button, input, select, span, strong, small, dt, dd, li):not(.icon):not(.ni) {
    font-family: var(--transroc-font-family) !important;
    letter-spacing: 0;
}

.tr-commodity-detail-page::before {
    background:
        radial-gradient(ellipse at 54% 7%, transparent 0 10%, rgba(255, 255, 255, 0.13) 10.5%, transparent 11%),
        radial-gradient(ellipse at 54% 7%, transparent 0 16%, rgba(255, 255, 255, 0.08) 16.5%, transparent 17%),
        linear-gradient(90deg, rgba(4, 23, 2, 0.78), rgba(18, 48, 9, 0.34) 48%, rgba(5, 22, 3, 0.8)),
        linear-gradient(180deg, rgba(18, 38, 9, 0.13), rgba(4, 16, 3, 0.36));
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
    z-index: 1;
}

.tr-commodity-detail-bg {
    height: 100%;
    inset: 0;
    object-fit: cover;
    object-position: center;
    pointer-events: none;
    position: absolute;
    width: 100%;
    z-index: 0;
}

.tr-commodity-detail-page > *:not(.tr-commodity-detail-bg) {
    position: relative;
    z-index: 2;
}

.tr-commodity-detail-layout {
    display: grid;
    gap: 22px;
    grid-template-columns: minmax(0, 1fr) minmax(312px, 326px);
    min-height: calc(100vh - 50px);
}

.tr-commodity-detail-main,
.tr-commodity-detail-sidebar {
    min-width: 0;
}

.tr-commodity-detail-main {
    align-content: start;
    display: grid;
    gap: 16px;
}

.tr-commodity-hero {
    min-height: 225px;
    position: relative;
}

.tr-commodity-crumbs {
    align-items: center;
    color: rgba(255, 255, 255, 0.84);
    display: flex;
    gap: 12px;
    min-height: 54px;
    min-width: 0;
}

.tr-commodity-crumbs a:not(.tr-discover-back),
.tr-commodity-crumbs span {
    color: #ffffff;
    font-size: 13px;
    font-weight: 520;
    line-height: 1.2;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tr-commodity-crumbs em:not(.tr-discover-back em) {
    color: rgba(255, 255, 255, 0.8);
    flex: 0 0 auto;
}

.tr-commodity-hero-content {
    align-items: center;
    display: grid;
    gap: 28px;
    grid-template-columns: 154px minmax(0, 1fr);
    padding: 12px 130px 10px 0;
}

.tr-commodity-hero-image {
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 22px;
    box-shadow: 0 24px 48px rgba(4, 18, 4, 0.34);
    height: 154px;
    margin: 0;
    overflow: hidden;
    width: 154px;
}

.tr-commodity-hero-image img {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.tr-commodity-hero-copy {
    display: grid;
    gap: 12px;
    min-width: 0;
}

.tr-commodity-title-line {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    min-width: 0;
}

.tr-commodity-title-line h1 {
    color: #ffffff;
    font-size: clamp(36px, 3vw, 49px);
    font-weight: 590;
    line-height: 0.98;
    margin: 0;
}

.tr-commodity-title-line > span {
    background: rgba(223, 242, 30, 0.18);
    border: 1px solid rgba(223, 242, 30, 0.42);
    border-radius: 999px;
    color: var(--tr-detail-lime);
    font-size: 12px;
    font-weight: 650;
    padding: 6px 12px;
}

.tr-commodity-hero-copy p {
    color: rgba(255, 255, 255, 0.92);
    font-size: 14px;
    font-weight: 430;
    line-height: 1.45;
    margin: 0;
    max-width: 600px;
}

.tr-commodity-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tr-commodity-badges span {
    align-items: center;
    background: rgba(38, 68, 28, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    color: #ffffff;
    display: inline-flex;
    font-size: 12px;
    font-weight: 550;
    gap: 7px;
    min-height: 31px;
    padding: 0 12px;
}

.tr-commodity-badges em {
    color: var(--tr-detail-lime);
    font-size: 16px;
}

.tr-commodity-market-row {
    display: grid;
    gap: 16px;
    grid-template-columns: minmax(360px, 0.46fr) minmax(0, 0.54fr);
}

.tr-commodity-price-card,
.tr-commodity-chart-card,
.tr-commodity-tabs-card,
.tr-commodity-quote-card,
.tr-commodity-invest-card {
    backdrop-filter: blur(12px);
    border: 1px solid var(--tr-detail-border);
    box-shadow: 0 24px 50px rgba(8, 24, 6, 0.25);
    min-width: 0;
}

.tr-commodity-price-card {
    background: var(--tr-detail-panel-soft);
    border-radius: 16px;
    color: var(--tr-detail-ink);
    display: grid;
    gap: 18px;
    padding: 22px 22px 17px;
}

.tr-commodity-price-head {
    align-items: center;
    color: rgba(17, 23, 15, 0.67);
    display: flex;
    font-size: 12px;
    font-weight: 520;
    justify-content: space-between;
}

.tr-commodity-price-main {
    align-items: baseline;
    display: grid;
    gap: 7px;
    grid-template-columns: minmax(0, auto) auto minmax(96px, 1fr);
}

.tr-commodity-price-main > strong {
    color: #10140e;
    font-size: clamp(32px, 2.55vw, 45px);
    font-weight: 590;
    line-height: 1;
    min-width: 0;
}

.tr-commodity-price-main > span {
    color: #10140e;
    font-size: 16px;
    font-weight: 550;
}

.tr-commodity-change {
    align-self: center;
    display: grid;
    justify-items: end;
}

.tr-commodity-change strong {
    align-items: center;
    display: inline-flex;
    font-size: 20px;
    font-weight: 590;
    gap: 6px;
}

.tr-commodity-change small {
    color: rgba(17, 23, 15, 0.74);
    font-size: 11px;
    font-weight: 500;
    margin-top: 4px;
}

.tr-commodity-change.is-up strong {
    color: #2b9232;
}

.tr-commodity-change.is-down strong {
    color: #c83b2d;
}

.tr-commodity-stat-strip {
    border-top: 1px solid rgba(17, 23, 15, 0.11);
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    margin: 0;
    padding-top: 16px;
}

.tr-commodity-stat-strip div {
    border-left: 1px solid rgba(17, 23, 15, 0.09);
    display: grid;
    gap: 6px;
    min-width: 0;
    padding-left: 8px;
}

.tr-commodity-stat-strip div:first-child {
    border-left: 0;
    padding-left: 0;
}

.tr-commodity-stat-strip dt {
    color: rgba(17, 23, 15, 0.66);
    font-size: 11px;
    font-weight: 500;
}

.tr-commodity-stat-strip dd {
    color: #10140e;
    font-size: 10.5px;
    font-weight: 590;
    margin: 0;
    overflow-wrap: anywhere;
    white-space: nowrap;
}

.tr-commodity-chart-card {
    background: rgba(44, 75, 31, 0.82);
    border-radius: 16px;
    display: grid;
    gap: 10px;
    padding: 16px 18px 14px;
}

.tr-commodity-chart-card header {
    align-items: center;
    display: flex;
    gap: 18px;
    justify-content: space-between;
}

.tr-commodity-chart-card h2 {
    color: #ffffff;
    font-size: 17px;
    font-weight: 560;
    margin: 0;
}

.tr-commodity-range-tabs {
    display: flex;
    gap: 6px;
}

.tr-commodity-range-tabs button {
    background: rgba(255, 255, 255, 0.06);
    border: 0;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.86);
    cursor: pointer;
    font-size: 11px;
    font-weight: 560;
    min-height: 28px;
    min-width: 40px;
    padding: 0 10px;
}

.tr-commodity-range-tabs button.is-active {
    background: var(--tr-detail-lime);
    color: #17200f;
}

.tr-commodity-chart {
    cursor: crosshair;
    display: block;
    min-height: 144px;
    position: relative;
}

.tr-commodity-chart-canvas {
    background:
        repeating-linear-gradient(0deg, transparent 0 31px, rgba(255, 255, 255, 0.09) 32px),
        linear-gradient(180deg, rgba(223, 242, 30, 0.06), rgba(223, 242, 30, 0));
    border-radius: 10px;
    height: 132px;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.tr-commodity-chart-canvas canvas {
    display: block;
    height: 100% !important;
    width: 100% !important;
}

.tr-commodity-tabs-card {
    background: rgba(44, 75, 31, 0.86);
    border-radius: 16px;
    padding: 18px;
}

.tr-commodity-tabs {
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    display: flex;
    gap: 30px;
    margin-bottom: 16px;
    overflow-x: auto;
    scrollbar-width: none;
}

.tr-commodity-tabs::-webkit-scrollbar {
    display: none;
}

.tr-commodity-tabs button {
    background: transparent;
    border: 0;
    color: rgba(255, 255, 255, 0.84);
    cursor: pointer;
    flex: 0 0 auto;
    font-size: 13px;
    font-weight: 550;
    min-height: 35px;
    padding: 0;
    position: relative;
}

.tr-commodity-tabs button.is-active {
    color: #ffffff;
}

.tr-commodity-tabs button.is-active::after {
    background: var(--tr-detail-lime);
    bottom: -1px;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    right: 0;
}

.tr-commodity-tab-panel {
    min-width: 0;
}

.tr-commodity-tab-panel[hidden] {
    display: none;
}

.tr-commodity-tab-panel.is-active {
    display: grid;
}

.tr-commodity-tab-panel[data-detail-panel="overview"] {
    gap: 10px;
    grid-template-columns: minmax(230px, 0.9fr) repeat(3, minmax(0, 1fr));
}

.tr-commodity-overview-copy {
    display: grid;
    gap: 10px;
    min-width: 0;
}

.tr-commodity-overview-copy p {
    color: rgba(255, 255, 255, 0.84);
    font-size: 11.5px;
    font-weight: 430;
    line-height: 1.34;
    margin: 0;
}

.tr-commodity-mini-facts {
    display: grid;
    gap: 6px;
    margin: 0;
}

.tr-commodity-mini-facts div {
    align-items: center;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    display: grid;
    column-gap: 10px;
    grid-template-columns: 28px minmax(0, 1fr);
    grid-template-rows: auto auto;
    min-height: 38px;
    padding: 5px 10px;
}

.tr-commodity-mini-facts dt {
    color: rgba(255, 255, 255, 0.74);
    column-gap: 10px;
    display: grid;
    font-size: 9.5px;
    font-weight: 520;
    grid-column: 1 / -1;
    grid-template-columns: 28px minmax(0, 1fr);
    line-height: 1.15;
}

.tr-commodity-mini-facts dt em {
    align-items: center;
    background: rgba(223, 242, 30, 0.34);
    border-radius: 9px;
    color: #111c18;
    display: inline-flex;
    font-size: 17px;
    grid-column: 1;
    height: 28px;
    justify-content: center;
    width: 28px;
}

.tr-commodity-mini-facts dt em::before {
    color: inherit !important;
    opacity: 1 !important;
    -webkit-text-fill-color: currentColor !important;
}

.tr-commodity-mini-facts dd {
    color: #ffffff;
    font-size: 10.5px;
    font-weight: 530;
    grid-column: 2;
    line-height: 1.2;
    margin: 0;
}

.tr-commodity-info-card {
    background: rgba(28, 54, 21, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 13px;
    min-width: 0;
    padding: 12px 16px;
}

.tr-commodity-info-card h2 {
    color: #ffffff;
    font-size: 13px;
    font-weight: 560;
    margin: 0 0 9px;
}

.tr-commodity-info-card p {
    color: rgba(255, 255, 255, 0.84);
    font-size: 13px;
    line-height: 1.55;
    margin: 0;
}

.tr-commodity-full-card {
    grid-column: 1 / -1;
}

.tr-commodity-reason-list {
    display: grid;
    gap: 8px;
}

.tr-commodity-reason-list section {
    align-items: center;
    display: grid;
    gap: 11px;
    grid-template-columns: 28px minmax(0, 1fr);
}

.tr-commodity-reason-list section > span,
.tr-commodity-cert-list em {
    align-items: center;
    background: rgba(223, 242, 30, 0.13);
    border-radius: 10px;
    color: var(--tr-detail-lime);
    display: inline-flex;
    font-size: 15px;
    height: 28px;
    justify-content: center;
    width: 28px;
}

.tr-commodity-reason-list strong,
.tr-commodity-reason-list small {
    display: block;
}

.tr-commodity-reason-list strong {
    color: #ffffff;
    font-size: 10.8px;
    font-weight: 560;
    line-height: 1.2;
}

.tr-commodity-reason-list small {
    color: rgba(255, 255, 255, 0.69);
    font-size: 9.8px;
    font-weight: 420;
    line-height: 1.25;
    margin-top: 2px;
}

.tr-commodity-spec-list {
    display: grid;
    gap: 6px;
    margin: 0;
}

.tr-commodity-spec-list div {
    align-items: baseline;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    gap: 12px;
    justify-content: space-between;
    padding-bottom: 4px;
}

.tr-commodity-spec-list div:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.tr-commodity-spec-list dt,
.tr-commodity-spec-list dd {
    color: rgba(255, 255, 255, 0.82);
    font-size: 10px;
    font-weight: 430;
    line-height: 1.25;
}

.tr-commodity-spec-list dd {
    color: #ffffff;
    margin: 0;
    text-align: right;
}

.tr-commodity-cert-list {
    display: grid;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.tr-commodity-cert-list li {
    align-items: center;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    font-size: 10.8px;
    font-weight: 500;
    gap: 10px;
}

.tr-commodity-cert-list em {
    border-radius: 50%;
    font-size: 15px;
    height: 22px;
    width: 22px;
}

.tr-commodity-history-table {
    color: #ffffff;
    margin: 0;
}

.tr-commodity-history-table caption {
    color: rgba(255, 255, 255, 0.8);
}

.tr-commodity-history-table th,
.tr-commodity-history-table td {
    border-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.88);
}

.tr-commodity-quote-card {
    align-items: center;
    background: rgba(44, 75, 31, 0.88);
    border-radius: 16px;
    display: flex;
    gap: 18px;
    justify-content: space-between;
    padding: 18px 20px;
}

.tr-commodity-quote-card span,
.tr-commodity-quote-card p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 12px;
    margin: 0;
}

.tr-commodity-quote-status {
    background: rgba(247, 246, 225, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    color: #ffffff;
    display: inline-flex;
    font-size: 11px;
    font-weight: 620;
    line-height: 1;
    margin-left: 8px;
    padding: 5px 8px;
}

.tr-commodity-quote-card h2 {
    color: #ffffff;
    font-size: 18px;
    margin: 3px 0;
}

.tr-commodity-quote-card a {
    align-items: center;
    background: var(--tr-detail-lime);
    border-radius: 11px;
    color: #15200f;
    display: inline-flex;
    font-size: 13px;
    font-weight: 650;
    gap: 10px;
    min-height: 48px;
    padding: 0 18px;
}

.tr-commodity-request-card {
    margin-top: -10px;
    min-height: 66px;
    padding: 10px 16px;
}

.tr-commodity-detail-sidebar {
    align-content: start;
    display: grid;
    gap: 14px;
}

.tr-commodity-invest-card {
    background: rgba(44, 75, 31, 0.86);
    border-radius: 16px;
    color: #ffffff;
    display: grid;
    gap: 12px;
    padding: 20px;
}

.tr-commodity-invest-card h2 {
    color: #ffffff;
    font-size: 17px;
    font-weight: 560;
    line-height: 1.15;
    margin: 0 0 4px;
}

.tr-commodity-invest-card > span {
    color: rgba(255, 255, 255, 0.68);
    font-size: 11px;
    font-weight: 430;
}

.tr-commodity-invest-card > strong {
    color: #ffffff;
    font-size: 20px;
    font-weight: 540;
    line-height: 1.1;
    margin-top: -7px;
}

.tr-commodity-invest-form {
    display: grid;
    gap: 12px;
}

.tr-commodity-invest-form label {
    display: grid;
    gap: 8px;
}

.tr-commodity-invest-form label > span {
    color: #ffffff;
    font-size: 12px;
    font-weight: 560;
}

.tr-commodity-stepper {
    display: grid;
    gap: 8px;
    grid-template-columns: 46px minmax(0, 1fr) 46px;
}

.tr-commodity-stepper button,
.tr-commodity-stepper input {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 9px;
    color: #ffffff;
    min-height: 44px;
}

.tr-commodity-stepper button {
    cursor: pointer;
    font-size: 18px;
}

.tr-commodity-stepper input {
    font-size: 16px;
    font-weight: 560;
    text-align: center;
}

.tr-commodity-stepper input::-webkit-outer-spin-button,
.tr-commodity-stepper input::-webkit-inner-spin-button {
    appearance: none;
    margin: 0;
}

.tr-commodity-buy-button {
    background: var(--tr-detail-lime);
    border: 0;
    border-radius: 10px;
    color: #15200f;
    cursor: pointer;
    font-size: 13px;
    font-weight: 650;
    min-height: 44px;
    padding: 0 16px;
}

.tr-history-layout {
    grid-template-columns: minmax(0, 1fr) minmax(316px, 344px);
}

.tr-history-main {
    gap: 18px;
}

.tr-history-hero {
    display: grid;
    gap: 10px;
}

.tr-history-heading {
    align-items: center;
    display: flex;
    gap: 18px;
    justify-content: space-between;
    min-width: 0;
}

.tr-history-heading h1 {
    color: #ffffff;
    font-size: clamp(34px, 3vw, 48px);
    font-weight: 590;
    line-height: 1;
    margin: 0 0 9px;
}

.tr-history-heading p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    font-weight: 430;
    line-height: 1.4;
    margin: 0;
}

.tr-history-heading figure {
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    flex: 0 0 74px;
    height: 74px;
    margin: 0;
    overflow: hidden;
    width: 74px;
}

.tr-history-heading img {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.tr-history-grade-pill {
    background: rgba(223, 242, 30, 0.18);
    border: 1px solid rgba(223, 242, 30, 0.42);
    border-radius: 999px;
    color: var(--tr-detail-lime);
    font-size: 11px;
    font-weight: 650;
    padding: 5px 10px;
}

.tr-history-filter-bar {
    align-items: end;
    display: grid;
    gap: 12px;
    grid-template-columns: minmax(156px, 1.2fr) minmax(138px, 0.9fr) repeat(2, minmax(126px, 0.8fr)) minmax(120px, 0.72fr) minmax(126px, 0.8fr) 134px;
}

.tr-history-filter-bar label {
    display: grid;
    gap: 7px;
    min-width: 0;
}

.tr-history-filter-bar label span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 10px;
    font-weight: 610;
    text-transform: uppercase;
}

.tr-history-filter-bar select,
.tr-history-filter-bar input {
    appearance: none;
    background: rgba(44, 75, 31, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 540;
    min-height: 52px;
    outline: 0;
    padding: 0 15px;
    width: 100%;
}

.tr-history-filter-bar select:focus,
.tr-history-filter-bar input:focus {
    border-color: rgba(223, 242, 30, 0.62);
    box-shadow: 0 0 0 3px rgba(223, 242, 30, 0.12);
}

.tr-history-filter-bar input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    opacity: 0.7;
}

.tr-history-export-button {
    align-items: center;
    background: var(--tr-detail-lime);
    border: 0;
    border-radius: 12px;
    color: #15200f;
    display: inline-flex;
    font-size: 13px;
    font-weight: 700;
    gap: 10px;
    justify-content: center;
    min-height: 52px;
    padding: 0 18px;
}

.tr-history-chart-card {
    position: relative;
}

.tr-history-chart-card header p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 11px;
    margin: 5px 0 0;
}

.tr-history-chart {
    min-height: 260px;
}

.tr-history-chart .tr-commodity-chart-canvas {
    height: 248px;
}

.tr-history-preloader {
    align-items: center;
    background: rgba(9, 28, 5, 0.58);
    border-radius: 16px;
    display: flex;
    inset: 0;
    justify-content: center;
    position: absolute;
    z-index: 4;
}

.tr-history-preloader[hidden] {
    display: none;
}

.tr-history-preloader span {
    animation: tr-spin 0.75s linear infinite;
    border: 3px solid rgba(255, 255, 255, 0.22);
    border-top-color: var(--tr-detail-lime);
    border-radius: 50%;
    height: 34px;
    width: 34px;
}

.tr-history-stats-grid {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.tr-history-stat-card {
    background: rgba(44, 75, 31, 0.84);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 13px;
    box-shadow: 0 18px 40px rgba(8, 24, 6, 0.18);
    display: grid;
    gap: 7px;
    min-height: 112px;
    min-width: 0;
    padding: 16px;
}

.tr-history-stat-card span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 11px;
    font-weight: 520;
}

.tr-history-stat-card strong {
    color: #ffffff;
    font-size: clamp(18px, 1.45vw, 24px);
    font-weight: 590;
    line-height: 1.08;
    overflow-wrap: anywhere;
}

.tr-history-stat-card small {
    color: rgba(255, 255, 255, 0.72);
    font-size: 10.5px;
    font-weight: 430;
    line-height: 1.3;
}

.tr-history-stat-card.is-up small,
.tr-history-data-table td.is-up {
    color: #9ee15a;
}

.tr-history-stat-card.is-down small,
.tr-history-data-table td.is-down {
    color: #ff795f;
}

.tr-history-table-card {
    background: rgba(44, 75, 31, 0.86);
    border: 1px solid var(--tr-detail-border);
    border-radius: 16px;
    box-shadow: 0 24px 50px rgba(8, 24, 6, 0.22);
    display: grid;
    gap: 12px;
    padding: 18px;
}

.tr-history-table-card header {
    align-items: center;
    display: flex;
    justify-content: space-between;
}

.tr-history-table-card h2 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 560;
    margin: 0;
}

.tr-history-table-card header span {
    color: rgba(255, 255, 255, 0.74);
    font-size: 11px;
    font-weight: 560;
}

.tr-history-data-table th,
.tr-history-data-table td {
    font-size: 12px;
    white-space: nowrap;
}

.tr-history-data-table {
    --bs-table-bg: transparent;
    --bs-table-color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.tr-history-data-table th {
    background: rgba(247, 246, 225, 0.94) !important;
    color: #173214 !important;
    font-weight: 560;
}

.tr-history-data-table tbody td {
    background: rgba(21, 45, 15, 0.68) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
    color: rgba(255, 255, 255, 0.9) !important;
}

.tr-history-data-table tbody tr:nth-child(even) td {
    background: rgba(29, 56, 21, 0.72) !important;
}

.tr-history-pagination {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
}

.tr-history-pagination span {
    color: rgba(255, 255, 255, 0.74);
    flex: 1 1 auto;
    font-size: 11px;
}

.tr-history-pagination button {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    color: #ffffff;
    cursor: pointer;
    font-size: 11px;
    font-weight: 620;
    height: 30px;
    min-width: 30px;
    padding: 0 9px;
}

.tr-history-pagination button.is-active {
    background: var(--tr-detail-lime);
    color: #16200f;
}

.tr-history-ready-card {
    align-items: center;
    background: rgba(44, 75, 31, 0.86);
    border: 1px solid var(--tr-detail-border);
    border-radius: 16px;
    display: grid;
    gap: 14px;
    grid-template-columns: 86px minmax(0, 1fr) 44px;
    min-height: 128px;
    overflow: hidden;
    padding: 16px;
}

.tr-history-ready-card img {
    border-radius: 10px;
    display: block;
    height: 78px;
    object-fit: cover;
    width: 86px;
}

.tr-history-ready-card h2 {
    color: #ffffff;
    font-size: 19px;
    font-weight: 580;
    line-height: 1.14;
    margin: 0 0 6px;
}

.tr-history-ready-card p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 12px;
    margin: 0;
}

.tr-history-ready-card a {
    align-items: center;
    background: var(--tr-detail-lime);
    border-radius: 50%;
    color: #16200f;
    display: inline-flex;
    font-size: 20px;
    height: 44px;
    justify-content: center;
    width: 44px;
}

.tr-purchase-page {
    --tr-purchase-cream: rgba(247, 246, 225, 0.95);
    --tr-purchase-cream-strong: #f6f4df;
    max-width: 100%;
    overflow-x: clip;
    overflow-y: visible;
}

.tr-purchase-svg-icon {
    display: inline-block;
    fill: none;
    flex: 0 0 auto;
    height: 1em;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
    vertical-align: -0.15em;
    width: 1em;
}

.tr-purchase-card-heading {
    align-items: center;
    display: flex;
    gap: 12px;
    min-width: 0;
}

.tr-purchase-card-heading > div {
    min-width: 0;
}

.tr-purchase-card-heading.is-compact {
    gap: 10px;
}

.tr-purchase-card-title-icon {
    align-items: center;
    background: rgba(223, 242, 30, 0.18);
    border-radius: 10px;
    color: #426a18;
    display: inline-flex;
    flex: 0 0 auto;
    height: 38px;
    justify-content: center;
    width: 38px;
}

.tr-purchase-card-heading.is-compact .tr-purchase-card-title-icon {
    border-radius: 9px;
    height: 34px;
    width: 34px;
}

.tr-purchase-card-title-icon .tr-purchase-svg-icon {
    height: 18px;
    stroke-width: 2.4;
    width: 18px;
}

.tr-purchase-card-title-icon .icon {
    color: inherit;
    font-size: 18px;
    line-height: 1;
}

.tr-purchase-card-heading.is-compact .tr-purchase-card-title-icon .tr-purchase-svg-icon {
    height: 16px;
    stroke-width: 2.5;
    width: 16px;
}

.tr-purchase-card-heading.is-compact .tr-purchase-card-title-icon .icon {
    font-size: 16px;
}

.tr-purchase-layout {
    display: grid;
    gap: 22px;
    grid-template-columns: minmax(0, 1fr) minmax(318px, 334px);
    max-width: 100%;
    min-height: calc(100vh - 48px);
    min-width: 0;
}

.tr-purchase-main,
.tr-purchase-sidebar {
    align-content: start;
    display: grid;
    gap: 16px;
    max-width: 100%;
    min-width: 0;
}

.tr-purchase-hero {
    display: grid;
    gap: 6px;
}

.tr-purchase-hero h1 {
    color: #ffffff;
    font-size: clamp(34px, 2.8vw, 44px);
    font-weight: 590;
    line-height: 1;
    margin: 10px 0 0;
}

.tr-purchase-hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 430;
    line-height: 1.35;
    margin: 0;
}

.tr-purchase-steps {
    align-items: center;
    background: rgba(44, 75, 31, 0.84);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    min-height: 82px;
    padding: 14px 18px;
}

.tr-purchase-steps article {
    align-items: center;
    display: grid;
    gap: 12px;
    grid-template-columns: 40px minmax(0, 1fr);
    min-width: 0;
    position: relative;
}

.tr-purchase-steps article:not(:last-child)::after {
    background: rgba(255, 255, 255, 0.18);
    content: "";
    height: 1px;
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
}

.tr-purchase-steps article > span {
    align-items: center;
    background: rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    color: #ffffff;
    display: inline-flex;
    font-size: 15px;
    font-weight: 650;
    height: 40px;
    justify-content: center;
    width: 40px;
}

.tr-purchase-steps article.is-active > span {
    background: var(--tr-detail-lime);
    color: #17200f;
}

.tr-purchase-steps strong,
.tr-purchase-steps small {
    display: block;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tr-purchase-steps strong {
    color: #ffffff;
    font-size: 13px;
    font-weight: 560;
}

.tr-purchase-steps article.is-active strong {
    color: var(--tr-detail-lime);
}

.tr-purchase-steps small {
    color: rgba(255, 255, 255, 0.72);
    font-size: 11px;
    font-weight: 430;
    margin-top: 4px;
}

.tr-purchase-selection-card {
    background: var(--tr-purchase-cream);
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 16px;
    box-shadow: 0 28px 56px rgba(8, 24, 6, 0.24);
    color: #11170f;
    display: grid;
    gap: 18px;
    padding: 22px;
}

.tr-purchase-selection-card > header h2 {
    color: #11170f;
    font-size: 17px;
    font-weight: 620;
    margin: 0 0 5px;
}

.tr-purchase-selection-card > header p {
    color: rgba(17, 23, 15, 0.72);
    font-size: 12px;
    font-weight: 430;
    margin: 0;
}

.tr-purchase-commodity-panel {
    align-items: stretch;
    border: 1px solid rgba(17, 23, 15, 0.18);
    border-radius: 13px;
    display: grid;
    gap: 24px;
    grid-template-columns: 254px minmax(0, 1fr) 206px;
    padding: 0;
    overflow: hidden;
}

.tr-purchase-commodity-panel > img {
    display: block;
    height: 248px;
    object-fit: cover;
    width: 254px;
}

.tr-purchase-commodity-copy {
    align-content: center;
    border-right: 1px solid rgba(17, 23, 15, 0.16);
    display: grid;
    gap: 14px;
    min-width: 0;
    padding: 22px 0;
}

.tr-purchase-title-row {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    min-width: 0;
}

.tr-purchase-title-row h3 {
    color: #11170f;
    font-size: clamp(24px, 1.8vw, 30px);
    font-weight: 590;
    line-height: 1.05;
    margin: 0;
}

.tr-purchase-title-row span,
.tr-purchase-summary-item small {
    background: rgba(157, 199, 72, 0.42);
    border-radius: 8px;
    color: #3f6a1d;
    display: inline-flex;
    font-size: 10.5px;
    font-weight: 650;
    line-height: 1;
    padding: 6px 10px;
}

.tr-purchase-commodity-copy > p {
    color: rgba(17, 23, 15, 0.75);
    font-size: 12.5px;
    font-weight: 430;
    line-height: 1.38;
    margin: 0;
    max-width: 470px;
}

.tr-purchase-feature-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 6px;
}

.tr-purchase-feature-grid section {
    display: grid;
    gap: 7px;
    justify-items: center;
    min-width: 0;
    text-align: center;
}

.tr-purchase-feature-grid section > span {
    align-items: center;
    background: rgba(157, 199, 72, 0.2);
    border-radius: 13px;
    color: #7aa413;
    display: inline-flex;
    font-size: 24px;
    height: 48px;
    justify-content: center;
    width: 48px;
}

.tr-purchase-feature-grid strong {
    color: #11170f;
    font-size: 11px;
    font-weight: 620;
    line-height: 1.2;
}

.tr-purchase-feature-grid small {
    color: rgba(17, 23, 15, 0.68);
    font-size: 10px;
    font-weight: 430;
    line-height: 1.22;
}

.tr-purchase-price-card {
    align-content: center;
    background: rgba(255, 255, 255, 0.35);
    border-radius: 14px;
    display: grid;
    gap: 11px;
    margin: 22px 20px 22px 0;
    padding: 22px 14px;
}

.tr-purchase-price-card > span,
.tr-purchase-price-card > small {
    color: rgba(17, 23, 15, 0.72);
    font-size: 11px;
    font-weight: 430;
    line-height: 1.35;
}

.tr-purchase-price-card > strong {
    color: #11170f;
    font-size: clamp(22px, 1.58vw, 27px);
    font-weight: 590;
    line-height: 1.05;
    overflow-wrap: anywhere;
    white-space: nowrap;
}

.tr-purchase-price-card > strong.is-compact {
    font-size: clamp(18px, 1.25vw, 22px);
}

.tr-purchase-price-card > strong small {
    color: #11170f;
    font-size: 13px;
    font-weight: 550;
}

.tr-purchase-price-card p {
    align-items: center;
    display: inline-flex;
    font-size: 16px;
    font-weight: 620;
    gap: 7px;
    line-height: 1;
    margin: 0;
}

.tr-purchase-price-card p.is-up {
    color: #248a2d;
}

.tr-purchase-price-card p.is-down {
    color: #c83b2d;
}

.tr-purchase-spec-strip {
    border: 1px solid rgba(17, 23, 15, 0.16);
    border-radius: 12px;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    margin: 0;
    overflow: hidden;
}

.tr-purchase-spec-strip div {
    border-left: 1px solid rgba(17, 23, 15, 0.12);
    display: grid;
    gap: 7px;
    min-height: 72px;
    padding: 15px 18px;
}

.tr-purchase-spec-strip div:first-child {
    border-left: 0;
}

.tr-purchase-spec-strip dt {
    color: rgba(17, 23, 15, 0.66);
    font-size: 10.5px;
    font-weight: 520;
}

.tr-purchase-spec-strip dd {
    color: #11170f;
    font-size: 12px;
    font-weight: 570;
    line-height: 1.2;
    margin: 0;
}

.tr-purchase-actions {
    align-items: center;
    display: flex;
    gap: 14px;
    justify-content: space-between;
}

.tr-purchase-cancel,
.tr-purchase-continue,
.tr-purchase-help-card a {
    align-items: center;
    border-radius: 11px;
    display: inline-flex;
    font-size: 13px;
    font-weight: 650;
    gap: 12px;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
}

.tr-purchase-cancel {
    background: rgba(10, 28, 5, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    min-width: 104px;
}

.tr-purchase-continue {
    background: var(--tr-detail-lime);
    color: #15200f;
    min-width: min(100%, 304px);
}

.tr-purchase-continue em,
.tr-purchase-continue .tr-purchase-svg-icon {
    font-size: 21px;
}

.tr-purchase-help-card {
    align-items: center;
    background: rgba(49, 78, 36, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 16px;
    box-shadow: 0 22px 45px rgba(9, 26, 6, 0.2);
    display: grid;
    gap: 16px;
    grid-template-columns: 56px minmax(0, 1fr) 184px 184px;
    min-height: 86px;
    padding: 16px 24px;
}

.tr-purchase-help-card > span {
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    display: inline-flex;
    font-size: 28px;
    height: 56px;
    justify-content: center;
    width: 56px;
}

.tr-purchase-help-card h2 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 560;
    margin: 0 0 5px;
}

.tr-purchase-help-card p {
    color: rgba(255, 255, 255, 0.76);
    font-size: 12px;
    margin: 0;
}

.tr-purchase-help-card a {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    min-height: 44px;
    padding: 0 14px;
}

.tr-purchase-help-card a.is-primary {
    background: var(--tr-detail-lime);
    border-color: transparent;
    color: #15200f;
}

.tr-purchase-sidebar {
    gap: 16px;
}

.tr-purchase-mini-metrics {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tr-purchase-mini-metrics article {
    align-items: center;
    background: rgba(247, 246, 225, 0.94);
    border-radius: 16px;
    color: #11170f;
    display: grid;
    gap: 10px;
    grid-template-columns: 54px minmax(0, 1fr);
    min-height: 68px;
    padding: 12px;
}

.tr-purchase-mini-metrics article > span {
    align-items: center;
    background: rgba(17, 23, 15, 0.08);
    border-radius: 50%;
    display: inline-flex;
    font-size: 23px;
    height: 54px;
    justify-content: center;
    width: 54px;
}

.tr-purchase-mini-metrics small {
    color: rgba(17, 23, 15, 0.68);
    display: block;
    font-size: 10.5px;
    font-weight: 520;
    line-height: 1.1;
}

.tr-purchase-mini-metrics strong {
    color: #11170f;
    display: block;
    font-size: 18px;
    font-weight: 620;
    line-height: 1.1;
    margin-top: 3px;
}

.tr-purchase-summary-card {
    background: rgba(44, 75, 31, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    box-shadow: 0 24px 50px rgba(8, 24, 6, 0.28);
    color: #ffffff;
    display: grid;
    gap: 15px;
    padding: 18px;
}

.tr-purchase-summary-card header {
    align-items: center;
    display: flex;
    justify-content: space-between;
}

.tr-purchase-summary-card h2 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 560;
    margin: 0;
}

.tr-purchase-summary-card header > span {
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 10px;
    font-weight: 560;
    padding: 5px 9px;
}

.tr-purchase-summary-item {
    align-items: center;
    display: grid;
    gap: 10px;
    grid-template-columns: 48px minmax(0, 1fr) auto;
}

.tr-purchase-summary-item img {
    border-radius: 9px;
    display: block;
    height: 48px;
    object-fit: cover;
    width: 48px;
}

.tr-purchase-summary-item strong {
    color: #ffffff;
    display: block;
    font-size: 13px;
    font-weight: 560;
    margin-bottom: 5px;
}

.tr-purchase-summary-item p {
    color: #ffffff;
    font-size: 12px;
    font-weight: 560;
    margin: 0;
    text-align: right;
}

.tr-purchase-summary-item p small {
    color: rgba(255, 255, 255, 0.7);
    font-size: 10px;
}

.tr-purchase-summary-list {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: grid;
    gap: 11px;
    margin: 0;
    padding: 13px 0;
}

.tr-purchase-summary-list div,
.tr-purchase-summary-total {
    align-items: center;
    display: flex;
    gap: 12px;
    justify-content: space-between;
}

.tr-purchase-summary-list dt,
.tr-purchase-summary-list dd {
    color: rgba(255, 255, 255, 0.82);
    font-size: 11.5px;
    font-weight: 430;
    margin: 0;
}

.tr-purchase-summary-list dd {
    color: #ffffff;
    font-weight: 540;
}

.tr-purchase-summary-total span {
    color: #ffffff;
    font-size: 13px;
    font-weight: 560;
}

.tr-purchase-summary-total strong {
    color: #ffffff;
    font-size: 18px;
    font-weight: 590;
}

.tr-purchase-secure-note {
    align-items: center;
    background: rgba(255, 255, 255, 0.09);
    border-radius: 11px;
    display: grid;
    gap: 11px;
    grid-template-columns: 38px minmax(0, 1fr);
    padding: 11px;
}

.tr-purchase-secure-note > span {
    align-items: center;
    border: 1px solid rgba(223, 242, 30, 0.38);
    border-radius: 10px;
    color: var(--tr-detail-lime);
    display: inline-flex;
    font-size: 20px;
    height: 38px;
    justify-content: center;
    width: 38px;
}

.tr-purchase-secure-note strong,
.tr-purchase-secure-note small {
    display: block;
}

.tr-purchase-secure-note strong {
    color: #ffffff;
    font-size: 11.5px;
    font-weight: 560;
    margin-bottom: 2px;
}

.tr-purchase-secure-note small {
    color: rgba(255, 255, 255, 0.66);
    font-size: 10px;
    line-height: 1.25;
}

.tr-commodity-buy-button {
    align-items: center;
    display: inline-flex;
    justify-content: center;
    text-align: center;
}

@keyframes tr-spin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 1560px) {
    .tr-purchase-commodity-panel {
        grid-template-columns: 220px minmax(0, 1fr) 196px;
    }

    .tr-purchase-commodity-panel > img {
        width: 220px;
    }

    .tr-purchase-feature-grid,
    .tr-purchase-spec-strip {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .tr-purchase-spec-strip div:nth-child(4) {
        border-left: 0;
    }
}

@media (max-width: 1399px) {
    .tr-purchase-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .tr-purchase-sidebar {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tr-purchase-mini-metrics {
        grid-column: 1 / -1;
    }
}

@media (max-width: 1199.98px) {
    .tr-purchase-page {
        padding-top: 88px;
    }

    .tr-purchase-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tr-purchase-steps article::after {
        display: none;
    }

    .tr-purchase-commodity-panel {
        grid-template-columns: 220px minmax(0, 1fr);
    }

    .tr-purchase-price-card {
        grid-column: 1 / -1;
        margin: 0 20px 20px;
    }

    .tr-purchase-commodity-copy {
        border-right: 0;
        padding-right: 20px;
    }

    .tr-purchase-help-card {
        grid-template-columns: 56px minmax(0, 1fr);
    }

    .tr-purchase-help-card a {
        grid-column: span 1;
    }
}

@media (max-width: 760px) {
    .tr-purchase-page {
        padding-left: 14px;
        padding-right: 14px;
    }

    .tr-purchase-steps,
    .tr-purchase-sidebar,
    .tr-purchase-mini-metrics,
    .tr-purchase-feature-grid,
    .tr-purchase-spec-strip {
        grid-template-columns: 1fr;
    }

    .tr-purchase-commodity-panel {
        grid-template-columns: 1fr;
    }

    .tr-purchase-commodity-panel > img {
        height: 220px;
        width: 100%;
    }

    .tr-purchase-commodity-copy {
        padding: 0 20px;
    }

    .tr-purchase-spec-strip div,
    .tr-purchase-spec-strip div:nth-child(4) {
        border-left: 0;
        border-top: 1px solid rgba(17, 23, 15, 0.12);
    }

    .tr-purchase-spec-strip div:first-child {
        border-top: 0;
    }

    .tr-purchase-actions,
    .tr-purchase-help-card {
        align-items: stretch;
        flex-direction: column;
        grid-template-columns: 1fr;
    }

    .tr-purchase-help-card > span {
        display: none;
    }

    .tr-purchase-cancel,
    .tr-purchase-continue,
    .tr-purchase-help-card a {
        width: 100%;
    }
}

.tr-purchase-hero-row {
    align-items: start;
    display: grid;
    gap: 22px;
    grid-template-columns: minmax(0, 1fr) auto;
}

.tr-purchase-top-metrics {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(2, minmax(150px, 1fr));
}

.tr-purchase-top-metrics article {
    align-items: center;
    background: rgba(247, 246, 225, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.36);
    border-radius: 16px;
    color: #11170f;
    display: grid;
    gap: 10px;
    grid-template-columns: 54px minmax(0, 1fr);
    min-height: 72px;
    min-width: 150px;
    padding: 12px;
}

.tr-purchase-top-metrics article > span {
    align-items: center;
    background: rgba(17, 23, 15, 0.08);
    border-radius: 50%;
    display: inline-flex;
    font-size: 23px;
    height: 54px;
    justify-content: center;
    width: 54px;
}

.tr-purchase-top-metrics small,
.tr-purchase-top-metrics strong {
    color: #11170f;
    display: block;
    line-height: 1.1;
}

.tr-purchase-top-metrics small {
    color: rgba(17, 23, 15, 0.68);
    font-size: 10.5px;
    font-weight: 520;
}

.tr-purchase-top-metrics strong {
    font-size: 18px;
    font-weight: 620;
    margin-top: 3px;
}

.tr-purchase-page:not([data-current-step="1"]) .tr-purchase-layout {
    grid-template-columns: minmax(0, 1fr);
}

.tr-purchase-page:not([data-current-step="1"]) .tr-purchase-sidebar {
    display: none;
}

.tr-purchase-wizard {
    display: grid;
    gap: 16px;
    max-width: 100%;
    min-width: 0;
}

.tr-purchase-panel,
.tr-purchase-selection-card,
.tr-purchase-commodity-panel,
.tr-purchase-flow-card,
.tr-purchase-calculator-card,
.tr-purchase-method-card,
.tr-purchase-review-main,
.tr-purchase-side-stack,
.tr-purchase-summary-card {
    max-width: 100%;
    min-width: 0;
}

.tr-purchase-panel[hidden],
.tr-purchase-actions [hidden],
.tr-purchase-feedback[hidden] {
    display: none !important;
}

.tr-purchase-flow-card {
    background: var(--tr-purchase-cream);
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 16px;
    box-shadow: 0 28px 56px rgba(8, 24, 6, 0.24);
    color: #11170f;
    display: grid;
    gap: 18px;
    padding: 22px;
}

.tr-purchase-flow-card > header h2,
.tr-purchase-flow-card h3 {
    color: #11170f;
    font-weight: 620;
    margin: 0;
}

.tr-purchase-flow-card > header h2 {
    font-size: 17px;
    margin-bottom: 5px;
}

.tr-purchase-flow-card > header p {
    color: rgba(17, 23, 15, 0.72);
    font-size: 12px;
    font-weight: 430;
    margin: 0;
}

.tr-purchase-quantity-layout,
.tr-purchase-payment-layout,
.tr-purchase-review-layout {
    display: grid;
    gap: 16px;
    grid-template-columns: minmax(0, 1fr) minmax(240px, 288px);
    max-width: 100%;
    min-width: 0;
}

.tr-purchase-calculator-card {
    border: 1px solid rgba(17, 23, 15, 0.13);
    border-radius: 13px;
    display: grid;
    gap: 18px;
    grid-row: span 2;
    min-width: 0;
    padding: 18px;
}

.tr-purchase-calculator-top {
    display: grid;
    gap: 20px;
    grid-template-columns: minmax(220px, 0.46fr) minmax(220px, 0.54fr);
}

.tr-purchase-current-price {
    border-right: 1px solid rgba(17, 23, 15, 0.14);
    display: grid;
    gap: 9px;
    min-width: 0;
    padding-right: 20px;
}

.tr-purchase-current-price span,
.tr-purchase-current-price small,
.tr-purchase-price-breakdown dt,
.tr-purchase-meta-strip dt {
    color: rgba(17, 23, 15, 0.66);
    font-size: 11px;
    font-weight: 520;
}

.tr-purchase-current-price strong {
    color: #11170f;
    font-size: clamp(26px, 2.2vw, 37px);
    font-weight: 590;
    line-height: 1.05;
    overflow-wrap: anywhere;
}

.tr-purchase-current-price strong small {
    color: #11170f;
    font-size: 14px;
    font-weight: 560;
}

.tr-purchase-current-price p {
    align-items: center;
    display: inline-flex;
    font-size: 14px;
    font-weight: 620;
    gap: 7px;
    margin: 0;
}

.tr-purchase-current-price p.is-up {
    color: #23882c;
}

.tr-purchase-current-price p.is-down {
    color: #c83b2d;
}

.tr-purchase-quantity-box {
    display: grid;
    gap: 12px;
}

.tr-purchase-quantity-control {
    display: grid;
    gap: 8px;
    margin: 0;
}

.tr-purchase-quantity-control > span {
    color: rgba(17, 23, 15, 0.72);
    font-size: 11px;
    font-weight: 560;
}

.tr-purchase-quantity-control > div {
    background: rgba(255, 255, 255, 0.42);
    border: 1px solid rgba(17, 23, 15, 0.12);
    border-radius: 10px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 48px 48px;
    min-height: 54px;
    overflow: hidden;
}

.tr-purchase-quantity-control input,
.tr-purchase-quantity-control button {
    border: 0;
    color: #11170f;
    min-width: 0;
}

.tr-purchase-quantity-control input {
    background: rgba(255, 255, 255, 0.52);
    font-size: 17px;
    font-weight: 560;
    padding: 0 16px;
}

.tr-purchase-quantity-control button {
    background: rgba(17, 23, 15, 0.07);
    cursor: pointer;
    font-size: 18px;
}

.tr-purchase-presets {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tr-purchase-presets button {
    background: rgba(17, 23, 15, 0.08);
    border: 0;
    border-radius: 8px;
    color: #11170f;
    cursor: pointer;
    font-size: 10.5px;
    font-weight: 650;
    min-height: 32px;
    padding: 0 12px;
}

.tr-purchase-presets button.is-active {
    background: var(--tr-detail-lime);
}

.tr-purchase-price-breakdown {
    border-top: 1px solid rgba(17, 23, 15, 0.12);
    display: grid;
    gap: 0;
    margin: 0;
}

.tr-purchase-price-breakdown div,
.tr-purchase-price-summary dl div {
    align-items: center;
    border-bottom: 1px solid rgba(17, 23, 15, 0.08);
    display: flex;
    gap: 14px;
    justify-content: space-between;
    min-height: 48px;
}

.tr-purchase-price-breakdown dd,
.tr-purchase-price-summary dd {
    color: #11170f;
    font-size: 12px;
    font-weight: 570;
    margin: 0;
    text-align: right;
}

.tr-purchase-price-breakdown .is-total {
    background: rgba(223, 242, 30, 0.15);
    border: 1px solid rgba(188, 207, 16, 0.38);
    border-radius: 10px;
    margin-top: 12px;
    min-height: 54px;
    padding: 0 14px;
}

.tr-purchase-price-breakdown .is-total dt,
.tr-purchase-price-breakdown .is-total dd,
.tr-purchase-price-summary .is-total dt,
.tr-purchase-price-summary .is-total dd {
    color: #11170f;
    font-size: 15px;
    font-weight: 650;
}

.tr-purchase-summary-card.is-light {
    background: rgba(255, 255, 255, 0.32);
    border-color: rgba(17, 23, 15, 0.12);
    box-shadow: none;
    color: #11170f;
}

.tr-purchase-summary-card.is-light h2,
.tr-purchase-summary-card.is-light .tr-purchase-summary-item strong,
.tr-purchase-summary-card.is-light .tr-purchase-summary-item p,
.tr-purchase-summary-card.is-light .tr-purchase-summary-list dd,
.tr-purchase-summary-card.is-light .tr-purchase-summary-total span,
.tr-purchase-summary-card.is-light .tr-purchase-summary-total strong {
    color: #11170f;
}

.tr-purchase-summary-card.is-light header > span {
    border-color: rgba(17, 23, 15, 0.15);
    color: rgba(17, 23, 15, 0.68);
}

.tr-purchase-summary-card.is-light .tr-purchase-summary-item p small,
.tr-purchase-summary-card.is-light .tr-purchase-summary-list dt,
.tr-purchase-summary-card.is-light .tr-purchase-summary-list dd {
    color: rgba(17, 23, 15, 0.7);
}

.tr-purchase-summary-card.is-light .tr-purchase-summary-list {
    border-color: rgba(17, 23, 15, 0.12);
}

.tr-purchase-investing-card,
.tr-purchase-security-card,
.tr-purchase-next-card {
    background: rgba(21, 45, 15, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    color: #ffffff;
    display: grid;
    gap: 14px;
    padding: 16px;
}

.tr-purchase-investing-card h3,
.tr-purchase-security-card h3,
.tr-purchase-next-card h3 {
    color: #ffffff;
    font-size: 14px;
    font-weight: 560;
}

.tr-purchase-investing-card .tr-purchase-card-title-icon,
.tr-purchase-security-card .tr-purchase-card-title-icon,
.tr-purchase-next-card .tr-purchase-card-title-icon,
.tr-purchase-summary-card:not(.is-light) .tr-purchase-card-title-icon {
    background: rgba(223, 242, 30, 0.2);
    border: 1px solid rgba(223, 242, 30, 0.18);
    color: var(--tr-detail-lime);
}

.tr-purchase-investing-card > div,
.tr-purchase-security-card,
.tr-purchase-next-card {
    align-content: start;
}

.tr-purchase-investing-card article,
.tr-purchase-security-card article,
.tr-purchase-next-card article {
    align-items: start;
    display: grid;
    gap: 10px;
    grid-template-columns: 34px minmax(0, 1fr);
}

.tr-purchase-investing-card article > span,
.tr-purchase-security-card article > span,
.tr-purchase-next-card article > span,
.tr-purchase-review-list dt > span {
    align-items: center;
    background: rgba(223, 242, 30, 0.12);
    border-radius: 9px;
    color: var(--tr-detail-lime);
    display: inline-flex;
    font-size: 18px;
    height: 34px;
    justify-content: center;
    width: 34px;
}

.tr-purchase-review-list dt > span .icon {
    color: inherit;
    font-size: 17px;
    line-height: 1;
}

.tr-purchase-investing-card p,
.tr-purchase-next-card p,
.tr-purchase-security-card small {
    color: rgba(255, 255, 255, 0.78);
    font-size: 11px;
    line-height: 1.32;
    margin: 0;
}

.tr-purchase-security-card strong {
    color: #ffffff;
    display: block;
    font-size: 11.5px;
    font-weight: 580;
    margin-bottom: 2px;
}

.tr-purchase-meta-strip {
    border: 1px solid rgba(17, 23, 15, 0.12);
    border-radius: 12px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 0;
    overflow: hidden;
}

.tr-purchase-meta-strip div {
    border-left: 1px solid rgba(17, 23, 15, 0.12);
    display: grid;
    gap: 5px;
    min-height: 58px;
    padding: 12px 15px;
}

.tr-purchase-meta-strip div:first-child {
    border-left: 0;
}

.tr-purchase-meta-strip dd {
    color: #11170f;
    font-size: 11px;
    font-weight: 560;
    margin: 0;
}

.tr-purchase-method-card {
    border: 1px solid rgba(17, 23, 15, 0.13);
    border-radius: 13px;
    display: grid;
    gap: 16px;
    padding: 18px;
}

.tr-purchase-method-card h3,
.tr-purchase-price-summary h3 {
    font-size: 14px;
}

.tr-purchase-method-list {
    display: grid;
    gap: 12px;
}

.tr-purchase-method-list label {
    align-items: center;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(17, 23, 15, 0.12);
    border-radius: 11px;
    cursor: pointer;
    display: grid;
    gap: 14px;
    grid-template-columns: 22px 52px minmax(0, 1fr);
    min-height: 74px;
    padding: 13px 16px;
}

.tr-purchase-method-list label.is-selected {
    background: rgba(223, 242, 30, 0.1);
    border-color: rgba(188, 207, 16, 0.62);
}

.tr-purchase-method-list input {
    position: absolute;
    opacity: 0;
}

.tr-purchase-radio {
    border: 1px solid rgba(17, 23, 15, 0.42);
    border-radius: 50%;
    height: 16px;
    position: relative;
    width: 16px;
}

.tr-purchase-method-list label.is-selected .tr-purchase-radio {
    border-color: #96b400;
}

.tr-purchase-method-list label.is-selected .tr-purchase-radio::after {
    background: var(--tr-detail-lime);
    border-radius: 50%;
    content: "";
    height: 8px;
    left: 3px;
    position: absolute;
    top: 3px;
    width: 8px;
}

.tr-purchase-method-list label > em,
.tr-purchase-method-list label > .tr-purchase-svg-icon {
    align-items: center;
    background: rgba(17, 23, 15, 0.08);
    border-radius: 12px;
    color: #244417;
    display: inline-flex;
    font-size: 24px;
    height: 52px;
    justify-content: center;
    width: 52px;
}

.tr-purchase-method-list label strong,
.tr-purchase-method-list label span span,
.tr-purchase-method-list label b {
    display: block;
}

.tr-purchase-method-list label strong {
    color: #11170f;
    font-size: 12px;
    font-weight: 620;
    margin-bottom: 4px;
}

.tr-purchase-method-list label strong small {
    background: rgba(157, 199, 72, 0.38);
    border-radius: 999px;
    color: #3f6a1d;
    font-size: 8px;
    font-weight: 700;
    margin-left: 7px;
    padding: 3px 6px;
    vertical-align: middle;
}

.tr-purchase-method-list label span span,
.tr-purchase-method-list label b,
.tr-purchase-method-card > p {
    color: rgba(17, 23, 15, 0.68);
    font-size: 10.5px;
    font-weight: 430;
    line-height: 1.3;
}

.tr-purchase-method-list label b {
    color: rgba(17, 23, 15, 0.78);
    font-weight: 560;
    margin-top: 4px;
}

.tr-purchase-method-card > p {
    align-items: center;
    display: flex;
    gap: 8px;
    margin: 0;
}

.tr-purchase-side-stack {
    align-content: start;
    display: grid;
    gap: 14px;
    min-width: 0;
}

.tr-purchase-review-main {
    display: grid;
    gap: 16px;
    min-width: 0;
}

.tr-purchase-review-list {
    border: 1px solid rgba(17, 23, 15, 0.12);
    border-radius: 12px;
    margin: 0;
    overflow: hidden;
}

.tr-purchase-review-list div {
    align-items: center;
    border-top: 1px solid rgba(17, 23, 15, 0.08);
    display: grid;
    gap: 16px;
    grid-template-columns: minmax(180px, 0.46fr) minmax(0, 0.54fr);
    min-height: 52px;
    min-width: 0;
    padding: 10px 14px;
}

.tr-purchase-review-list div:first-child {
    border-top: 0;
}

.tr-purchase-review-list dt {
    align-items: center;
    color: rgba(17, 23, 15, 0.7);
    display: grid;
    font-size: 11.5px;
    font-weight: 540;
    gap: 12px;
    grid-template-columns: 34px minmax(0, 1fr);
    min-width: 0;
}

.tr-purchase-review-list dd {
    color: #11170f;
    font-size: 12px;
    font-weight: 570;
    margin: 0;
    min-width: 0;
    overflow-wrap: anywhere;
    text-align: right;
}

.tr-purchase-price-summary {
    border: 1px solid rgba(17, 23, 15, 0.12);
    border-radius: 12px;
    display: grid;
    gap: 10px;
    padding: 16px;
}

.tr-purchase-price-summary dl {
    display: grid;
    margin: 0;
}

.tr-purchase-price-summary .is-total {
    background: rgba(223, 242, 30, 0.12);
    border: 1px solid rgba(188, 207, 16, 0.38);
    border-radius: 9px;
    margin-top: 8px;
    min-height: 46px;
    padding: 0 12px;
}

.tr-purchase-price-summary dt {
    color: rgba(17, 23, 15, 0.66);
    font-size: 13px;
    font-weight: 560;
    line-height: 1.2;
    margin: 0;
}

.tr-purchase-price-summary dd {
    color: #11170f;
    font-size: 19px;
    font-weight: 720;
    letter-spacing: 0;
    line-height: 1.1;
}

.tr-purchase-price-summary .is-total dt {
    color: #11170f;
    font-size: 15px;
    font-weight: 650;
}

.tr-purchase-price-summary .is-total dd {
    color: #11170f;
    font-size: 24px;
    font-weight: 760;
}

.tr-purchase-terms {
    align-items: start;
    color: rgba(17, 23, 15, 0.76);
    display: grid;
    font-size: 11px;
    gap: 10px;
    grid-template-columns: 18px minmax(0, 1fr);
    line-height: 1.38;
    margin: 0;
}

.tr-purchase-terms input {
    accent-color: #86a600;
    margin-top: 2px;
}

.tr-purchase-terms a {
    color: #244417;
    font-weight: 650;
    text-decoration: underline;
}

.tr-purchase-feedback {
    background: rgba(247, 246, 225, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 12px;
    color: #11170f;
    font-size: 12.5px;
    font-weight: 520;
    line-height: 1.4;
    padding: 13px 16px;
}

.tr-purchase-feedback.is-danger {
    background: rgba(255, 236, 231, 0.96);
    border-color: rgba(200, 59, 45, 0.28);
    color: #8c251a;
}

.tr-purchase-feedback.is-success {
    background: rgba(238, 249, 219, 0.96);
    border-color: rgba(98, 144, 28, 0.28);
    color: #254816;
}

.tr-purchase-feedback a {
    color: inherit;
    font-weight: 700;
    text-decoration: underline;
}

.tr-purchase-continue.is-loading {
    cursor: progress;
    opacity: 0.72;
}

.tr-purchase-submit {
    min-width: min(100%, 304px);
}

@media (max-width: 1399px) {
    .tr-purchase-quantity-layout,
    .tr-purchase-payment-layout,
    .tr-purchase-review-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .tr-purchase-calculator-card {
        grid-row: auto;
    }

    .tr-purchase-investing-card {
        background: rgba(21, 45, 15, 0.92);
    }
}

@media (max-width: 1199.98px) {
    .tr-purchase-hero-row {
        grid-template-columns: minmax(0, 1fr);
    }

    .tr-purchase-top-metrics {
        max-width: 420px;
    }

    .tr-purchase-calculator-top,
    .tr-purchase-meta-strip {
        grid-template-columns: 1fr;
    }

    .tr-purchase-current-price {
        border-right: 0;
        border-bottom: 1px solid rgba(17, 23, 15, 0.14);
        padding: 0 0 18px;
    }

    .tr-purchase-meta-strip div,
    .tr-purchase-meta-strip div:first-child {
        border-left: 0;
        border-top: 1px solid rgba(17, 23, 15, 0.12);
    }

    .tr-purchase-meta-strip div:first-child {
        border-top: 0;
    }
}

@media (max-width: 760px) {
    .tr-purchase-top-metrics {
        grid-template-columns: 1fr;
        max-width: none;
    }

    .tr-purchase-top-metrics article {
        min-width: 0;
    }

    .tr-purchase-flow-card,
    .tr-purchase-calculator-card,
    .tr-purchase-method-card,
    .tr-purchase-price-summary {
        padding: 16px;
    }

    .tr-purchase-quantity-control > div {
        grid-template-columns: minmax(0, 1fr) 44px 44px;
    }

    .tr-purchase-method-list label,
    .tr-purchase-review-list div {
        grid-template-columns: 1fr;
    }

    .tr-purchase-method-list label > em,
    .tr-purchase-method-list label > .tr-purchase-svg-icon {
        display: none;
    }

    .tr-purchase-review-list dd {
        text-align: left;
    }
}

@media (max-width: 1560px) {
    .tr-commodity-market-row {
        grid-template-columns: minmax(350px, 0.44fr) minmax(0, 0.56fr);
    }

    .tr-commodity-tab-panel[data-detail-panel="overview"] {
        grid-template-columns: minmax(150px, 0.55fr) repeat(3, minmax(0, 1fr));
    }

    .tr-history-filter-bar {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .tr-history-stats-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 1399px) {
    .tr-commodity-detail-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .tr-commodity-detail-sidebar {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .tr-history-layout {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 1199.98px) {
    .tr-commodity-detail-page {
        padding-top: 88px;
    }

    .tr-commodity-market-row,
    .tr-commodity-tab-panel[data-detail-panel="overview"],
    .tr-commodity-detail-sidebar {
        grid-template-columns: 1fr;
    }

    .tr-commodity-hero-content {
        padding-right: 56px;
    }

    .tr-history-filter-bar,
    .tr-history-stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .tr-commodity-detail-page {
        padding-left: 14px;
        padding-right: 14px;
    }

    .tr-commodity-hero-content {
        align-items: start;
        gap: 16px;
        grid-template-columns: 112px minmax(0, 1fr);
        padding-right: 0;
    }

    .tr-commodity-hero-image {
        border-radius: 17px;
        height: 112px;
        width: 112px;
    }

    .tr-commodity-title-line h1 {
        font-size: 30px;
    }

    .tr-commodity-title-line > span {
        font-size: 10px;
        padding: 5px 8px;
    }

    .tr-commodity-market-row {
        grid-template-columns: 1fr;
    }

    .tr-commodity-price-main {
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .tr-commodity-change {
        grid-column: 1 / -1;
        justify-items: start;
    }

    .tr-commodity-stat-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tr-commodity-stat-strip div {
        border-left: 0;
        padding-left: 0;
    }

    .tr-commodity-chart-card header,
    .tr-commodity-quote-card {
        align-items: stretch;
        flex-direction: column;
    }

    .tr-commodity-range-tabs,
    .tr-commodity-tabs {
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .tr-history-heading {
        align-items: start;
    }

    .tr-history-heading figure {
        display: none;
    }

    .tr-history-filter-bar,
    .tr-history-stats-grid {
        grid-template-columns: 1fr;
    }

    .tr-history-chart {
        min-height: 190px;
    }

    .tr-history-chart .tr-commodity-chart-canvas {
        height: 180px;
    }

}

@media (max-width: 480px) {
    .tr-commodity-crumbs a:not(.tr-discover-back) {
        display: none;
    }

    .tr-commodity-hero-content {
        grid-template-columns: 1fr;
    }

    .tr-commodity-hero-image {
        height: 160px;
        width: 100%;
    }

    .tr-commodity-price-card,
    .tr-commodity-chart-card,
    .tr-commodity-tabs-card,
    .tr-commodity-invest-card,
    .tr-discover-ai-card,
    .tr-discover-highlights-card {
        border-radius: 14px;
    }

    .tr-commodity-stat-strip {
        grid-template-columns: 1fr;
    }
}

.transroc-shell:not(.transroc-dashboard-page) :where(
    .tr-page-header,
    .tr-admin-panel,
    .tr-admin-table-card,
    .tr-admin-queue-card,
    .tr-admin-export-card,
    .tr-admin-kpi-card,
    .tr-admin-guidance-card,
    .tr-portal-panel,
    .tr-profile-summary-card,
    .tr-profile-password-card,
    .tr-ui-card,
    .tr-table-card,
    .tr-onboarding-panel,
    .tr-member-guidance-card,
    .tr-member-commodity-card,
    .tr-member-status-callout,
    .tr-member-quote-summary,
    .tr-member-request-table-card,
    .tr-member-request-card,
    .tr-member-action-card,
    .tr-member-portfolio-summary,
    .tr-member-holding-card,
    .tr-member-guidance-panel,
    .tr-member-warehouse-card,
    .tr-member-media-card,
    .tr-early-sale-panel,
    .tr-metric-card,
    .tr-commodity-card,
    .tr-warehouse-card,
    .tr-state-panel,
    .tr-ai-card,
    .tr-filter-panel,
    .tr-market-filter-panel,
    .tr-market-summary-card,
    .tr-indicator-card,
    .tr-detail-card,
    .tr-freshness-card,
    .tr-chart-panel,
    .tr-chart-summary,
    .transroc-content .card,
    .tr-support-queue,
    .tr-support-tabs,
    .tr-support-modal-panel,
    .tr-ticket-chat-card,
    .tr-ticket-ops-chat-card,
    .tr-ticket-composer,
    .tr-ticket-attachment-card,
    .tr-ticket-meta-block,
    .tr-support-empty,
    .tr-card:not(.tr-field-metric-card)
) {
    background: var(--tr-card-bg) !important;
    border-color: var(--tr-card-border) !important;
    box-shadow: 0 18px 42px rgba(8, 45, 33, 0.26);
    color: var(--tr-card-text) !important;
}

.transroc-shell:not(.transroc-dashboard-page) :where(
    .tr-profile-field-list div,
    .tr-member-fact-grid div,
    .tr-support-update-list li,
    .tr-support-ticket-row,
    .tr-ticket-message
) {
    background: var(--tr-card-bg-soft) !important;
    border-color: rgba(232, 242, 218, 0.18) !important;
    color: var(--tr-card-text) !important;
}

.transroc-shell:not(.transroc-dashboard-page) :where(
    .tr-page-header,
    .tr-admin-panel,
    .tr-admin-table-card,
    .tr-admin-queue-card,
    .tr-admin-export-card,
    .tr-admin-kpi-card,
    .tr-admin-guidance-card,
    .tr-portal-panel,
    .tr-profile-summary-card,
    .tr-profile-password-card,
    .tr-ui-card,
    .tr-table-card,
    .tr-onboarding-panel,
    .tr-member-guidance-card,
    .tr-member-commodity-card,
    .tr-member-status-callout,
    .tr-member-quote-summary,
    .tr-member-request-table-card,
    .tr-member-request-card,
    .tr-member-action-card,
    .tr-member-portfolio-summary,
    .tr-member-holding-card,
    .tr-member-guidance-panel,
    .tr-member-warehouse-card,
    .tr-member-media-card,
    .tr-early-sale-panel,
    .tr-metric-card,
    .tr-commodity-card,
    .tr-warehouse-card,
    .tr-state-panel,
    .tr-ai-card,
    .tr-filter-panel,
    .tr-market-filter-panel,
    .tr-market-summary-card,
    .tr-indicator-card,
    .tr-detail-card,
    .tr-freshness-card,
    .tr-chart-panel,
    .tr-chart-summary,
    .transroc-content .card,
    .tr-support-queue,
    .tr-support-tabs,
    .tr-support-modal-panel,
    .tr-ticket-chat-card,
    .tr-ticket-ops-chat-card,
    .tr-ticket-composer,
    .tr-ticket-attachment-card,
    .tr-ticket-meta-block,
    .tr-support-empty,
    .tr-card:not(.tr-field-metric-card)
) :where(h1, h2, h3, h4, h5, h6, strong, b, dt, legend, caption) {
    color: var(--tr-card-text) !important;
}

.transroc-shell:not(.transroc-dashboard-page) :where(
    .tr-page-header,
    .tr-admin-panel,
    .tr-admin-table-card,
    .tr-admin-queue-card,
    .tr-admin-export-card,
    .tr-admin-kpi-card,
    .tr-admin-guidance-card,
    .tr-portal-panel,
    .tr-profile-summary-card,
    .tr-profile-password-card,
    .tr-ui-card,
    .tr-table-card,
    .tr-onboarding-panel,
    .tr-member-guidance-card,
    .tr-member-commodity-card,
    .tr-member-status-callout,
    .tr-member-quote-summary,
    .tr-member-request-table-card,
    .tr-member-request-card,
    .tr-member-action-card,
    .tr-member-portfolio-summary,
    .tr-member-holding-card,
    .tr-member-guidance-panel,
    .tr-member-warehouse-card,
    .tr-member-media-card,
    .tr-early-sale-panel,
    .tr-metric-card,
    .tr-commodity-card,
    .tr-warehouse-card,
    .tr-state-panel,
    .tr-ai-card,
    .tr-filter-panel,
    .tr-market-filter-panel,
    .tr-market-summary-card,
    .tr-indicator-card,
    .tr-detail-card,
    .tr-freshness-card,
    .tr-chart-panel,
    .tr-chart-summary,
    .transroc-content .card,
    .tr-support-queue,
    .tr-support-tabs,
    .tr-support-modal-panel,
    .tr-ticket-chat-card,
    .tr-ticket-ops-chat-card,
    .tr-ticket-composer,
    .tr-ticket-attachment-card,
    .tr-ticket-meta-block,
    .tr-support-empty,
    .tr-card:not(.tr-field-metric-card)
) :where(p, small, dd, li, label, th, td, span:not(.badge):not(.tr-support-badge), a:not(.btn)) {
    color: var(--tr-card-muted) !important;
}

.transroc-shell:not(.transroc-dashboard-page) :where(
    .tr-page-header,
    .tr-admin-panel,
    .tr-admin-table-card,
    .tr-admin-queue-card,
    .tr-admin-export-card,
    .tr-admin-kpi-card,
    .tr-admin-guidance-card,
    .tr-portal-panel,
    .tr-profile-summary-card,
    .tr-profile-password-card,
    .tr-ui-card,
    .tr-table-card,
    .tr-onboarding-panel,
    .tr-member-guidance-card,
    .tr-member-commodity-card,
    .tr-member-status-callout,
    .tr-member-quote-summary,
    .tr-member-request-table-card,
    .tr-member-request-card,
    .tr-member-action-card,
    .tr-member-portfolio-summary,
    .tr-member-holding-card,
    .tr-member-guidance-panel,
    .tr-member-warehouse-card,
    .tr-member-media-card,
    .tr-early-sale-panel,
    .tr-metric-card,
    .tr-commodity-card,
    .tr-warehouse-card,
    .tr-state-panel,
    .tr-ai-card,
    .tr-filter-panel,
    .tr-market-filter-panel,
    .tr-market-summary-card,
    .tr-indicator-card,
    .tr-detail-card,
    .tr-freshness-card,
    .tr-chart-panel,
    .tr-chart-summary,
    .transroc-content .card,
    .tr-support-queue,
    .tr-support-tabs,
    .tr-support-modal-panel,
    .tr-ticket-chat-card,
    .tr-ticket-ops-chat-card,
    .tr-ticket-composer,
    .tr-ticket-attachment-card,
    .tr-ticket-meta-block,
    .tr-support-empty,
    .tr-card:not(.tr-field-metric-card)
) :where(input, select, textarea) {
    background: rgba(247, 252, 244, 0.94) !important;
    border-color: rgba(232, 242, 218, 0.34) !important;
    color: var(--tr-green-950) !important;
}

.transroc-shell:not(.transroc-dashboard-page) :where(.btn-light, .btn-light span, .btn-light em),
.transroc-shell:not(.transroc-dashboard-page) :where(.tr-support-ticket-page, .tr-member-support-page) .tr-admin-section-heading > a,
.transroc-shell:not(.transroc-dashboard-page) :where(.tr-support-ticket-page, .tr-member-support-page) .tr-admin-section-heading > a span,
.transroc-shell:not(.transroc-dashboard-page) :where(.tr-support-ticket-page, .tr-member-support-page) .tr-admin-section-heading > a em {
    color: var(--tr-green-950) !important;
}

.transroc-shell:not(.transroc-dashboard-page) .tr-support-tab.is-active,
.transroc-shell:not(.transroc-dashboard-page) .tr-support-tab.is-active span,
.transroc-shell:not(.transroc-dashboard-page) .tr-support-tab.is-active em {
    color: var(--tr-green-950) !important;
    text-shadow: none;
}

.transroc-shell:not(.transroc-dashboard-page) :where(.btn-primary, .btn-primary span, .btn-primary em) {
    color: var(--tr-primary-lime-ink) !important;
}

.transroc-shell:not(.transroc-dashboard-page) .tr-support-admin-kpis article {
    background: var(--tr-card-bg) !important;
    border: 1px solid var(--tr-card-border) !important;
    box-shadow: 0 18px 42px rgba(8, 45, 33, 0.24);
    color: var(--tr-card-text) !important;
}

.transroc-shell:not(.transroc-dashboard-page) .tr-support-admin-kpis article span {
    color: var(--tr-card-muted) !important;
}

.transroc-shell:not(.transroc-dashboard-page) .tr-support-admin-kpis article strong {
    color: var(--tr-card-text) !important;
}

.transroc-shell:not(.transroc-dashboard-page) .tr-support-admin-queue .table-responsive {
    background: rgba(62, 81, 43, 0.42);
    border: 1px solid rgba(232, 242, 218, 0.14);
    border-radius: 10px;
    overflow: auto;
}

.transroc-shell:not(.transroc-dashboard-page) .tr-support-admin-queue .tr-admin-queue-table {
    --bs-table-accent-bg: transparent;
    --bs-table-active-bg: rgba(73, 95, 53, 0.5);
    --bs-table-active-color: var(--tr-card-text);
    --bs-table-bg: transparent;
    --bs-table-border-color: rgba(232, 242, 218, 0.14);
    --bs-table-color: var(--tr-card-muted);
    --bs-table-hover-bg: rgba(79, 103, 58, 0.6);
    --bs-table-hover-color: var(--tr-card-text);
    --bs-table-striped-bg: rgba(73, 95, 53, 0.38);
    --bs-table-striped-color: var(--tr-card-muted);
    background: transparent !important;
    color: var(--tr-card-muted) !important;
    margin-bottom: 0;
}

.transroc-shell:not(.transroc-dashboard-page) .tr-support-admin-queue .tr-admin-queue-table :is(th, td):nth-child(1) {
    width: 24%;
}

.transroc-shell:not(.transroc-dashboard-page) .tr-support-admin-queue .tr-admin-queue-table :is(th, td):nth-child(2) {
    width: 22%;
}

.transroc-shell:not(.transroc-dashboard-page) .tr-support-admin-queue .tr-admin-queue-table :is(th, td):nth-child(3) {
    width: 13%;
}

.transroc-shell:not(.transroc-dashboard-page) .tr-support-admin-queue .tr-admin-queue-table :is(th, td):nth-child(4) {
    width: 11%;
}

.transroc-shell:not(.transroc-dashboard-page) .tr-support-admin-queue .tr-admin-queue-table :is(th, td):nth-child(5) {
    width: 10%;
}

.transroc-shell:not(.transroc-dashboard-page) .tr-support-admin-queue .tr-admin-queue-table :is(th, td):nth-child(6) {
    width: 11%;
}

.transroc-shell:not(.transroc-dashboard-page) .tr-support-admin-queue .tr-admin-queue-table :is(th, td):nth-child(7) {
    width: 9%;
}

.transroc-shell:not(.transroc-dashboard-page) .tr-support-admin-queue .tr-admin-queue-table td:nth-child(-n+3) {
    overflow-wrap: anywhere;
}

.transroc-shell:not(.transroc-dashboard-page) .tr-support-admin-queue .tr-admin-queue-table :is(th, td):nth-child(n+4) {
    white-space: nowrap;
}

.transroc-shell:not(.transroc-dashboard-page) .tr-support-admin-queue .tr-admin-queue-table thead th {
    background: rgba(62, 81, 43, 0.9) !important;
    border-color: rgba(232, 242, 218, 0.16) !important;
    box-shadow: none !important;
    color: var(--tr-card-text) !important;
}

.transroc-shell:not(.transroc-dashboard-page) .tr-support-admin-queue .tr-admin-queue-table tbody tr > * {
    background-color: rgba(73, 95, 53, 0.42) !important;
    border-color: rgba(232, 242, 218, 0.12) !important;
    box-shadow: none !important;
    color: var(--tr-card-muted) !important;
}

.transroc-shell:not(.transroc-dashboard-page) .tr-support-admin-queue .tr-admin-queue-table tbody tr:nth-child(even) > * {
    background-color: var(--tr-card-bg-subtle) !important;
}

.transroc-shell:not(.transroc-dashboard-page) .tr-support-admin-queue .tr-admin-queue-table tbody tr:hover > * {
    background-color: rgba(79, 103, 58, 0.62) !important;
    color: var(--tr-card-text) !important;
}

.transroc-shell:not(.transroc-dashboard-page) .tr-support-admin-queue .tr-admin-queue-table caption,
.transroc-shell:not(.transroc-dashboard-page) .tr-support-admin-queue .tr-admin-queue-table td,
.transroc-shell:not(.transroc-dashboard-page) .tr-support-admin-queue .tr-admin-queue-table td span:not(.tr-support-badge),
.transroc-shell:not(.transroc-dashboard-page) .tr-support-admin-queue .tr-admin-queue-table td small {
    color: var(--tr-card-muted) !important;
}

.transroc-shell:not(.transroc-dashboard-page) .tr-support-admin-queue .tr-admin-queue-table td strong {
    color: var(--tr-card-text) !important;
}

.transroc-shell:not(.transroc-dashboard-page) .tr-ticket-meta-drawer {
    background: var(--tr-card-bg) !important;
    border: 1px solid var(--tr-card-border) !important;
    box-shadow: 0 14px 34px rgba(8, 45, 33, 0.2);
}

.transroc-shell:not(.transroc-dashboard-page) .tr-ticket-meta-drawer summary {
    background: transparent !important;
    color: var(--tr-card-text) !important;
}

.transroc-shell:not(.transroc-dashboard-page) .tr-ticket-meta-drawer summary small,
.transroc-shell:not(.transroc-dashboard-page) .tr-ticket-meta-drawer summary strong,
.transroc-shell:not(.transroc-dashboard-page) .tr-ticket-meta-drawer summary em {
    color: var(--tr-card-text) !important;
}

.transroc-shell:not(.transroc-dashboard-page) .tr-ticket-meta-drawer summary small {
    color: var(--tr-card-muted) !important;
}

.transroc-shell:not(.transroc-dashboard-page) .tr-ticket-meta-drawer-grid {
    border-color: rgba(232, 242, 218, 0.14) !important;
}

.transroc-shell:not(.transroc-dashboard-page) .tr-ticket-ops-chat-card {
    max-height: none;
    overflow: visible;
}

.transroc-shell:not(.transroc-dashboard-page) .tr-ticket-ops-chat-card .tr-ticket-message-list {
    max-height: clamp(260px, 42vh, 520px);
    overflow-y: auto;
}

.transroc-shell:not(.transroc-dashboard-page) .tr-ticket-join-gate {
    background: var(--tr-card-bg-soft) !important;
    border-color: rgba(232, 242, 218, 0.18) !important;
    color: var(--tr-card-muted) !important;
}

.transroc-shell:not(.transroc-dashboard-page) .tr-ticket-join-gate strong {
    color: var(--tr-card-text) !important;
}

.transroc-shell:not(.transroc-dashboard-page) .tr-ticket-join-gate span {
    color: var(--tr-card-muted) !important;
}

.transroc-shell:not(.transroc-dashboard-page) .tr-support-participant-list li {
    background: var(--tr-card-bg-soft) !important;
    border-color: rgba(232, 242, 218, 0.18) !important;
    color: var(--tr-card-muted) !important;
}

.transroc-shell:not(.transroc-dashboard-page) .tr-support-participant-list strong {
    color: var(--tr-card-text) !important;
}

.transroc-shell:not(.transroc-dashboard-page) .tr-support-participant-list span {
    color: var(--tr-card-muted) !important;
}

.transroc-shell:not(.transroc-dashboard-page) .tr-ticket-history-panel .table-responsive,
.transroc-shell:not(.transroc-dashboard-page) .tr-ticket-history .table-responsive {
    background: rgba(62, 81, 43, 0.42) !important;
    border: 1px solid rgba(232, 242, 218, 0.14);
    border-radius: 10px;
    overflow: auto;
}

.transroc-shell:not(.transroc-dashboard-page) .tr-ticket-history-panel .tr-support-admin-tables {
    grid-template-columns: 1fr;
}

.transroc-shell:not(.transroc-dashboard-page) :where(.tr-ticket-history-panel, .tr-ticket-history) .tr-admin-queue-table {
    --bs-table-accent-bg: transparent;
    --bs-table-bg: transparent;
    --bs-table-border-color: rgba(232, 242, 218, 0.14);
    --bs-table-color: var(--tr-card-muted);
    --bs-table-hover-bg: rgba(79, 103, 58, 0.58);
    --bs-table-hover-color: var(--tr-card-text);
    background: transparent !important;
    color: var(--tr-card-muted) !important;
    margin-bottom: 0;
    min-width: 0;
    table-layout: fixed;
    width: 100%;
}

.transroc-shell:not(.transroc-dashboard-page) :where(.tr-ticket-history-panel, .tr-ticket-history) .tr-admin-queue-table > :not(caption) > * > * {
    background-color: var(--tr-card-bg-subtle) !important;
    border-color: rgba(232, 242, 218, 0.12) !important;
    box-shadow: none !important;
    color: var(--tr-card-muted) !important;
    overflow-wrap: anywhere;
    padding: 10px 12px;
    white-space: normal !important;
}

.transroc-shell:not(.transroc-dashboard-page) :where(.tr-ticket-history-panel, .tr-ticket-history) .tr-admin-queue-table thead th {
    background: rgba(62, 81, 43, 0.9) !important;
    color: var(--tr-card-text) !important;
}

.transroc-shell:not(.transroc-dashboard-page) :where(.tr-ticket-history-panel, .tr-ticket-history) .tr-admin-queue-table caption,
.transroc-shell:not(.transroc-dashboard-page) :where(.tr-ticket-history-panel, .tr-ticket-history) .tr-admin-queue-table td,
.transroc-shell:not(.transroc-dashboard-page) :where(.tr-ticket-history-panel, .tr-ticket-history) .tr-admin-queue-table td span,
.transroc-shell:not(.transroc-dashboard-page) :where(.tr-ticket-history-panel, .tr-ticket-history) .tr-admin-queue-table td small {
    color: var(--tr-card-muted) !important;
}

.transroc-shell:not(.transroc-dashboard-page) :where(.tr-ticket-history-panel, .tr-ticket-history) .tr-admin-queue-table td strong {
    color: var(--tr-card-text) !important;
}

.transroc-shell:not(.transroc-dashboard-page) .tr-ticket-composer {
    background: rgba(62, 81, 43, 0.92) !important;
    border: 1px solid rgba(232, 242, 218, 0.2) !important;
    border-radius: 14px;
    bottom: auto !important;
    box-shadow: 0 14px 34px rgba(6, 18, 8, 0.28);
    display: block !important;
    flex: 0 0 auto;
    margin-top: 12px;
    padding: 10px;
    position: relative !important;
    width: 100%;
    z-index: 2;
}

.tr-chat-composer-row {
    align-items: center;
    display: grid;
    gap: 10px;
    grid-template-columns: 52px minmax(0, 1fr) 56px;
    width: 100%;
}

.tr-chat-file-button {
    align-items: center;
    background: var(--tr-primary-lime) !important;
    border: 1px solid rgba(220, 255, 0, 0.72) !important;
    border-radius: 999px;
    box-shadow: 0 10px 22px rgba(6, 18, 8, 0.22);
    color: var(--tr-primary-lime-ink) !important;
    cursor: pointer;
    display: inline-flex !important;
    flex: 0 0 52px;
    height: 52px;
    justify-content: center;
    margin: 0;
    position: relative;
    transition: transform 160ms ease, box-shadow 160ms ease;
    width: 52px;
}

.tr-chat-file-button:hover,
.tr-chat-file-button:focus-within {
    box-shadow: 0 14px 28px rgba(6, 18, 8, 0.3);
    transform: translateY(-1px);
}

.tr-chat-file-button input[type="file"] {
    height: 1px !important;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    position: absolute;
    width: 1px !important;
}

.tr-chat-file-button em {
    color: inherit !important;
    font-size: 22px;
    line-height: 1;
}

.tr-chat-file-count {
    align-items: center;
    background: var(--tr-primary-lime);
    border-radius: 999px;
    color: var(--tr-primary-lime-ink) !important;
    display: inline-flex !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    height: 17px;
    justify-content: center;
    line-height: 1;
    min-width: 17px;
    padding: 0 5px;
    position: absolute;
    right: -3px;
    top: -4px;
}

.tr-chat-file-count[hidden] {
    display: none !important;
}

.tr-chat-message-field {
    display: block !important;
    margin: 0;
    min-width: 0;
    width: 100%;
}

.tr-chat-message-field > span {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

.transroc-shell:not(.transroc-dashboard-page) .tr-ticket-composer .tr-chat-message-input {
    background: rgba(247, 252, 244, 0.96) !important;
    border: 1px solid rgba(232, 242, 218, 0.36) !important;
    border-radius: 999px;
    color: var(--tr-green-950) !important;
    font-size: 13px;
    min-height: 52px;
    padding: 0 18px;
    width: 100%;
}

.transroc-shell:not(.transroc-dashboard-page) .tr-ticket-composer .tr-chat-message-input::placeholder {
    color: rgba(20, 32, 11, 0.58) !important;
}

.transroc-shell:not(.transroc-dashboard-page) .tr-ticket-composer .tr-chat-send-button {
    align-items: center;
    border-radius: 999px;
    display: inline-flex;
    height: 52px;
    justify-content: center;
    min-height: 52px;
    min-width: 56px;
    padding: 0;
    width: 56px;
}

.tr-chat-send-button span {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

.tr-support-typing-indicator {
    align-items: center;
    color: var(--tr-card-muted) !important;
    display: inline-flex;
    font-size: 12px;
    font-style: italic;
    font-weight: 560;
    gap: 6px;
    min-height: 22px;
    padding: 2px 4px 0;
}

.tr-support-typing-indicator[hidden] {
    display: none !important;
}

.transroc-shell:not(.transroc-dashboard-page) .tr-page-header,
body[data-shell-role="member"] .transroc-shell:not(.transroc-dashboard-page) .tr-page-header,
.tr-member-support-page .tr-page-header,
.tr-support-ticket-page .tr-page-header {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    margin-bottom: 18px;
    padding: 0 !important;
}

.transroc-shell:not(.transroc-dashboard-page) .tr-page-header h1,
.transroc-shell:not(.transroc-dashboard-page) .tr-page-header p,
.transroc-shell:not(.transroc-dashboard-page) .tr-breadcrumbs,
.transroc-shell:not(.transroc-dashboard-page) .tr-breadcrumbs a,
.transroc-shell:not(.transroc-dashboard-page) .tr-breadcrumbs span,
.transroc-shell:not(.transroc-dashboard-page) .tr-breadcrumbs em,
.transroc-shell:not(.transroc-dashboard-page) .tr-auto-breadcrumbs,
.transroc-shell:not(.transroc-dashboard-page) .tr-auto-breadcrumbs a,
.transroc-shell:not(.transroc-dashboard-page) .tr-auto-breadcrumbs span,
.transroc-shell:not(.transroc-dashboard-page) .tr-auto-breadcrumbs em {
    color: var(--tr-card-text) !important;
    text-shadow: 0 1px 2px rgba(5, 13, 6, 0.38);
}

.transroc-shell:not(.transroc-dashboard-page) .tr-page-header p,
.transroc-shell:not(.transroc-dashboard-page) .tr-breadcrumbs span,
.transroc-shell:not(.transroc-dashboard-page) .tr-auto-breadcrumbs span {
    color: var(--tr-card-muted) !important;
}

.tr-auto-breadcrumbs {
    margin-bottom: 14px;
}

/* Inventory management dashboard */
.transroc-inventory-page {
    --tr-inventory-panel: rgba(42, 67, 31, 0.76);
    --tr-inventory-panel-strong: rgba(42, 67, 31, 0.86);
    --tr-inventory-line: rgba(255, 255, 255, 0.12);
}

.tr-inventory-surface {
    gap: 14px;
}

.tr-inventory-topbar {
    align-items: center;
}

.tr-inventory-weather {
    align-items: center;
    display: flex;
    gap: 12px;
}

.tr-inventory-weather span {
    align-items: center;
    background: rgba(252, 250, 238, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    color: #111812;
    display: grid;
    gap: 0 12px;
    grid-template-areas:
        "icon label"
        "icon value";
    grid-template-columns: 42px minmax(0, 1fr);
    min-height: 68px;
    min-width: 168px;
    padding: 10px 14px;
}

.tr-inventory-weather em {
    align-items: center;
    background: rgba(31, 39, 33, 0.08);
    border-radius: 50%;
    display: inline-flex;
    font-size: 21px;
    grid-area: icon;
    height: 42px;
    justify-content: center;
    width: 42px;
}

.tr-inventory-weather small {
    color: rgba(31, 39, 33, 0.74);
    font-size: 10px;
    font-weight: 620;
    grid-area: label;
    line-height: 1.1;
}

.tr-inventory-weather strong {
    color: #111812;
    font-size: 17px;
    font-weight: 680;
    grid-area: value;
    line-height: 1.1;
}

.tr-inventory-alert {
    margin: 0;
    position: relative;
    z-index: 3;
}

.tr-inventory-main {
    align-items: start;
    display: grid;
    gap: 22px;
    grid-template-columns: minmax(0, 1fr) minmax(310px, 380px);
    min-width: 0;
}

.tr-inventory-primary,
.tr-inventory-sidebar {
    display: grid;
    gap: 16px;
    min-width: 0;
}

.tr-inventory-filterbar {
    align-items: center;
    display: grid;
    gap: 16px;
    grid-template-columns: minmax(260px, 1.3fr) repeat(3, minmax(150px, 0.62fr)) minmax(150px, auto);
    min-width: 0;
}

.tr-inventory-filterbar label {
    align-items: center;
    background: rgba(43, 69, 32, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 11px;
    color: rgba(255, 255, 255, 0.9);
    display: grid;
    grid-template-columns: minmax(0, 1fr) 20px;
    min-height: 50px;
    min-width: 0;
    padding: 0 14px;
    position: relative;
}

.tr-inventory-filterbar label > span {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

.tr-inventory-filterbar label > em {
    font-size: 18px;
    opacity: 0.82;
    pointer-events: none;
}

.tr-inventory-search {
    gap: 10px;
    grid-template-columns: 24px minmax(0, 1fr) !important;
}

.tr-inventory-search > em {
    font-size: 21px;
}

.tr-inventory-filterbar input,
.tr-inventory-filterbar select {
    appearance: none;
    background: transparent;
    border: 0;
    color: rgba(255, 255, 255, 0.95);
    font-family: inherit;
    font-size: 13px;
    font-weight: 560;
    min-width: 0;
    outline: 0;
    width: 100%;
}

.tr-inventory-filterbar input::placeholder {
    color: rgba(255, 255, 255, 0.68);
}

.tr-inventory-filterbar select option {
    color: #182313;
}

.tr-inventory-add-button {
    align-items: center;
    background: var(--tr-chart-lime);
    border: 0;
    border-radius: 9px;
    color: #17230e;
    cursor: pointer;
    display: inline-flex;
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    gap: 9px;
    justify-content: center;
    min-height: 50px;
    padding: 0 18px;
    text-decoration: none;
    white-space: nowrap;
}

.tr-inventory-add-button em {
    font-size: 18px;
}

.tr-inventory-add-panel {
    background: rgba(252, 250, 238, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 14px;
    box-shadow: var(--tr-dashboard-shadow);
    padding: 16px;
}

.tr-inventory-add-panel form {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.tr-inventory-add-panel label {
    display: grid;
    gap: 6px;
    min-width: 0;
}

.tr-inventory-add-panel label span {
    color: rgba(31, 39, 33, 0.7);
    font-size: 11px;
    font-weight: 700;
}

.tr-inventory-add-panel input,
.tr-inventory-add-panel select {
    background: rgba(255, 255, 248, 0.82);
    border: 1px solid rgba(31, 39, 33, 0.12);
    border-radius: 10px;
    color: #17230e;
    font-family: inherit;
    min-height: 40px;
    padding: 0 11px;
}

.tr-inventory-add-panel form > div {
    align-items: end;
    display: flex;
    gap: 10px;
}

.tr-inventory-add-panel button,
.tr-inventory-add-panel a {
    align-items: center;
    border-radius: 10px;
    display: inline-flex;
    font-size: 12px;
    font-weight: 700;
    gap: 8px;
    min-height: 40px;
    padding: 0 14px;
}

.tr-inventory-add-panel button {
    background: #405f2d;
    border: 0;
    color: #fff;
}

.tr-inventory-add-panel a {
    background: rgba(31, 39, 33, 0.08);
    color: #1d241d;
}

.transroc-dashboard-page .tr-inventory-metric-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.transroc-dashboard-page .tr-inventory-metric-card,
.transroc-dashboard-page .tr-inventory-metric-card:nth-child(n+4) {
    background: rgba(42, 67, 31, 0.82);
    border-color: rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    color: #fff;
    grid-column: auto;
    min-height: 142px;
    padding: 18px;
    position: relative;
}

.transroc-dashboard-page .tr-inventory-metric-card .tr-card-icon {
    background: rgba(216, 242, 10, 0.14);
    color: var(--tr-chart-lime);
}

.transroc-dashboard-page .tr-inventory-metric-card.is-warning .tr-card-icon {
    background: rgba(239, 207, 37, 0.16);
    color: #efcf25;
}

.transroc-dashboard-page .tr-inventory-metric-card.is-danger .tr-card-icon {
    background: rgba(239, 69, 63, 0.18);
    color: #ff5a52;
}

.transroc-dashboard-page .tr-inventory-metric-card p,
.transroc-dashboard-page .tr-inventory-metric-card strong,
.transroc-dashboard-page .tr-inventory-metric-card .tr-field-meta {
    color: rgba(255, 255, 255, 0.92);
}

.transroc-dashboard-page .tr-inventory-metric-card p {
    margin-bottom: 13px;
}

.transroc-dashboard-page .tr-inventory-metric-card strong {
    display: block;
    font-size: 16px;
    line-height: 1.08;
    overflow: visible;
    white-space: nowrap;
}

.transroc-dashboard-page .tr-inventory-metric-card .tr-counter {
    overflow: visible;
    white-space: nowrap;
}

.transroc-dashboard-page .tr-inventory-metric-card .tr-field-meta {
    font-size: 10.5px;
    margin-top: 12px;
}

.transroc-dashboard-page .tr-inventory-metric-card .tr-field-meta.is-positive {
    color: rgba(237, 255, 210, 0.96);
}

.tr-inventory-sparkline {
    bottom: 12px;
    height: 30px;
    left: 16px;
    opacity: 0.92;
    position: absolute;
    right: 14px;
    width: calc(100% - 30px);
}

.tr-inventory-sparkline polyline {
    fill: none;
    stroke: var(--tr-chart-lime);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.tr-inventory-metric-card.is-warning .tr-inventory-sparkline polyline {
    stroke: #efcf25;
}

.tr-inventory-metric-card.is-danger .tr-inventory-sparkline polyline {
    stroke: #ff4b43;
}

.tr-inventory-table-card {
    background: rgba(42, 67, 31, 0.82) !important;
    border-color: rgba(255, 255, 255, 0.12) !important;
    border-radius: 13px !important;
    color: rgba(255, 255, 255, 0.9);
    overflow: hidden;
    padding: 16px 16px 12px;
}

.tr-inventory-tabs {
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(5, auto) minmax(0, 1fr) auto auto;
    min-width: 0;
    padding: 0 10px 10px;
}

.tr-inventory-tabs a:not(.tr-inventory-export) {
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
    font-weight: 640;
    line-height: 1.2;
    padding: 10px 0;
    position: relative;
    white-space: nowrap;
}

.tr-inventory-tabs a.is-active {
    color: var(--tr-chart-lime);
}

.tr-inventory-tabs a.is-active::after {
    background: var(--tr-chart-lime);
    border-radius: 999px;
    content: "";
    height: 2px;
    inset: auto 0 -11px;
    position: absolute;
}

.tr-inventory-export,
.tr-inventory-icon-button {
    align-items: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.9);
    display: inline-flex;
    font-size: 12px;
    font-weight: 640;
    gap: 8px;
    min-height: 38px;
    padding: 0 13px;
}

.tr-inventory-icon-button {
    cursor: pointer;
    justify-content: center;
    padding: 0;
    width: 38px;
}

.tr-inventory-table-wrap {
    margin-top: 10px;
    overflow-x: auto;
}

.tr-inventory-table {
    border-collapse: collapse;
    color: rgba(255, 255, 255, 0.88);
    font-size: 11px;
    min-width: 960px;
    width: 100%;
}

.tr-inventory-table caption {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

.tr-inventory-table th,
.tr-inventory-table td {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px 7px;
    text-align: left;
    vertical-align: middle;
}

.tr-inventory-table th {
    color: rgba(255, 255, 255, 0.7);
    font-size: 10px;
    font-weight: 700;
}

.tr-inventory-table th:nth-child(2),
.tr-inventory-table td:nth-child(2) {
    min-width: 132px;
}

.tr-inventory-table th:nth-child(4),
.tr-inventory-table td:nth-child(4) {
    min-width: 122px;
}

.tr-inventory-table tbody tr.is-selected,
.tr-inventory-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.04);
}

.tr-inventory-table input[type="checkbox"] {
    accent-color: var(--tr-chart-lime);
}

.tr-inventory-commodity {
    align-items: center;
    display: grid;
    gap: 10px;
    grid-template-columns: 42px minmax(0, 1fr);
    min-width: 0;
}

.tr-inventory-commodity strong,
.tr-inventory-commodity small {
    display: block;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tr-inventory-commodity strong {
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

.tr-inventory-commodity small {
    background: rgba(216, 242, 10, 0.18);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 9.5px;
    font-weight: 700;
    margin-top: 3px;
    max-width: max-content;
    padding: 2px 7px;
}

.tr-inventory-status {
    border-radius: 999px;
    display: inline-flex;
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    padding: 7px 9px;
    white-space: nowrap;
}

.tr-inventory-status.is-success {
    background: rgba(122, 181, 64, 0.28);
    color: #d6ffb7;
}

.tr-inventory-status.is-warning {
    background: rgba(239, 207, 37, 0.24);
    color: #ffe65a;
}

.tr-inventory-status.is-danger {
    background: rgba(239, 69, 63, 0.28);
    color: #ffc3c0;
}

.tr-inventory-table time {
    color: rgba(255, 255, 255, 0.78);
    display: block;
    line-height: 1.35;
    min-width: 92px;
}

.tr-inventory-table time span {
    display: block;
}

.tr-inventory-row-action {
    background: transparent;
    border: 0;
    color: rgba(255, 255, 255, 0.72);
    cursor: pointer;
    font-size: 18px;
}

.tr-inventory-empty {
    color: rgba(255, 255, 255, 0.72);
    padding: 28px !important;
    text-align: center !important;
}

.tr-inventory-table-footer {
    align-items: center;
    color: rgba(255, 255, 255, 0.78);
    display: flex;
    font-size: 12px;
    font-weight: 560;
    gap: 16px;
    justify-content: space-between;
    padding: 14px 10px 2px;
}

.tr-inventory-table-footer nav {
    align-items: center;
    display: flex;
    gap: 7px;
}

.tr-inventory-table-footer nav a {
    align-items: center;
    border-radius: 7px;
    color: rgba(255, 255, 255, 0.8);
    display: inline-flex;
    font-size: 12px;
    font-weight: 700;
    height: 30px;
    justify-content: center;
    min-width: 30px;
    padding: 0 8px;
}

.tr-inventory-table-footer nav a.is-active {
    background: var(--tr-chart-lime);
    color: #182313;
}

.tr-inventory-table-footer nav a.is-disabled {
    opacity: 0.42;
    pointer-events: none;
}

.tr-inventory-help {
    align-items: center;
    background: rgba(42, 67, 31, 0.84) !important;
    border-color: rgba(255, 255, 255, 0.12) !important;
    border-radius: 13px !important;
    color: #fff;
    display: grid;
    gap: 18px;
    grid-template-columns: 58px minmax(0, 1fr) minmax(190px, auto) minmax(190px, auto);
    padding: 18px 26px;
}

.tr-inventory-help > span {
    align-items: center;
    background: rgba(216, 242, 10, 0.18);
    border-radius: 16px;
    color: #eaff37;
    display: inline-flex;
    font-size: 30px;
    height: 58px;
    justify-content: center;
    width: 58px;
}

.tr-inventory-help h2 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 6px;
}

.tr-inventory-help p {
    color: rgba(255, 255, 255, 0.74);
    font-size: 12px;
    font-weight: 560;
    margin: 0;
}

.tr-inventory-help a {
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 10px;
    color: #fff;
    display: inline-flex;
    font-size: 13px;
    font-weight: 700;
    gap: 10px;
    justify-content: center;
    min-height: 48px;
    padding: 0 18px;
}

.tr-inventory-help a.is-primary {
    background: var(--tr-chart-lime);
    border-color: var(--tr-chart-lime);
    color: #17230e;
}

.tr-inventory-sidebar .tr-advisor-card {
    min-height: 430px;
}

.tr-inventory-status-card,
.tr-inventory-activity-card {
    background: rgba(42, 67, 31, 0.84) !important;
    border-color: rgba(255, 255, 255, 0.12) !important;
    border-radius: 13px !important;
    color: #fff;
    padding: 20px;
}

.tr-inventory-status-card header,
.tr-inventory-activity-card header {
    align-items: center;
    display: flex;
    gap: 16px;
    justify-content: space-between;
    margin-bottom: 18px;
}

.tr-inventory-status-card h2,
.tr-inventory-activity-card h2 {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin: 0;
}

.tr-inventory-status-card header a,
.tr-inventory-activity-card header a {
    color: var(--tr-chart-lime);
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
}

.tr-inventory-status-body {
    align-items: center;
    display: grid;
    gap: 18px;
    grid-template-columns: 160px minmax(0, 1fr);
}

.tr-inventory-donut {
    align-items: center;
    aspect-ratio: 1;
    background: conic-gradient(var(--inventory-donut));
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    position: relative;
}

.tr-inventory-donut::after {
    background: rgba(42, 67, 31, 0.96);
    border-radius: inherit;
    content: "";
    inset: 29px;
    position: absolute;
}

.tr-inventory-donut span {
    color: #fff;
    display: grid;
    gap: 3px;
    place-items: center;
    position: relative;
    text-align: center;
    z-index: 1;
}

.tr-inventory-donut strong {
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    line-height: 1;
}

.tr-inventory-donut small {
    color: rgba(255, 255, 255, 0.74);
    font-size: 10px;
    font-weight: 650;
}

.tr-inventory-status-list {
    display: grid;
    gap: 13px;
}

.tr-inventory-status-list div {
    align-items: center;
    display: grid;
    gap: 10px;
    grid-template-columns: 26px minmax(0, 1fr) auto;
}

.tr-inventory-status-list em,
.tr-inventory-activity-list article > em {
    align-items: center;
    border-radius: 8px;
    display: inline-flex;
    height: 26px;
    justify-content: center;
    width: 26px;
}

.tr-inventory-status-list .is-green em,
.tr-inventory-activity-list .is-green > em {
    background: #92c73f;
    color: #1c2a0e;
}

.tr-inventory-status-list .is-yellow em,
.tr-inventory-activity-list .is-yellow > em {
    background: #efcf25;
    color: #372f00;
}

.tr-inventory-status-list .is-red em,
.tr-inventory-activity-list .is-red > em {
    background: #ef453f;
    color: #fff;
}

.tr-inventory-status-list strong,
.tr-inventory-status-list small {
    display: block;
    line-height: 1.18;
}

.tr-inventory-status-list strong {
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
    font-weight: 700;
}

.tr-inventory-status-list small {
    color: rgba(255, 255, 255, 0.62);
    font-size: 10px;
    font-weight: 560;
}

.tr-inventory-status-list b {
    color: #fff;
    font-size: 18px;
    font-weight: 780;
}

.tr-inventory-activity-list {
    display: grid;
    gap: 15px;
}

.tr-inventory-activity-list article {
    display: grid;
    gap: 11px;
    grid-template-columns: 34px minmax(0, 1fr);
    min-width: 0;
}

.tr-inventory-activity-list article > em {
    height: 34px;
    width: 34px;
}

.tr-inventory-activity-list strong,
.tr-inventory-activity-list small,
.tr-inventory-activity-list time {
    display: block;
    line-height: 1.25;
    min-width: 0;
}

.tr-inventory-activity-list strong {
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

.tr-inventory-activity-list small,
.tr-inventory-activity-list time {
    color: rgba(255, 255, 255, 0.68);
    font-size: 10.5px;
    font-weight: 560;
}

.tr-inventory-activity-list time {
    margin-top: 2px;
}

@media (max-width: 1535.98px) {
    .tr-inventory-main {
        grid-template-columns: minmax(0, 1fr);
    }

    .tr-inventory-filterbar {
        grid-template-columns: minmax(220px, 1fr) repeat(2, minmax(150px, 0.65fr));
    }

    .tr-inventory-filterbar label:nth-of-type(4),
    .tr-inventory-add-button {
        grid-column: span 1;
    }

    .transroc-dashboard-page .tr-inventory-metric-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .tr-inventory-sidebar {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tr-inventory-sidebar .tr-inventory-ai {
        grid-column: span 2;
        min-height: auto;
    }

    .tr-inventory-table {
        font-size: 10.5px;
    }

    .tr-inventory-table th,
    .tr-inventory-table td {
        padding-left: 7px;
        padding-right: 7px;
    }

    .tr-inventory-commodity {
        gap: 8px;
        grid-template-columns: 36px minmax(0, 1fr);
    }

    .tr-inventory-table th:last-child,
    .tr-inventory-table td:last-child {
        display: none;
    }
}

@media (max-width: 1199.98px) {
    .tr-inventory-main {
        grid-template-columns: 1fr;
    }

    .tr-inventory-sidebar {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tr-inventory-sidebar .tr-inventory-ai {
        grid-column: span 2;
        min-height: auto;
    }

    .tr-inventory-add-panel form {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .tr-inventory-topbar,
    .tr-inventory-table-footer,
    .tr-inventory-help {
        align-items: stretch;
        flex-direction: column;
    }

    .tr-inventory-weather,
    .tr-inventory-table-footer {
        width: 100%;
    }

    .tr-inventory-filterbar,
    .tr-inventory-sidebar,
    .tr-inventory-status-body,
    .tr-inventory-help {
        grid-template-columns: 1fr;
    }

    .tr-inventory-tabs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tr-inventory-tabs span {
        display: none;
    }

    .tr-inventory-tabs a:not(.tr-inventory-export) {
        white-space: normal;
    }

    .tr-inventory-export,
    .tr-inventory-icon-button {
        justify-content: center;
        width: 100%;
    }

    .tr-inventory-sidebar .tr-inventory-ai {
        grid-column: auto;
    }

    .tr-inventory-donut {
        justify-self: center;
        width: min(220px, 72vw);
    }
}

@media (max-width: 767.98px) {
    .tr-inventory-weather {
        display: grid;
        grid-template-columns: 1fr;
    }

    .transroc-dashboard-page .tr-inventory-metric-grid,
    .tr-inventory-add-panel form {
        grid-template-columns: 1fr;
    }

    .tr-inventory-table-card,
    .tr-inventory-status-card,
    .tr-inventory-activity-card {
        padding: 16px;
    }

    .tr-inventory-help {
        padding: 18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .transroc-shell *,
    .transroc-shell *::before,
    .transroc-shell *::after,
    .transroc-dashboard-page *,
    .transroc-dashboard-page *::before,
    .transroc-dashboard-page *::after {
        animation: none !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        transition-delay: 0ms !important;
    }

    .transroc-dashboard-page .tr-dashboard-bg,
    .transroc-dashboard-page .tr-card:hover,
    .transroc-dashboard-page .tr-back-button:hover,
    .transroc-dashboard-page .tr-add-crop-button:hover,
    .transroc-dashboard-page .tr-filter-pill:hover,
    .transroc-dashboard-page .tr-card-heading a:hover,
    .transroc-dashboard-page .tr-card-heading button:hover,
    .transroc-dashboard-page .tr-inline-link:hover,
    .transroc-dashboard-page .tr-assistant-bar:focus-within,
    .transroc-dashboard-page .tr-assistant-bar button:hover,
    .transroc-dashboard-page .tr-holdings-table tbody tr:hover,
    .transroc-dashboard-page .tr-notification-item:hover,
    .transroc-menu-link:hover,
    .transroc-utility-link:hover,
    .transroc-profile-card:hover,
    .transroc-profile-card[aria-expanded="true"],
    .transroc-profile-dropdown a:hover,
    .transroc-shell .btn:hover,
    .transroc-shell .btn:focus,
    .transroc-shell .btn:active {
        transform: none !important;
    }
}

.tr-members-admin {
    display: grid;
    gap: 18px;
}

.tr-members-toolbar {
    align-items: center;
    background: rgba(247, 248, 241, 0.94);
    border: 1px solid rgba(232, 242, 218, 0.72);
    border-radius: 14px;
    box-shadow: 0 18px 42px rgba(8, 45, 33, 0.18);
    color: #17211b;
    display: flex;
    gap: 18px;
    justify-content: space-between;
    padding: 18px 22px;
}

.tr-members-toolbar span,
.tr-members-modal .modal-header span,
.tr-member-manage-card > span {
    color: rgba(23, 33, 27, 0.58);
    display: block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.tr-members-toolbar h2,
.tr-members-toolbar p {
    margin: 0;
}

.tr-members-toolbar h2 {
    color: #17211b;
    font-size: 20px;
    font-weight: 800;
}

.tr-members-toolbar p {
    color: rgba(23, 33, 27, 0.68);
    font-size: 14px;
}

.tr-members-table-card {
    background: rgba(247, 248, 241, 0.96) !important;
    border-color: rgba(232, 242, 218, 0.76) !important;
    color: #17211b !important;
}

.tr-members-table-card .tr-admin-section-heading span,
.tr-members-table-card .tr-admin-section-heading h2,
.tr-members-table-card .tr-admin-pagination,
.tr-members-table-card .tr-admin-pagination span {
    color: #17211b !important;
}

.tr-members-table {
    color: #17211b !important;
    margin-bottom: 0;
}

.tr-members-table caption {
    color: rgba(23, 33, 27, 0.68) !important;
}

.transroc-shell .tr-members-table thead th {
    background: rgba(227, 234, 215, 0.92) !important;
    border-color: rgba(23, 33, 27, 0.08) !important;
    color: rgba(23, 33, 27, 0.72) !important;
}

.transroc-shell .tr-members-table tbody td {
    background: rgba(255, 255, 255, 0.34);
    border-color: rgba(23, 33, 27, 0.08) !important;
    color: rgba(23, 33, 27, 0.82) !important;
}

.transroc-shell .tr-members-table tbody td strong,
.transroc-shell .tr-members-table tbody td span:not(.badge):not(.tr-members-badge),
.transroc-shell .tr-members-table tbody td a:not(.btn) {
    color: #17211b !important;
}

.transroc-shell .tr-members-table tbody td > span:not(.tr-members-badge) {
    color: rgba(23, 33, 27, 0.58) !important;
    display: block;
    margin-top: 3px;
}

.tr-members-badge {
    align-items: center;
    border-radius: 999px;
    display: inline-flex;
    font-size: 12px !important;
    font-weight: 800 !important;
    justify-content: center;
    min-height: 28px;
    padding: 5px 10px;
}

.tr-members-badge.is-success {
    background: rgba(57, 173, 77, 0.16);
    color: #188236 !important;
}

.tr-members-badge.is-warning {
    background: rgba(214, 173, 23, 0.18);
    color: #8a6500 !important;
}

.tr-members-badge.is-danger {
    background: rgba(219, 58, 52, 0.14);
    color: #a72f27 !important;
}

.tr-members-badge.is-neutral {
    background: rgba(91, 112, 85, 0.14);
    color: #40513a !important;
}

.tr-members-modal .modal-content {
    background: rgba(247, 248, 241, 0.98);
    border: 1px solid rgba(232, 242, 218, 0.78);
    border-radius: 14px;
    box-shadow: 0 28px 80px rgba(3, 14, 8, 0.32);
    color: #17211b;
}

.tr-members-modal .modal-header,
.tr-members-modal .modal-footer {
    border-color: rgba(23, 33, 27, 0.08);
}

.tr-members-modal .modal-title {
    color: #17211b;
    font-weight: 850;
    margin: 0;
}

.tr-members-modal .modal-header p {
    color: rgba(23, 33, 27, 0.62);
    margin: 4px 0 0;
}

.tr-member-manage-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tr-member-manage-card {
    background: rgba(255, 255, 255, 0.64);
    border: 1px solid rgba(23, 33, 27, 0.08);
    border-radius: 12px;
    display: grid;
    gap: 12px;
    padding: 16px;
}

.tr-member-manage-card h6 {
    color: #17211b;
    font-size: 18px;
    font-weight: 850;
    margin: 0;
}

.tr-member-manage-card label {
    display: grid;
    gap: 7px;
}

.tr-member-manage-card label span,
.tr-members-modal .tr-admin-form-grid label span {
    color: rgba(23, 33, 27, 0.62) !important;
    font-size: 12px;
    font-weight: 800;
}

.tr-member-manage-card input,
.tr-member-manage-card select,
.tr-member-manage-card textarea,
.tr-members-modal .tr-admin-form-grid input,
.tr-members-modal .tr-admin-form-grid select,
.tr-members-modal .tr-admin-form-grid textarea {
    background: rgba(255, 255, 255, 0.92) !important;
    border: 1px solid rgba(23, 33, 27, 0.12) !important;
    border-radius: 8px;
    color: #17211b !important;
    min-height: 44px;
    padding: 9px 12px;
}

.tr-member-manage-actions {
    display: flex;
    justify-content: flex-end;
}

@media (max-width: 991.98px) {
    .tr-members-toolbar,
    .tr-member-manage-grid {
        grid-template-columns: 1fr;
    }

    .tr-members-toolbar {
        align-items: flex-start;
        flex-direction: column;
    }
}

.tr-members-admin {
    display: grid;
    gap: 18px;
}

.tr-members-controls {
    align-items: flex-start;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    position: relative;
    z-index: 45;
}

.tr-members-filter-panel {
    flex: 0 0 auto;
    position: relative;
}

.tr-members-filter-panel summary,
.tr-members-create-button {
    align-items: center;
    border-radius: 10px;
    cursor: pointer;
    display: inline-flex;
    font-size: 13px;
    font-weight: 720;
    gap: 9px;
    justify-content: center;
    list-style: none;
    min-height: 46px;
    padding: 0 18px;
}

.tr-members-filter-panel summary {
    background: rgba(247, 248, 241, 0.94);
    border: 1px solid rgba(23, 33, 27, 0.1);
    color: #17211b;
}

.tr-members-filter-panel summary::-webkit-details-marker {
    display: none;
}

.tr-members-filter-panel summary em:last-child {
    font-size: 14px;
    transition: transform 160ms ease;
}

.tr-members-filter-panel[open] summary em:last-child {
    transform: rotate(180deg);
}

.tr-members-create-button {
    background: #dff21e;
    border: 0;
    color: #14220f;
    min-width: 250px;
}

.tr-members-filter-form {
    background: rgba(18, 43, 12, 0.99);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 12px;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.32);
    min-width: min(860px, calc(100vw - 360px));
    padding: 12px;
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    z-index: 48;
}

.tr-members-filter-form label:first-child {
    min-width: 220px;
}

.tr-members-admin .tr-members-table-card {
    background: rgba(14, 38, 10, 0.97) !important;
    border-color: rgba(255, 255, 255, 0.13) !important;
    box-shadow: 0 24px 50px rgba(6, 22, 4, 0.32);
    color: #ffffff !important;
}

.tr-members-table-top div span,
.tr-members-table-top > span {
    color: rgba(255, 255, 255, 0.7);
    display: block;
    font-size: 10px;
    font-weight: 720;
    letter-spacing: 0;
    text-transform: uppercase;
}

.tr-members-table-top h2 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 680;
    line-height: 1.15;
    margin: 4px 0 0;
}

.tr-members-admin .tr-members-table {
    color: #ffffff !important;
    min-width: 1040px;
}

.transroc-shell .tr-members-admin .tr-members-table thead th {
    background: rgba(255, 255, 255, 0.06) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
    color: rgba(255, 255, 255, 0.78) !important;
}

.transroc-shell .tr-members-admin .tr-members-table tbody td {
    background: transparent !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
    color: rgba(255, 255, 255, 0.9) !important;
}

.transroc-shell .tr-members-admin .tr-members-table tbody td strong,
.transroc-shell .tr-members-admin .tr-members-table tbody td span:not(.tr-payout-status),
.transroc-shell .tr-members-admin .tr-members-table tbody td a:not(.btn) {
    color: inherit !important;
}

.transroc-shell .tr-members-admin .tr-members-table tbody td > span:not(.tr-payout-status) {
    color: rgba(255, 255, 255, 0.58) !important;
    display: block;
    margin-top: 4px;
}

.tr-members-manage-button {
    align-items: center;
    background: rgba(247, 248, 241, 0.94);
    border: 0;
    border-radius: 9px;
    color: #14301b;
    cursor: pointer;
    display: inline-flex;
    font-size: 12px;
    font-weight: 720;
    gap: 8px;
    min-height: 38px;
    padding: 0 14px;
}

.tr-members-manage-button em {
    color: #224d27;
    font-size: 15px;
}

.tr-members-modal-tabs {
    border: 0;
    gap: 8px;
    margin: 0 0 14px;
}

.tr-members-modal-tabs .nav-link {
    background: rgba(23, 33, 27, 0.05);
    border: 1px solid rgba(23, 33, 27, 0.08);
    border-radius: 10px;
    color: rgba(23, 33, 27, 0.7);
    font-size: 13px;
    font-weight: 760;
    min-height: 40px;
    padding: 0 16px;
}

.tr-members-modal-tabs .nav-link.active {
    background: #dff21e;
    border-color: #dff21e;
    color: #14220f;
}

.tr-members-tab-content {
    background: rgba(255, 255, 255, 0.64);
    border: 1px solid rgba(23, 33, 27, 0.08);
    border-radius: 12px;
    padding: 18px;
}

.tr-members-tab-copy {
    display: grid;
    gap: 4px;
    margin-bottom: 16px;
}

.tr-members-tab-copy span {
    color: rgba(23, 33, 27, 0.58);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.tr-members-tab-copy h6 {
    color: #17211b;
    font-size: 20px;
    font-weight: 850;
    margin: 0;
}

.tr-members-tab-form {
    display: grid;
    gap: 14px;
}

.tr-members-profile-summary {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.tr-members-profile-summary div,
.tr-members-readonly-section > div {
    background: rgba(23, 33, 27, 0.045);
    border: 1px solid rgba(23, 33, 27, 0.08);
    border-radius: 10px;
    min-width: 0;
    padding: 12px;
}

.tr-members-profile-summary span,
.tr-members-form-section > span,
.tr-members-readonly-section > div > span {
    color: rgba(23, 33, 27, 0.58);
    display: block;
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.tr-members-profile-summary strong {
    color: #17211b;
    display: block;
    font-size: 13px;
    font-weight: 850;
    line-height: 1.25;
    overflow-wrap: anywhere;
}

.tr-members-form-section {
    display: grid;
    gap: 10px;
}

.tr-members-readonly-section {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tr-members-readonly-section dl {
    display: grid;
    gap: 8px;
    margin: 0;
}

.tr-members-readonly-section dl div {
    align-items: start;
    border-bottom: 1px solid rgba(23, 33, 27, 0.08);
    display: grid;
    gap: 10px;
    grid-template-columns: minmax(120px, 0.42fr) minmax(0, 1fr);
    padding: 0 0 8px;
}

.tr-members-readonly-section dl div:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.tr-members-readonly-section dt {
    color: rgba(23, 33, 27, 0.58);
    font-size: 12px;
    font-weight: 820;
}

.tr-members-readonly-section dd {
    color: #17211b;
    font-size: 13px;
    font-weight: 760;
    line-height: 1.35;
    margin: 0;
    overflow-wrap: anywhere;
}

.tr-members-tab-form label {
    display: grid;
    gap: 7px;
}

.tr-members-tab-form label span {
    color: rgba(23, 33, 27, 0.62) !important;
    font-size: 12px;
    font-weight: 800;
}

.tr-members-tab-form input,
.tr-members-tab-form select,
.tr-members-tab-form textarea,
.tr-members-create-grid input,
.tr-members-create-grid select,
.tr-members-create-grid textarea {
    background: rgba(255, 255, 255, 0.92) !important;
    border: 1px solid rgba(23, 33, 27, 0.12) !important;
    border-radius: 9px;
    color: #17211b !important;
    min-height: 44px;
    padding: 9px 12px;
}

@media (max-width: 1180px) {
    .tr-members-controls {
        align-items: stretch;
        flex-direction: column;
    }

    .tr-members-filter-panel,
    .tr-members-filter-panel summary,
    .tr-members-create-button {
        width: 100%;
    }

    .tr-members-filter-form {
        margin-top: 10px;
        min-width: 0;
        position: static;
        width: 100%;
    }
}

@media (max-width: 991.98px) {
    .tr-members-profile-summary,
    .tr-members-readonly-section {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .tr-members-modal-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
    }

    .tr-members-tab-content {
        padding: 14px;
    }

    .tr-members-profile-summary,
    .tr-members-readonly-section {
        grid-template-columns: 1fr;
    }

    .tr-members-readonly-section dl div {
        grid-template-columns: 1fr;
    }
}

.tr-surveillance-surface {
    gap: 14px;
}

.tr-surveillance-topbar {
    align-items: center;
}

.tr-surveillance-context {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
    margin-left: auto;
}

.tr-surveillance-context span {
    align-items: center;
    background: rgba(252, 250, 238, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.68);
    border-radius: 15px;
    box-shadow: var(--tr-dashboard-shadow);
    color: #17211b;
    display: grid;
    gap: 2px 10px;
    grid-template-columns: 40px minmax(0, 1fr);
    min-height: 68px;
    min-width: 190px;
    padding: 10px 14px;
}

.tr-surveillance-context em {
    align-items: center;
    background: rgba(88, 114, 68, 0.12);
    border-radius: 50%;
    color: var(--tr-brand-sage-900);
    display: inline-flex;
    font-size: 20px;
    grid-row: span 2;
    height: 40px;
    justify-content: center;
    width: 40px;
}

.tr-surveillance-context small,
.tr-surveillance-context strong {
    display: block;
    line-height: 1.15;
    min-width: 0;
}

.tr-surveillance-context small {
    color: rgba(31, 39, 33, 0.7);
    font-size: 11px;
    font-weight: 620;
}

.tr-surveillance-context strong {
    color: #111812;
    font-size: 15px;
    font-weight: 660;
    overflow-wrap: anywhere;
}

.tr-surveillance-alert {
    margin: 0;
}

.tr-surveillance-filterbar {
    align-items: end;
    background: rgba(252, 250, 238, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.68);
    border-radius: 16px;
    box-shadow: var(--tr-dashboard-shadow);
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(3, minmax(160px, 1fr)) auto auto;
    padding: 12px;
}

.tr-surveillance-filterbar label {
    display: grid;
    gap: 6px;
    min-width: 0;
    position: relative;
}

.tr-surveillance-filterbar label span {
    color: rgba(31, 39, 33, 0.72);
    font-size: 11px;
    font-weight: 700;
}

.tr-surveillance-filterbar select {
    appearance: none;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(88, 114, 68, 0.16);
    border-radius: 11px;
    color: #17211b;
    font-size: 12px;
    font-weight: 620;
    min-height: 42px;
    padding: 0 34px 0 12px;
    width: 100%;
}

.tr-surveillance-filterbar label > em {
    color: rgba(31, 39, 33, 0.62);
    pointer-events: none;
    position: absolute;
    right: 12px;
    top: 35px;
}

.tr-surveillance-filterbar button,
.tr-surveillance-filterbar a {
    align-items: center;
    border: 0;
    border-radius: 11px;
    display: inline-flex;
    font-size: 12px;
    font-weight: 720;
    gap: 7px;
    justify-content: center;
    min-height: 42px;
    padding: 0 14px;
}

.tr-surveillance-filterbar button {
    background: var(--tr-brand-sage-800);
    color: #fff;
}

.tr-surveillance-filterbar a {
    background: rgba(88, 114, 68, 0.12);
    color: var(--tr-brand-sage-900);
    width: 42px;
}

.tr-surveillance-metrics {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.tr-surveillance-metric {
    align-items: center;
    background: rgba(252, 250, 238, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.68);
    border-radius: 16px;
    box-shadow: var(--tr-dashboard-shadow);
    display: grid;
    gap: 12px;
    grid-template-columns: 44px minmax(0, 1fr);
    min-height: 104px;
    min-width: 0;
    padding: 16px;
}

.tr-surveillance-metric > span {
    align-items: center;
    background: rgba(88, 114, 68, 0.12);
    border-radius: 50%;
    color: var(--tr-brand-sage-900);
    display: inline-flex;
    font-size: 22px;
    height: 44px;
    justify-content: center;
    width: 44px;
}

.tr-surveillance-metric.is-gold > span,
.tr-surveillance-metric.is-orange > span {
    background: rgba(230, 164, 59, 0.18);
    color: #9a5f0a;
}

.tr-surveillance-metric.is-blue > span,
.tr-surveillance-metric.is-purple > span {
    background: rgba(37, 99, 235, 0.12);
    color: #2453b8;
}

.tr-surveillance-metric.is-red > span {
    background: rgba(194, 65, 59, 0.12);
    color: var(--tr-danger);
}

.tr-surveillance-metric p,
.tr-surveillance-metric strong,
.tr-surveillance-metric small {
    display: block;
    line-height: 1.15;
    margin: 0;
    min-width: 0;
}

.tr-surveillance-metric p {
    color: rgba(31, 39, 33, 0.72);
    font-size: 11px;
    font-weight: 650;
    margin-bottom: 8px;
}

.tr-surveillance-metric strong {
    color: #111812;
    font-size: clamp(17px, 1.08vw, 22px);
    font-weight: 690;
    overflow-wrap: anywhere;
}

.tr-surveillance-metric small {
    color: rgba(31, 39, 33, 0.7);
    font-size: 11px;
    font-weight: 560;
    margin-top: 8px;
}

.tr-surveillance-main {
    align-items: start;
    display: grid;
    gap: 14px;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
    min-width: 0;
}

.tr-surveillance-primary,
.tr-surveillance-sidebar {
    display: grid;
    gap: 14px;
    min-width: 0;
}

.tr-surveillance-panel,
.tr-surveillance-side-card {
    background: rgba(252, 250, 238, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.68);
    border-radius: 16px;
    box-shadow: var(--tr-dashboard-shadow);
    min-width: 0;
    overflow: hidden;
}

.tr-surveillance-live-panel,
.tr-surveillance-holdings,
.tr-surveillance-side-card {
    padding: 16px;
}

.tr-surveillance-section-heading {
    align-items: center;
    display: grid;
    gap: 12px;
    grid-template-columns: minmax(0, 1fr) auto;
    margin-bottom: 14px;
}

.tr-surveillance-section-heading h2,
.tr-surveillance-side-card h2 {
    color: #17211b;
    font-size: 16px;
    font-weight: 680;
    line-height: 1.15;
    margin: 0;
}

.tr-surveillance-section-heading p {
    color: rgba(31, 39, 33, 0.68);
    font-size: 12px;
    font-weight: 560;
    margin: 4px 0 0;
}

.tr-surveillance-section-heading > span,
.tr-surveillance-section-heading a {
    align-items: center;
    background: rgba(255, 255, 255, 0.72);
    border-radius: 999px;
    color: var(--tr-brand-sage-900);
    display: inline-flex;
    font-size: 12px;
    font-weight: 690;
    gap: 7px;
    min-height: 34px;
    padding: 0 12px;
    white-space: nowrap;
}

.tr-surveillance-camera-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tr-surveillance-camera {
    aspect-ratio: 16 / 10;
    background:
        linear-gradient(180deg, rgba(7, 12, 8, 0.12), rgba(7, 12, 8, 0.75)),
        var(--camera-image) center / cover no-repeat;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 172px;
    min-width: 0;
    overflow: hidden;
    padding: 10px;
}

.tr-surveillance-camera > div {
    align-items: start;
    display: flex;
    gap: 8px;
    justify-content: space-between;
    min-width: 0;
}

.tr-surveillance-camera > div span,
.tr-surveillance-camera > div strong {
    align-items: center;
    background: rgba(6, 10, 7, 0.76);
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    font-size: 11px;
    font-weight: 760;
    line-height: 1;
    min-height: 24px;
    padding: 0 9px;
}

.tr-surveillance-camera > div strong.is-live {
    background: rgba(48, 124, 42, 0.86);
}

.tr-surveillance-camera > div strong.is-offline {
    background: rgba(194, 65, 59, 0.86);
}

.tr-surveillance-camera > div strong.is-pending {
    background: rgba(154, 95, 10, 0.88);
}

.tr-surveillance-camera footer {
    align-items: end;
    display: grid;
    gap: 10px;
    grid-template-columns: minmax(0, 1fr) auto;
}

.tr-surveillance-camera h3,
.tr-surveillance-camera p,
.tr-surveillance-camera small {
    color: #fff;
    display: block;
    line-height: 1.15;
    margin: 0;
    min-width: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.tr-surveillance-camera h3 {
    font-size: 14px;
    font-weight: 760;
    overflow-wrap: anywhere;
}

.tr-surveillance-camera p,
.tr-surveillance-camera small {
    color: rgba(255, 255, 255, 0.84);
    font-size: 11px;
    font-weight: 610;
    margin-top: 4px;
}

.tr-surveillance-camera a,
.tr-surveillance-camera button {
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    border: 0;
    border-radius: 50%;
    color: var(--tr-brand-sage-900);
    display: inline-flex;
    height: 34px;
    justify-content: center;
    width: 34px;
}

.tr-surveillance-table-wrap {
    overflow-x: auto;
}

.tr-surveillance-table {
    border-collapse: collapse;
    min-width: 820px;
    width: 100%;
}

.tr-surveillance-table caption {
    height: 1px;
    overflow: hidden;
    position: absolute;
    width: 1px;
}

.tr-surveillance-table th,
.tr-surveillance-table td {
    border-bottom: 1px solid rgba(88, 114, 68, 0.12);
    color: rgba(31, 39, 33, 0.78);
    font-size: 12px;
    font-weight: 590;
    padding: 10px 9px;
    text-align: left;
    vertical-align: middle;
}

.tr-surveillance-table th {
    background: rgba(88, 114, 68, 0.08);
    color: rgba(31, 39, 33, 0.72);
    font-size: 11px;
    font-weight: 780;
}

.tr-surveillance-commodity {
    align-items: center;
    display: grid;
    gap: 9px;
    grid-template-columns: 34px minmax(0, 1fr);
    min-width: 0;
}

.tr-surveillance-commodity img {
    background: rgba(88, 114, 68, 0.1);
    border-radius: 9px;
    height: 34px;
    object-fit: contain;
    padding: 5px;
    width: 34px;
}

.tr-surveillance-commodity strong,
.tr-surveillance-commodity small {
    display: block;
    line-height: 1.12;
}

.tr-surveillance-commodity strong {
    color: #17211b;
    font-size: 12px;
    font-weight: 720;
}

.tr-surveillance-commodity small {
    color: rgba(31, 39, 33, 0.56);
    font-size: 10px;
    font-weight: 600;
    margin-top: 3px;
}

.tr-surveillance-status,
.tr-surveillance-active-dot {
    align-items: center;
    background: rgba(48, 124, 42, 0.12);
    border-radius: 999px;
    color: #216a20;
    display: inline-flex;
    font-size: 11px;
    font-weight: 720;
    min-height: 26px;
    padding: 0 10px;
}

.tr-surveillance-active-dot {
    margin-top: 8px;
}

.tr-surveillance-active-dot::before {
    background: currentColor;
    border-radius: 50%;
    content: "";
    height: 6px;
    margin-right: 7px;
    width: 6px;
}

.tr-surveillance-side-card header {
    margin-bottom: 12px;
}

.tr-surveillance-warehouse-card > img {
    border-radius: 11px;
    display: block;
    height: 128px;
    object-fit: cover;
    width: 100%;
}

.tr-surveillance-warehouse-card h3 {
    color: #17211b;
    font-size: 15px;
    font-weight: 720;
    line-height: 1.2;
    margin: 12px 0 5px;
}

.tr-surveillance-warehouse-card p,
.tr-surveillance-summary-list p,
.tr-surveillance-activity-list p {
    color: rgba(31, 39, 33, 0.68);
    font-size: 12px;
    font-weight: 560;
    line-height: 1.45;
    margin: 0;
}

.tr-surveillance-warehouse-card dl {
    border-bottom: 1px solid rgba(88, 114, 68, 0.12);
    border-top: 1px solid rgba(88, 114, 68, 0.12);
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 14px 0 12px;
    padding: 12px 0;
}

.tr-surveillance-warehouse-card dt,
.tr-surveillance-warehouse-card dd {
    display: block;
    line-height: 1.15;
    margin: 0;
    min-width: 0;
}

.tr-surveillance-warehouse-card dt {
    color: rgba(31, 39, 33, 0.58);
    font-size: 10px;
    font-weight: 700;
}

.tr-surveillance-warehouse-card dd {
    color: #17211b;
    font-size: 11px;
    font-weight: 690;
    margin-top: 5px;
    overflow-wrap: anywhere;
}

.tr-surveillance-warehouse-card > a {
    align-items: center;
    color: var(--tr-brand-sage-900);
    display: inline-flex;
    font-size: 12px;
    font-weight: 760;
    gap: 8px;
}

.tr-surveillance-summary-body {
    align-items: center;
    display: grid;
    gap: 14px;
    grid-template-columns: minmax(0, 1fr) 92px;
}

.tr-surveillance-summary-body span,
.tr-surveillance-summary-body strong,
.tr-surveillance-summary-body small {
    display: block;
}

.tr-surveillance-summary-body span {
    color: rgba(31, 39, 33, 0.62);
    font-size: 11px;
    font-weight: 700;
}

.tr-surveillance-summary-body strong {
    color: #17211b;
    font-size: 20px;
    font-weight: 760;
    line-height: 1.1;
    margin-top: 8px;
}

.tr-surveillance-summary-body small {
    color: rgba(31, 39, 33, 0.66);
    font-size: 11px;
    font-weight: 600;
    margin-top: 5px;
}

.tr-surveillance-donut {
    background: conic-gradient(var(--summary-donut));
    border-radius: 50%;
    height: 92px;
    position: relative;
    width: 92px;
}

.tr-surveillance-donut::after {
    background: rgba(252, 250, 238, 0.98);
    border-radius: 50%;
    content: "";
    inset: 25%;
    position: absolute;
}

.tr-surveillance-summary-list {
    display: grid;
    gap: 8px;
    margin-top: 14px;
}

.tr-surveillance-summary-list div {
    align-items: center;
    display: grid;
    gap: 8px;
    grid-template-columns: 9px minmax(0, 1fr) auto;
}

.tr-surveillance-summary-list div > span {
    background: var(--summary-color);
    border-radius: 50%;
    height: 9px;
    width: 9px;
}

.tr-surveillance-summary-list strong,
.tr-surveillance-summary-list small {
    color: #17211b;
    display: block;
    font-size: 11px;
    font-weight: 680;
    line-height: 1.15;
    min-width: 0;
}

.tr-surveillance-summary-list small {
    color: rgba(31, 39, 33, 0.68);
    font-weight: 600;
    text-align: right;
}

.tr-surveillance-activity-list {
    display: grid;
    gap: 0;
}

.tr-surveillance-activity-list article {
    align-items: center;
    border-bottom: 1px solid rgba(88, 114, 68, 0.12);
    display: grid;
    gap: 10px;
    grid-template-columns: 28px minmax(0, 1fr) auto;
    min-width: 0;
    padding: 10px 0;
}

.tr-surveillance-activity-list article:last-child {
    border-bottom: 0;
}

.tr-surveillance-activity-list article > em {
    align-items: center;
    background: rgba(88, 114, 68, 0.12);
    border-radius: 50%;
    color: var(--tr-brand-sage-900);
    display: inline-flex;
    height: 28px;
    justify-content: center;
    width: 28px;
}

.tr-surveillance-activity-list strong,
.tr-surveillance-activity-list small,
.tr-surveillance-activity-list time {
    display: block;
    line-height: 1.15;
}

.tr-surveillance-activity-list strong {
    color: #17211b;
    font-size: 11.5px;
    font-weight: 700;
    overflow-wrap: anywhere;
}

.tr-surveillance-activity-list small,
.tr-surveillance-activity-list time {
    color: rgba(31, 39, 33, 0.62);
    font-size: 10.5px;
    font-weight: 600;
    margin-top: 3px;
}

.tr-surveillance-activity-list time {
    margin-top: 0;
    text-align: right;
    white-space: nowrap;
}

@media (max-width: 1380px) {
    .tr-surveillance-metrics {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .tr-surveillance-camera-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1120px) {
    .tr-surveillance-main {
        grid-template-columns: minmax(0, 1fr);
    }

    .tr-surveillance-sidebar {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .tr-surveillance-filterbar {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .tr-surveillance-filterbar button,
    .tr-surveillance-filterbar a {
        width: 100%;
    }
}

@media (max-width: 860px) {
    .tr-surveillance-topbar {
        align-items: stretch;
        flex-direction: column;
    }

    .tr-surveillance-context {
        justify-content: stretch;
        margin-left: 0;
    }

    .tr-surveillance-context span {
        flex: 1 1 220px;
    }

    .tr-surveillance-metrics,
    .tr-surveillance-filterbar,
    .tr-surveillance-sidebar {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .tr-surveillance-context,
    .tr-surveillance-metrics,
    .tr-surveillance-filterbar,
    .tr-surveillance-sidebar,
    .tr-surveillance-camera-grid,
    .tr-surveillance-section-heading {
        grid-template-columns: minmax(0, 1fr);
    }

    .tr-surveillance-context {
        display: grid;
    }

    .tr-surveillance-metric,
    .tr-surveillance-context span {
        min-height: 0;
    }

    .tr-surveillance-camera {
        min-height: 190px;
    }

    .tr-surveillance-warehouse-card dl,
    .tr-surveillance-summary-body {
        grid-template-columns: minmax(0, 1fr);
    }

    .tr-surveillance-donut {
        justify-self: start;
    }
}

/* Unified backend table/filter views */
.transroc-shell:not(.transroc-dashboard-page) {
    --tr-list-panel: rgba(14, 38, 10, 0.97);
    --tr-list-panel-soft: rgba(18, 43, 12, 0.94);
    --tr-list-border: rgba(255, 255, 255, 0.13);
    --tr-list-text: #ffffff;
    --tr-list-muted: rgba(255, 255, 255, 0.68);
    --tr-list-faint: rgba(255, 255, 255, 0.48);
    --tr-list-control: rgba(255, 255, 255, 0.08);
    --tr-list-control-border: rgba(255, 255, 255, 0.16);
}

.transroc-shell:not(.transroc-dashboard-page) :where(
    .tr-admin-table-card,
    .tr-admin-panel,
    .tr-admin-queue-card,
    .tr-table-card
) {
    background: var(--tr-list-panel) !important;
    border-color: var(--tr-list-border) !important;
    border-radius: 12px;
    box-shadow: 0 24px 50px rgba(6, 22, 4, 0.3);
    color: var(--tr-list-text) !important;
}

.transroc-shell:not(.transroc-dashboard-page) :where(
    .tr-admin-table-card,
    .tr-admin-panel,
    .tr-admin-queue-card,
    .tr-table-card
) :where(h2, h3, h4, strong, b, caption) {
    color: var(--tr-list-text) !important;
}

.transroc-shell:not(.transroc-dashboard-page) :where(
    .tr-admin-table-card,
    .tr-admin-panel,
    .tr-admin-queue-card,
    .tr-table-card
) :where(p, small, dd, li, label, span:not(.badge):not(.tr-support-badge):not(.tr-payout-status):not(.tr-members-badge), a:not(.btn)) {
    color: var(--tr-list-muted) !important;
}

.transroc-shell:not(.transroc-dashboard-page) :where(
    .tr-admin-dashboard-filters,
    .tr-admin-filter-bar,
    .tr-support-filter,
    .tr-filter-bar
) {
    align-items: end;
    background: var(--tr-list-panel) !important;
    border: 1px solid var(--tr-list-border);
    border-radius: 12px;
    box-shadow: 0 24px 50px rgba(6, 22, 4, 0.3);
    color: var(--tr-list-text);
    display: grid;
    gap: 12px;
    padding: 14px;
}

.transroc-shell:not(.transroc-dashboard-page) .tr-admin-filter-bar {
    grid-template-columns: repeat(4, minmax(120px, 1fr)) auto;
    margin-bottom: 14px;
}

.transroc-shell:not(.transroc-dashboard-page) .tr-filter-bar {
    grid-template-columns: repeat(3, minmax(140px, 1fr)) auto;
}

.transroc-shell:not(.transroc-dashboard-page) :where(
    .tr-admin-dashboard-filters,
    .tr-admin-filter-bar,
    .tr-support-filter,
    .tr-filter-bar
) label {
    display: grid;
    gap: 6px;
    min-width: 0;
}

.transroc-shell:not(.transroc-dashboard-page) :where(
    .tr-admin-dashboard-filters,
    .tr-admin-filter-bar,
    .tr-support-filter,
    .tr-filter-bar
) label span {
    color: var(--tr-list-muted) !important;
    font-size: 10.5px;
    font-weight: 720;
    letter-spacing: 0;
    line-height: 1.2;
    text-transform: uppercase;
}

.transroc-shell:not(.transroc-dashboard-page) :where(
    .tr-admin-dashboard-filters,
    .tr-admin-filter-bar,
    .tr-support-filter,
    .tr-filter-bar
) :where(input, select, textarea),
.transroc-shell:not(.transroc-dashboard-page) :where(
    .tr-admin-table-card,
    .tr-admin-panel
) :where(.tr-admin-form-grid, .tr-inline-admin-form, td form) :where(input, select, textarea) {
    background: var(--tr-list-control) !important;
    border: 1px solid var(--tr-list-control-border) !important;
    border-radius: 9px;
    color: var(--tr-list-text) !important;
    font-size: 13px;
    font-weight: 560;
    min-height: 42px;
    outline: 0;
    padding: 9px 11px;
    width: 100%;
}

.transroc-shell:not(.transroc-dashboard-page) :where(
    .tr-admin-dashboard-filters,
    .tr-admin-filter-bar,
    .tr-support-filter,
    .tr-filter-bar,
    .tr-admin-table-card,
    .tr-admin-panel
) :where(input, textarea)::placeholder {
    color: var(--tr-list-faint) !important;
}

.transroc-shell:not(.transroc-dashboard-page) :where(
    .tr-admin-dashboard-filters,
    .tr-admin-filter-bar,
    .tr-support-filter,
    .tr-filter-bar,
    .tr-admin-table-card,
    .tr-admin-panel
) select option {
    color: #11170f;
}

.transroc-shell:not(.transroc-dashboard-page) :where(
    .tr-admin-table-card,
    .tr-admin-panel,
    .tr-admin-dashboard-filters,
    .tr-admin-filter-bar,
    .tr-support-filter,
    .tr-filter-bar
) input[type="checkbox"],
.transroc-shell:not(.transroc-dashboard-page) :where(
    .tr-admin-table-card,
    .tr-admin-panel,
    .tr-admin-dashboard-filters,
    .tr-admin-filter-bar,
    .tr-support-filter,
    .tr-filter-bar
) input[type="radio"] {
    accent-color: var(--tr-primary-lime);
    background: rgba(255, 255, 255, 0.94) !important;
    border: 1px solid rgba(255, 255, 255, 0.24) !important;
    flex: 0 0 auto;
    height: 17px;
    min-height: 17px !important;
    padding: 0;
    width: 17px !important;
}

.transroc-shell:not(.transroc-dashboard-page) :where(
    .tr-admin-dashboard-filter-actions,
    .tr-admin-filter-bar,
    .tr-support-filter,
    .tr-filter-bar
) :where(button, .btn, a.btn) {
    align-items: center;
    display: inline-flex;
    gap: 8px;
    justify-content: center;
    min-height: 42px;
    white-space: nowrap;
}

.transroc-shell:not(.transroc-dashboard-page) :where(
    .tr-admin-dashboard-filter-actions,
    .tr-admin-filter-bar,
    .tr-support-filter,
    .tr-filter-bar,
    .tr-admin-table-card,
    .tr-admin-panel
) :where(.btn-light, a.btn-light, button.btn-light) {
    background: rgba(247, 248, 241, 0.94) !important;
    border-color: rgba(247, 248, 241, 0.94) !important;
    color: #14301b !important;
}

.transroc-shell:not(.transroc-dashboard-page) :where(.tr-admin-table-card, .tr-table-card) .table-responsive {
    border-radius: 10px;
    margin: 0;
    overflow-x: auto;
}

.transroc-shell:not(.transroc-dashboard-page) :where(.tr-admin-queue-table, .tr-data-table) {
    background: transparent !important;
    border-collapse: collapse;
    color: var(--tr-list-text) !important;
    margin: 0;
    min-width: 860px;
    width: 100%;
}

.transroc-shell:not(.transroc-dashboard-page) :where(.tr-admin-queue-table, .tr-data-table) caption {
    color: var(--tr-list-muted) !important;
    font-size: 12px;
    font-style: normal;
    font-weight: 680;
    line-height: 1.35;
    padding: 0 0 12px;
    text-align: left;
}

.transroc-shell:not(.transroc-dashboard-page) :where(.tr-admin-queue-table, .tr-data-table) > :not(caption) > * > * {
    background: transparent !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
    box-shadow: none !important;
}

.transroc-shell:not(.transroc-dashboard-page) :where(.tr-admin-queue-table, .tr-data-table) thead th {
    background: rgba(255, 255, 255, 0.06) !important;
    color: rgba(255, 255, 255, 0.78) !important;
    font-size: 11px;
    font-weight: 680;
    line-height: 1.25;
    padding: 13px 18px;
    white-space: nowrap;
}

.transroc-shell:not(.transroc-dashboard-page) :where(.tr-admin-queue-table, .tr-data-table) tbody td {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 12.5px !important;
    font-weight: 500 !important;
    line-height: 1.35;
    padding: 13px 18px;
}

.transroc-shell:not(.transroc-dashboard-page) :where(.tr-admin-queue-table, .tr-data-table) tbody tr:hover > * {
    background: rgba(255, 255, 255, 0.05) !important;
}

.transroc-shell:not(.transroc-dashboard-page) :where(.tr-admin-queue-table, .tr-data-table) td :where(strong, b, a:not(.btn)) {
    color: var(--tr-list-text) !important;
}

.transroc-shell:not(.transroc-dashboard-page) :where(.tr-admin-queue-table, .tr-data-table) td :where(span:not(.badge):not(.tr-support-badge), small) {
    color: var(--tr-list-muted) !important;
}

.transroc-shell:not(.transroc-dashboard-page) :where(.tr-admin-queue-table, .tr-data-table) td .btn {
    white-space: nowrap;
}

.transroc-shell:not(.transroc-dashboard-page) .tr-admin-pagination,
.transroc-shell:not(.transroc-dashboard-page) .tr-admin-muted {
    align-items: center;
    color: var(--tr-list-muted) !important;
    display: flex;
    flex-wrap: wrap;
    font-size: 12px;
    font-weight: 560;
    gap: 10px;
    justify-content: space-between;
    margin: 14px 0 0;
}

.transroc-shell:not(.transroc-dashboard-page) .tr-admin-pagination div {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.transroc-shell:not(.transroc-dashboard-page) .tr-admin-guidance-card {
    background: rgba(255, 255, 255, 0.06) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
    color: var(--tr-list-text);
}

.transroc-shell:not(.transroc-dashboard-page) .tr-admin-guidance-card :where(h3, strong) {
    color: var(--tr-list-text) !important;
}

.transroc-shell:not(.transroc-dashboard-page) .tr-admin-guidance-card :where(p, span) {
    color: var(--tr-list-muted) !important;
}

@media (max-width: 1180px) {
    .transroc-shell:not(.transroc-dashboard-page) :where(
        .tr-admin-dashboard-filters,
        .tr-admin-filter-bar,
        .tr-support-filter,
        .tr-filter-bar
    ) {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .transroc-shell:not(.transroc-dashboard-page) :where(
        .tr-admin-dashboard-filters,
        .tr-admin-filter-bar,
        .tr-support-filter,
        .tr-filter-bar
    ) {
        grid-template-columns: minmax(0, 1fr);
    }

    .transroc-shell:not(.transroc-dashboard-page) :where(
        .tr-admin-dashboard-filter-actions,
        .tr-admin-filter-bar,
        .tr-support-filter,
        .tr-filter-bar
    ) :where(button, .btn, a.btn) {
        width: 100%;
    }

    .transroc-shell:not(.transroc-dashboard-page) .tr-admin-table-card {
        padding: 14px;
    }
}

/* Table behavior refinements */
.transroc-shell :where(
    .tr-admin-queue-table,
    .tr-data-table,
    .tr-payout-table,
    .tr-surveillance-table,
    .tr-holdings-table,
    .tr-member-account-table,
    .tr-public-table,
    .tr-commodity-history-table,
    .tr-history-data-table,
    .tr-inventory-table,
    .tr-members-table
) {
    table-layout: auto;
}

.transroc-shell :where(
    .tr-admin-queue-table,
    .tr-data-table,
    .tr-payout-table,
    .tr-surveillance-table,
    .tr-holdings-table,
    .tr-member-account-table,
    .tr-public-table,
    .tr-commodity-history-table,
    .tr-history-data-table,
    .tr-inventory-table,
    .tr-members-table
) :where(th, td),
.transroc-shell :where(
    .tr-admin-queue-table,
    .tr-data-table,
    .tr-payout-table,
    .tr-surveillance-table,
    .tr-holdings-table,
    .tr-member-account-table,
    .tr-public-table,
    .tr-commodity-history-table,
    .tr-history-data-table,
    .tr-inventory-table,
    .tr-members-table
) td :where(strong, b, span:not(.badge):not(.tr-support-badge):not(.tr-payout-status):not(.tr-members-badge), small, a:not(.btn)) {
    overflow-wrap: normal;
    white-space: nowrap;
    word-break: normal;
}

.tr-surveillance-table {
    min-width: 1120px;
}

.tr-surveillance-commodity {
    grid-template-columns: 44px max-content;
    min-width: max-content;
}

.tr-surveillance-commodity img {
    background: rgba(88, 114, 68, 0.08);
    height: 44px;
    object-fit: cover;
    padding: 0;
    width: 44px;
}

.tr-surveillance-commodity small {
    max-width: none;
}

/* Collapsed filter sections */
.tr-collapsible-filter-panel {
    background: var(--tr-list-panel, rgba(14, 38, 10, 0.97));
    border: 1px solid var(--tr-list-border, rgba(255, 255, 255, 0.13));
    border-radius: 12px;
    box-shadow: 0 24px 50px rgba(6, 22, 4, 0.3);
    color: var(--tr-list-text, #ffffff);
    min-width: 0;
    padding: 12px;
}

.tr-collapsible-filter-panel summary {
    align-items: center;
    cursor: pointer;
    display: flex;
    gap: 10px;
    justify-content: space-between;
    list-style: none;
    min-height: 42px;
    padding: 0 2px;
}

.tr-collapsible-filter-panel summary::-webkit-details-marker {
    display: none;
}

.tr-collapsible-filter-panel summary > span {
    align-items: center;
    display: inline-flex;
    font-size: 13px;
    font-weight: 760;
    gap: 9px;
}

.tr-collapsible-filter-panel summary > em {
    font-size: 15px;
    transition: transform 160ms ease;
}

.tr-collapsible-filter-panel[open] summary > em {
    transform: rotate(180deg);
}

.tr-collapsible-filter-panel > form {
    margin-top: 12px;
}

.transroc-shell:not(.transroc-dashboard-page) .tr-collapsible-filter-panel > :where(
    .tr-admin-dashboard-filters,
    .tr-admin-filter-bar,
    .tr-support-filter,
    .tr-filter-bar,
    .tr-payout-filter-form,
    .tr-surveillance-filterbar,
    .tr-inventory-filterbar,
    .tr-portfolio-filter-form,
    .tr-history-filter-bar,
    .tr-discover-filterbar,
    .tr-admin-form-grid
) {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
}

.transroc-dashboard-page .tr-collapsible-filter-panel {
    background: rgba(252, 250, 238, 0.9);
    border-color: rgba(255, 255, 255, 0.62);
    box-shadow: 0 18px 42px rgba(12, 35, 14, 0.16);
    color: #17211b;
}

.transroc-dashboard-page .tr-collapsible-filter-panel summary {
    color: #17211b;
}

.transroc-dashboard-page .tr-collapsible-filter-panel > :where(
    .tr-surveillance-filterbar,
    .tr-payout-filter-form,
    .tr-inventory-filterbar,
    .tr-portfolio-filter-form,
    .tr-history-filter-bar,
    .tr-discover-filterbar,
    .tr-admin-form-grid
) {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
}

.tr-payout-table-top .tr-collapsible-filter-panel {
    background: transparent;
    border: 0;
    box-shadow: none;
    flex: 0 0 auto;
    padding: 0;
    position: relative;
}

.tr-payout-table-top .tr-collapsible-filter-panel summary {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 9px;
    color: #ffffff;
    min-height: 44px;
    padding: 0 15px;
}

.tr-payout-table-top .tr-collapsible-filter-panel > form {
    background: rgba(18, 43, 12, 0.99);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 12px;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.32);
    margin-top: 10px;
    min-width: min(760px, calc(100vw - 360px));
    padding: 12px;
    position: absolute;
    right: 0;
    top: 100%;
    z-index: 58;
}

/* Modalized inline table actions */
.tr-inline-form-modal-button {
    align-items: center;
    background: rgba(247, 248, 241, 0.94);
    border: 0;
    border-radius: 9px;
    color: #14301b;
    cursor: pointer;
    display: inline-flex;
    font-size: 12px;
    font-weight: 760;
    gap: 8px;
    justify-content: center;
    min-height: 36px;
    padding: 0 13px;
    white-space: nowrap;
}

.tr-inline-form-modal-button em {
    color: #224d27;
    font-size: 15px;
}

.tr-inline-form-modal .tr-action-modal-card {
    max-width: min(560px, 100%);
}

.tr-inline-form-modal-body {
    display: grid;
    gap: 12px;
}

.tr-admin-guidance-card + .tr-inline-form-modal-button {
    min-height: 42px;
}

.tr-inline-action-form.is-in-modal {
    display: grid !important;
    gap: 12px;
}

.tr-inline-action-form.is-in-modal label {
    display: grid;
    gap: 6px;
}

.tr-inline-action-form.is-in-modal label span,
.tr-inline-action-form.is-in-modal .tr-inline-check span {
    color: rgba(255, 255, 255, 0.68) !important;
    font-size: 11px;
    font-weight: 720;
    text-transform: uppercase;
}

.tr-inline-action-form.is-in-modal :where(input, select, textarea) {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.16) !important;
    border-radius: 9px;
    color: #ffffff !important;
    min-height: 42px;
    padding: 9px 11px;
    width: 100%;
}

.tr-inline-action-form.is-in-modal input[type="checkbox"],
.tr-inline-action-form.is-in-modal input[type="radio"] {
    accent-color: var(--tr-primary-lime);
    background: rgba(255, 255, 255, 0.94) !important;
    height: 17px;
    min-height: 17px !important;
    padding: 0;
    width: 17px !important;
}

.tr-inline-action-form.is-in-modal select option {
    color: #11170f;
}

.tr-inline-action-form.is-in-modal :where(button[type="submit"], .btn) {
    align-items: center;
    background: var(--tr-primary-lime);
    border: 0;
    border-radius: 9px;
    color: var(--tr-primary-lime-ink);
    display: inline-flex;
    font-size: 13px;
    font-weight: 760;
    gap: 8px;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
}

.transroc-shell.transroc-onboarding-page:not(.transroc-dashboard-page) {
    --tr-onboarding-control-size: 48px;
    --tr-onboarding-copy-size: 14px;
    --tr-onboarding-heading-size: 24px;
    --tr-onboarding-input-size: 14px;
    --tr-onboarding-label-size: 13px;
}

.transroc-shell.transroc-onboarding-page:not(.transroc-dashboard-page) .transroc-content {
    animation: tr-onboarding-bg-shift 12s ease-in-out infinite alternate;
    background:
        linear-gradient(90deg, rgba(247, 251, 244, 0.96), rgba(236, 247, 238, 0.98)),
        var(--tr-green-50) !important;
    background-size: 140% 140%, auto;
}

.transroc-shell.transroc-onboarding-page:not(.transroc-dashboard-page) .tr-page-header {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    margin-bottom: 22px;
    padding: 0 !important;
}

.transroc-shell.transroc-onboarding-page:not(.transroc-dashboard-page) .tr-page-header h1,
.transroc-shell.transroc-onboarding-page:not(.transroc-dashboard-page) .tr-breadcrumbs,
.transroc-shell.transroc-onboarding-page:not(.transroc-dashboard-page) .tr-breadcrumbs a,
.transroc-shell.transroc-onboarding-page:not(.transroc-dashboard-page) .tr-breadcrumbs span,
.transroc-shell.transroc-onboarding-page:not(.transroc-dashboard-page) .tr-breadcrumbs em {
    color: var(--tr-green-950) !important;
    text-shadow: none !important;
}

.transroc-shell.transroc-onboarding-page:not(.transroc-dashboard-page) .tr-page-header p {
    color: #526157 !important;
    text-shadow: none !important;
}

.transroc-shell.transroc-onboarding-page:not(.transroc-dashboard-page) .tr-onboarding-panel {
    background: rgba(255, 255, 255, 0.97) !important;
    border-color: rgba(8, 45, 33, 0.12) !important;
    box-shadow: 0 22px 48px rgba(8, 45, 33, 0.12);
    color: var(--tr-ink) !important;
    padding: clamp(22px, 2.5vw, 34px);
}

.transroc-shell.transroc-onboarding-page:not(.transroc-dashboard-page) .tr-onboarding-panel:focus-within {
    box-shadow: 0 26px 58px rgba(8, 45, 33, 0.16);
}

.transroc-shell.transroc-onboarding-page:not(.transroc-dashboard-page) .tr-onboarding-heading {
    border-bottom-color: rgba(8, 45, 33, 0.1);
    margin-bottom: 22px;
    padding-bottom: 16px;
}

.transroc-shell.transroc-onboarding-page:not(.transroc-dashboard-page) .tr-onboarding-heading span {
    color: var(--tr-green-700) !important;
}

.transroc-shell.transroc-onboarding-page:not(.transroc-dashboard-page) .tr-onboarding-heading h2 {
    color: var(--tr-green-950) !important;
}

.transroc-shell.transroc-onboarding-page:not(.transroc-dashboard-page) .tr-onboarding-heading p,
.transroc-shell.transroc-onboarding-page:not(.transroc-dashboard-page) .tr-onboarding-note {
    color: #526157 !important;
}

.transroc-shell.transroc-onboarding-page:not(.transroc-dashboard-page) .tr-onboarding-note.is-success {
    color: var(--tr-success) !important;
    font-weight: 780;
}

.transroc-shell.transroc-onboarding-page:not(.transroc-dashboard-page) .tr-onboarding-note.is-loading {
    color: var(--tr-green-700) !important;
    font-weight: 780;
}

.transroc-shell.transroc-onboarding-page:not(.transroc-dashboard-page) .tr-onboarding-note.is-error {
    color: var(--tr-danger) !important;
    font-weight: 780;
}

.transroc-shell.transroc-onboarding-page:not(.transroc-dashboard-page) .tr-onboarding-form {
    gap: 20px;
}

.transroc-shell.transroc-onboarding-page:not(.transroc-dashboard-page) .tr-onboarding-personal-grid {
    align-items: start;
    gap: 24px;
}

.transroc-shell.transroc-onboarding-page:not(.transroc-dashboard-page) .tr-onboarding-field-grid {
    gap: 18px;
}

.transroc-shell.transroc-onboarding-page:not(.transroc-dashboard-page) .tr-onboarding-form label > span,
.transroc-shell.transroc-onboarding-page:not(.transroc-dashboard-page) .tr-onboarding-field-grid label > span,
.transroc-shell.transroc-onboarding-page:not(.transroc-dashboard-page) .tr-selfie-panel-heading > span,
.transroc-shell.transroc-onboarding-page:not(.transroc-dashboard-page) .tr-selfie-upload-field > span,
.transroc-shell.transroc-onboarding-page:not(.transroc-dashboard-page) .tr-inline-check span {
    color: #2f3d34 !important;
}

.transroc-shell.transroc-onboarding-page:not(.transroc-dashboard-page) .tr-onboarding-form input:not([type="checkbox"]):not([type="radio"]):not([type="file"]),
.transroc-shell.transroc-onboarding-page:not(.transroc-dashboard-page) .tr-onboarding-form select,
.transroc-shell.transroc-onboarding-page:not(.transroc-dashboard-page) .tr-onboarding-form textarea {
    background: #ffffff !important;
    border: 1px solid #bccbc0 !important;
    box-shadow: inset 0 1px 0 rgba(8, 45, 33, 0.03);
    color: var(--tr-green-950) !important;
    font-size: var(--tr-onboarding-input-size);
    font-weight: 700;
    min-height: var(--tr-onboarding-control-size);
    padding: 12px 14px;
}

.transroc-shell.transroc-onboarding-page:not(.transroc-dashboard-page) .tr-onboarding-form input[readonly] {
    background: #f5faf6 !important;
    color: #32433a !important;
    cursor: default;
}

.transroc-shell.transroc-onboarding-page:not(.transroc-dashboard-page) .tr-onboarding-form input::placeholder,
.transroc-shell.transroc-onboarding-page:not(.transroc-dashboard-page) .tr-onboarding-form textarea::placeholder {
    color: #6d7a71 !important;
    opacity: 1;
}

.transroc-shell.transroc-onboarding-page:not(.transroc-dashboard-page) .tr-onboarding-form input[type="file"] {
    background: #ffffff !important;
    border: 1px solid #d2ddd5 !important;
    border-radius: 8px;
    color: var(--tr-green-950) !important;
    font-size: 13px;
    font-weight: 760;
    min-height: var(--tr-onboarding-control-size);
    padding: 8px 10px;
}

.transroc-shell.transroc-onboarding-page:not(.transroc-dashboard-page) .tr-onboarding-form input[type="file"]::file-selector-button {
    background: #eef3ee;
    border: 1px solid #bfcdbf;
    border-radius: 7px;
    color: var(--tr-green-950);
    cursor: pointer;
    font: inherit;
    font-weight: 850;
    margin-right: 12px;
    min-height: 30px;
    padding: 5px 10px;
}

.transroc-shell.transroc-onboarding-page:not(.transroc-dashboard-page) .tr-onboarding-form input[type="file"]::-webkit-file-upload-button {
    background: #eef3ee;
    border: 1px solid #bfcdbf;
    border-radius: 7px;
    color: var(--tr-green-950);
    cursor: pointer;
    font: inherit;
    font-weight: 850;
    margin-right: 12px;
    min-height: 30px;
    padding: 5px 10px;
}

.transroc-shell.transroc-onboarding-page:not(.transroc-dashboard-page) .tr-onboarding-form input:focus,
.transroc-shell.transroc-onboarding-page:not(.transroc-dashboard-page) .tr-onboarding-form select:focus,
.transroc-shell.transroc-onboarding-page:not(.transroc-dashboard-page) .tr-onboarding-form textarea:focus {
    border-color: rgba(28, 106, 73, 0.72) !important;
    box-shadow: 0 0 0 4px rgba(46, 166, 106, 0.14);
    outline: 0;
}

.transroc-shell.transroc-onboarding-page:not(.transroc-dashboard-page) .tr-onboarding-panel .select2-container--default .select2-selection--single {
    background: #ffffff !important;
    border: 1px solid #bccbc0 !important;
    border-radius: 8px;
    cursor: pointer;
    height: var(--tr-onboarding-control-size);
    position: relative;
}

.transroc-shell.transroc-onboarding-page:not(.transroc-dashboard-page) .tr-onboarding-panel .select2-container--default .select2-selection--single .select2-selection__rendered {
    align-items: center;
    color: var(--tr-green-950) !important;
    display: flex;
    font-size: var(--tr-onboarding-input-size);
    font-weight: 650;
    height: 100%;
    line-height: 1.2;
    padding-left: 14px;
    padding-right: 90px;
}

.transroc-shell.transroc-onboarding-page:not(.transroc-dashboard-page) .tr-onboarding-panel .select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #6d7a71 !important;
}

.transroc-shell.transroc-onboarding-page:not(.transroc-dashboard-page) .tr-onboarding-panel .select2-container--default .select2-selection--single .select2-selection__arrow {
    background: var(--tr-green-700);
    box-shadow: 0 7px 16px rgba(8, 45, 33, 0.18);
    height: 28px;
    right: 10px;
    width: 28px;
}

.transroc-shell.transroc-onboarding-page:not(.transroc-dashboard-page) .tr-onboarding-panel .select2-container--default .select2-selection--single:hover .select2-selection__arrow,
.transroc-shell.transroc-onboarding-page:not(.transroc-dashboard-page) .tr-onboarding-panel .select2-container--default.select2-container--focus .select2-selection--single .select2-selection__arrow,
.transroc-shell.transroc-onboarding-page:not(.transroc-dashboard-page) .tr-onboarding-panel .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow {
    background: var(--tr-green-800);
    box-shadow: 0 9px 20px rgba(8, 45, 33, 0.22);
    transform: translateY(-50%) scale(1.04);
}

.transroc-shell.transroc-onboarding-page:not(.transroc-dashboard-page) .tr-onboarding-panel .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #ffffff transparent transparent transparent !important;
}

.transroc-shell.transroc-onboarding-page:not(.transroc-dashboard-page) .tr-onboarding-panel .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent #ffffff transparent !important;
}

.select2-dropdown.tr-onboarding-select-dropdown {
    background: #ffffff !important;
    border: 1px solid #bccbc0 !important;
    color: var(--tr-green-950) !important;
}

.select2-dropdown.tr-onboarding-select-dropdown .select2-results__option {
    color: var(--tr-green-950) !important;
    font-weight: 560;
}

.select2-dropdown.tr-onboarding-select-dropdown .select2-results__option--highlighted[aria-selected] {
    background: var(--tr-green-100) !important;
    color: var(--tr-green-950) !important;
}

.transroc-shell.transroc-onboarding-page:not(.transroc-dashboard-page) .tr-selfie-panel {
    background: #ffffff !important;
    border-color: rgba(8, 45, 33, 0.14) !important;
    box-shadow: 0 14px 32px rgba(8, 45, 33, 0.08);
    color: var(--tr-ink) !important;
    padding: 16px;
}

.transroc-shell.transroc-onboarding-page:not(.transroc-dashboard-page) .tr-selfie-panel:focus-within,
.transroc-shell.transroc-onboarding-page:not(.transroc-dashboard-page) .tr-selfie-panel:hover {
    border-color: rgba(28, 106, 73, 0.24) !important;
    box-shadow: 0 18px 38px rgba(8, 45, 33, 0.12);
}

.transroc-shell.transroc-onboarding-page:not(.transroc-dashboard-page) .tr-selfie-panel-heading strong {
    background: #14513A !important;
    border-color: rgba(8, 45, 33, 0.18) !important;
    color: #ffffff !important;
}

.transroc-shell.transroc-onboarding-page:not(.transroc-dashboard-page) .tr-selfie-frame {
    background: #f3faf5;
    border-color: rgba(28, 106, 73, 0.28);
    min-height: 250px;
}

.transroc-shell.transroc-onboarding-page:not(.transroc-dashboard-page) .tr-selfie-placeholder,
.transroc-shell.transroc-onboarding-page:not(.transroc-dashboard-page) .tr-selfie-placeholder span {
    color: #526157 !important;
}

.transroc-shell.transroc-onboarding-page:not(.transroc-dashboard-page) .tr-selfie-placeholder em {
    background: #ffffff;
    color: var(--tr-green-700);
    box-shadow: 0 8px 22px rgba(8, 45, 33, 0.08);
}

.transroc-shell.transroc-onboarding-page:not(.transroc-dashboard-page) .tr-selfie-actions .btn {
    min-height: 42px;
}

.transroc-shell.transroc-onboarding-page:not(.transroc-dashboard-page) .tr-onboarding-panel .btn {
    font-size: 13px;
    min-height: 42px;
}

.transroc-shell.transroc-onboarding-page:not(.transroc-dashboard-page) .tr-onboarding-review div {
    background: #ffffff !important;
    border-color: rgba(8, 45, 33, 0.12) !important;
}

.transroc-shell.transroc-onboarding-page:not(.transroc-dashboard-page) .tr-onboarding-review dt {
    color: #526157 !important;
}

.transroc-shell.transroc-onboarding-page:not(.transroc-dashboard-page) .tr-onboarding-review dd {
    color: var(--tr-green-950) !important;
}

@media (prefers-reduced-motion: reduce) {
    .transroc-shell.transroc-onboarding-page:not(.transroc-dashboard-page) .transroc-content,
    .tr-onboarding-shell,
    .tr-onboarding-panel,
    .tr-onboarding-step,
    .tr-selfie-placeholder em {
        animation: none !important;
    }

    .tr-onboarding-step,
    .tr-onboarding-step > span,
    .tr-onboarding-panel,
    .tr-onboarding-form input,
    .tr-onboarding-form select,
    .tr-onboarding-form textarea,
    .tr-onboarding-panel .select2-container--default .select2-selection--single,
    .tr-onboarding-panel .select2-container--default .select2-selection--single .select2-selection__arrow,
    .tr-selfie-panel,
    .tr-onboarding-panel .btn,
    .tr-onboarding-panel .btn em {
        transition: none !important;
    }

    .tr-onboarding-step,
    .tr-onboarding-step:not(.is-locked):hover,
    .tr-onboarding-step:not(.is-locked):focus-visible,
    .tr-onboarding-step:not(.is-locked):hover > span,
    .tr-onboarding-step:not(.is-locked):focus-visible > span,
    .tr-onboarding-form input:focus,
    .tr-onboarding-form select:focus,
    .tr-onboarding-form textarea:focus,
    .tr-onboarding-panel .select2-container--default.select2-container--focus .select2-selection--single,
    .tr-onboarding-panel .select2-container--default.select2-container--open .select2-selection--single,
    .tr-selfie-panel:focus-within,
    .tr-selfie-panel:hover,
    .tr-onboarding-panel .btn:hover,
    .tr-onboarding-panel .btn:focus-visible,
    .tr-onboarding-panel .btn:hover .ni-arrow-right,
    .tr-onboarding-panel .btn:focus-visible .ni-arrow-right,
    .tr-onboarding-panel .btn:hover .ni-arrow-left,
    .tr-onboarding-panel .btn:focus-visible .ni-arrow-left {
        transform: none !important;
    }
}

@media (max-width: 1180px) {
    .tr-payout-table-top .tr-collapsible-filter-panel {
        width: 100%;
    }

    .tr-payout-table-top .tr-collapsible-filter-panel summary {
        justify-content: center;
        width: 100%;
    }

    .tr-payout-table-top .tr-collapsible-filter-panel > form {
        min-width: 0;
        position: static;
        width: 100%;
    }
}

.transroc-admin-dashboard-page {
    background: #f7f9f5;
}

.transroc-admin-dashboard-page .transroc-content {
    background: #f7f9f5;
}

.transroc-admin-dashboard-page .transroc-content-container {
    max-width: 1600px;
    padding: 24px 28px 36px;
}

.transroc-admin-dashboard-page .transroc-menu-heading {
    display: block;
    margin: 18px 8px 8px;
}

.transroc-admin-dashboard-page .transroc-menu-heading h6 {
    color: rgba(33, 42, 37, 0.62);
    font-size: 10px;
    font-weight: 780;
    letter-spacing: 0;
    margin: 0;
    text-transform: uppercase;
}

.transroc-admin-dashboard-page .transroc-menu + .transroc-menu {
    margin-top: 4px;
}

.tr-admin-dashboard {
    color: #111c18;
    display: grid;
    gap: 18px;
}

.tr-admin-dashboard-hero {
    align-items: start;
    display: grid;
    gap: 18px;
    grid-template-columns: minmax(0, 1fr) minmax(420px, auto);
}

.tr-admin-dashboard-hero h1 {
    color: #0f1714;
    font-size: clamp(28px, 2vw, 38px);
    font-weight: 760;
    letter-spacing: 0;
    line-height: 1.08;
    margin: 0 0 6px;
}

.tr-admin-dashboard-hero p {
    color: #53605a;
    font-size: 14px;
    font-weight: 560;
    margin: 0;
}

.tr-admin-dashboard-tools {
    align-items: center;
    display: flex;
    gap: 10px;
    justify-content: end;
}

.tr-admin-date-filter summary,
.tr-admin-date-range,
.tr-admin-export-button {
    align-items: center;
    background: #fff;
    border: 1px solid #dfe5df;
    border-radius: 8px;
    display: inline-flex;
    min-height: 40px;
}

.tr-admin-date-filter {
    position: relative;
}

.tr-admin-date-filter summary {
    color: #27342f;
    cursor: pointer;
    gap: 10px;
    justify-content: space-between;
    list-style: none;
    min-width: 230px;
    padding: 0 12px;
}

.tr-admin-date-filter summary::-webkit-details-marker {
    display: none;
}

.tr-admin-date-filter summary > span {
    align-items: center;
    display: inline-flex;
    font-size: 12px;
    font-weight: 760;
    gap: 8px;
}

.tr-admin-date-filter summary small {
    color: #66736c;
    font-size: 12px;
    font-weight: 620;
    max-width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tr-admin-date-range {
    box-shadow: 0 18px 44px rgba(22, 34, 27, 0.16);
    display: grid;
    gap: 8px;
    padding: 14px;
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    width: min(360px, calc(100vw - 32px));
    z-index: 30;
}

.tr-admin-date-filter:not([open]) .tr-admin-date-range {
    display: none;
}

.tr-admin-date-range label,
.tr-admin-custom-dates {
    display: grid;
    gap: 6px;
}

.tr-admin-custom-dates {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tr-admin-date-range input,
.tr-admin-date-range select {
    background: #f8faf7;
    border: 1px solid #dfe5df;
    border-radius: 8px;
    color: #27342f;
    font-size: 12px;
    font-weight: 650;
    min-height: 38px;
    outline: 0;
    padding: 0 10px;
    width: 100%;
}

.tr-admin-date-range label > span {
    color: #7c8880;
    font-size: 11px;
    font-weight: 650;
}

.tr-admin-date-range button {
    align-items: center;
    background: #3e742e;
    border: 1px solid #3e742e;
    border-radius: 8px;
    color: #fff;
    display: inline-flex;
    font-size: 12px;
    font-weight: 760;
    gap: 8px;
    min-height: 40px;
    justify-content: center;
    width: 100%;
}

.tr-admin-export-button {
    background: #dfff00;
    border-color: #dfff00;
    color: #111c18;
    font-size: 12px;
    font-weight: 760;
    gap: 9px;
    justify-content: center;
    padding: 0 16px;
    text-decoration: none;
    white-space: nowrap;
}

.tr-admin-export-button:hover,
.tr-admin-export-button:focus {
    color: #111c18;
    transform: translateY(-1px);
}

.transroc-admin-dashboard-page .tr-admin-dashboard-filters {
    background: #fff;
    border-color: #dfe5df;
    border-radius: 12px;
    box-shadow: 0 12px 28px rgba(31, 43, 36, 0.05);
    grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
}

.transroc-admin-dashboard-page .tr-admin-dashboard-filters input,
.transroc-admin-dashboard-page .tr-admin-dashboard-filters select {
    background: #f9fbf8;
    border-color: #dfe5df;
    color: #14221c;
}

.tr-admin-dashboard-shell {
    align-items: start;
    display: grid;
    gap: 16px;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 300px);
}

.tr-admin-dashboard-canvas {
    display: grid;
    gap: 16px;
    min-width: 0;
}

.tr-admin-dashboard-rail {
    display: grid;
    gap: 16px;
    min-width: 0;
}

.transroc-admin-dashboard-page .tr-admin-kpi-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tr-admin-top-kpis .tr-admin-kpi-card {
    align-items: start;
    border-color: #dfe5df;
    border-radius: 10px;
    box-shadow: 0 14px 34px rgba(31, 43, 36, 0.05);
    gap: 12px;
    grid-template-columns: 46px minmax(0, 1fr);
    min-height: 150px;
    overflow: hidden;
    position: relative;
}

.tr-admin-top-kpis .tr-admin-kpi-card::after {
    background: linear-gradient(180deg, transparent, rgba(67, 160, 71, 0.09));
    bottom: 0;
    content: "";
    height: 44px;
    left: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
}

.tr-admin-top-kpis .tr-admin-kpi-card.is-gold::after {
    background: linear-gradient(180deg, transparent, rgba(245, 183, 10, 0.12));
}

.tr-admin-top-kpis .tr-admin-kpi-card.is-blue::after {
    background: linear-gradient(180deg, transparent, rgba(59, 130, 246, 0.11));
}

.tr-admin-top-kpis .tr-admin-kpi-card.is-purple::after {
    background: linear-gradient(180deg, transparent, rgba(139, 92, 246, 0.11));
}

.tr-admin-top-kpis .tr-admin-kpi-icon {
    background: #eaf6e8;
    border-radius: 10px;
    color: #2f8f3d;
}

.tr-admin-top-kpis .is-gold .tr-admin-kpi-icon {
    background: #fff5d6;
    color: #d89600;
}

.tr-admin-top-kpis .is-blue .tr-admin-kpi-icon {
    background: #e8f0ff;
    color: #3b82f6;
}

.tr-admin-top-kpis .is-purple .tr-admin-kpi-icon {
    background: #f1e8ff;
    color: #8b5cf6;
}

.tr-admin-top-kpis .tr-admin-kpi-card > div > span {
    color: #5d6963;
    font-size: 12px;
    font-weight: 650;
}

.tr-admin-top-kpis .tr-admin-kpi-card strong {
    color: #111c18;
    font-size: clamp(22px, 1.6vw, 30px);
    font-weight: 780;
    line-height: 1.05;
}

.tr-admin-top-kpis .tr-admin-kpi-card small {
    align-items: center;
    color: #2f8f3d;
    display: inline-flex;
    font-size: 11px;
    font-weight: 650;
    gap: 5px;
}

.tr-admin-sparkline {
    bottom: 8px;
    height: 44px;
    left: 14px;
    position: absolute;
    right: 14px;
    z-index: 1;
}

.tr-admin-sparkline svg,
.tr-admin-line-chart svg {
    display: block;
    height: 100%;
    overflow: visible;
    width: 100%;
}

.tr-admin-analytics-grid,
.tr-admin-lower-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
}

.transroc-admin-dashboard-page .tr-admin-panel {
    background: #fff;
    border-color: #dfe5df;
    border-radius: 12px;
    box-shadow: 0 14px 34px rgba(31, 43, 36, 0.05);
    padding: 18px;
}

.transroc-admin-dashboard-page .tr-admin-section-heading {
    align-items: start;
}

.transroc-admin-dashboard-page .tr-admin-section-heading > div > span {
    color: #111c18;
    font-size: 13px;
    font-weight: 740;
    text-transform: none;
}

.transroc-admin-dashboard-page .tr-admin-section-heading h2 {
    color: #111c18;
    font-size: 22px;
    font-weight: 780;
}

.tr-admin-section-heading small {
    align-items: center;
    color: #2f8f3d;
    display: inline-flex;
    font-size: 12px;
    font-weight: 650;
    gap: 5px;
    margin-top: 6px;
}

.tr-admin-section-heading a,
.tr-admin-period-chip,
.tr-admin-mini-select {
    color: #2f6f2d;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}

.tr-admin-period-chip,
.tr-admin-mini-select {
    align-items: center;
    background: #fff;
    border: 1px solid #dfe5df;
    border-radius: 8px;
    display: inline-flex;
    gap: 8px;
    min-height: 36px;
    padding: 0 12px;
}

.tr-admin-line-chart {
    background:
        repeating-linear-gradient(to bottom, transparent 0 38px, rgba(31, 43, 36, 0.08) 39px 40px);
    display: grid;
    gap: 10px;
    min-height: 220px;
    padding: 10px 4px 0;
}

.tr-admin-line-chart svg {
    min-height: 170px;
}

.tr-admin-chart-axis {
    color: #68746d;
    display: grid;
    font-size: 11px;
    font-weight: 600;
    grid-template-columns: repeat(7, minmax(0, 1fr));
}

.tr-admin-chart-axis span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tr-admin-donut-layout {
    align-items: center;
    display: grid;
    gap: 22px;
    grid-template-columns: 210px minmax(0, 1fr);
}

.tr-admin-donut {
    align-items: center;
    aspect-ratio: 1;
    border-radius: 999px;
    display: grid;
    justify-items: center;
    max-width: 210px;
    min-width: 180px;
    padding: 38px;
    position: relative;
}

.tr-admin-donut::after {
    background: #fff;
    border-radius: inherit;
    content: "";
    inset: 38px;
    position: absolute;
}

.tr-admin-donut span {
    color: #111c18;
    display: grid;
    justify-items: center;
    line-height: 1.1;
    position: relative;
    z-index: 1;
}

.tr-admin-donut strong {
    color: #111c18;
    font-size: 24px;
    font-weight: 780;
}

.tr-admin-donut small {
    color: #4d5a53;
    font-size: 12px;
    font-weight: 650;
}

.tr-admin-donut-small {
    max-width: 180px;
    min-width: 160px;
}

.tr-admin-chart-list,
.tr-admin-system-list,
.tr-admin-activity-list {
    display: grid;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.tr-admin-chart-list li {
    align-items: center;
    display: grid;
    gap: 10px;
    grid-template-columns: 10px minmax(0, 0.7fr) minmax(110px, 1fr);
}

.tr-admin-dot {
    background: var(--dot, #9aa3ad);
    border-radius: 999px;
    display: inline-block;
    height: 10px;
    width: 10px;
}

.tr-admin-chart-list strong,
.tr-admin-system-list strong,
.tr-admin-activity-list strong {
    color: #111c18;
    font-size: 12px;
    font-weight: 700;
    min-width: 0;
}

.tr-admin-chart-list small,
.tr-admin-activity-list small {
    color: #53605a;
    font-size: 11px;
    font-weight: 600;
    min-width: 0;
}

.tr-admin-orders-table {
    min-width: 720px;
}

.tr-admin-orders-table th {
    background: #fafbf8;
    border-color: #e4e9e3;
    color: #53605a;
    font-size: 11px;
    font-weight: 760;
    text-transform: none;
}

.tr-admin-orders-table td {
    border-color: #edf0eb;
    color: #24302a;
    font-size: 12px;
}

.tr-admin-orders-table td a {
    color: #213b24;
    font-weight: 720;
}

.tr-admin-status-pill {
    background: #eaf6e8;
    border: 1px solid rgba(47, 143, 61, 0.18);
    border-radius: 999px;
    color: #2f7d39;
    display: inline-flex;
    font-size: 11px;
    font-weight: 720;
    padding: 5px 10px;
}

.tr-admin-system-list {
    gap: 0;
}

.tr-admin-system-list li {
    align-items: center;
    border-top: 1px solid #edf0eb;
    display: grid;
    gap: 12px;
    grid-template-columns: 38px minmax(0, 1fr) auto;
    min-height: 70px;
}

.tr-admin-system-list li:first-child {
    border-top: 0;
}

.tr-admin-system-list li > span,
.tr-admin-activity-list li > span,
.tr-admin-bottom-kpis article > span {
    align-items: center;
    background: #edf6ea;
    border-radius: 10px;
    color: #2f8f3d;
    display: inline-flex;
    height: 38px;
    justify-content: center;
    width: 38px;
}

.tr-admin-system-list li.is-gray > span {
    background: #f0f2f1;
    color: #5d6963;
}

.tr-admin-system-list li.is-red > span {
    background: #fff0ed;
    color: #e0442e;
}

.tr-admin-system-list li.is-blue > span {
    background: #edf4ff;
    color: #3b82f6;
}

.tr-admin-system-list b {
    color: #111c18;
    font-size: 18px;
    font-weight: 780;
}

.tr-admin-activity-list li {
    align-items: start;
    display: grid;
    gap: 10px;
    grid-template-columns: 38px minmax(0, 1fr);
}

.tr-admin-activity-list a {
    color: inherit;
}

.tr-admin-operational-metrics {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.tr-admin-operational-metric {
    background: #fff;
    border: 1px solid #dfe5df;
    border-radius: 10px;
    color: #111c18;
    display: grid;
    gap: 6px;
    padding: 14px;
    text-decoration: none;
}

.tr-admin-operational-metric span,
.tr-admin-operational-metric small {
    color: #53605a;
    font-size: 11px;
    font-weight: 650;
}

.tr-admin-operational-metric strong {
    color: #111c18;
    font-size: 18px;
    font-weight: 780;
}

.tr-admin-bottom-kpis {
    background: #fff;
    border: 1px solid #dfe5df;
    border-radius: 12px;
    box-shadow: 0 14px 34px rgba(31, 43, 36, 0.05);
    display: grid;
    gap: 0;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    overflow: hidden;
}

.tr-admin-bottom-kpis article {
    align-items: center;
    border-left: 1px solid #edf0eb;
    display: grid;
    gap: 14px;
    grid-template-columns: 48px minmax(0, 1fr);
    min-width: 0;
    padding: 18px;
}

.tr-admin-bottom-kpis article:first-child {
    border-left: 0;
}

.tr-admin-bottom-kpis article.is-blue > span {
    background: #edf4ff;
    color: #3b82f6;
}

.tr-admin-bottom-kpis article.is-purple > span {
    background: #f1e8ff;
    color: #8b5cf6;
}

.tr-admin-bottom-kpis article.is-orange > span {
    background: #fff3e8;
    color: #f97316;
}

.tr-admin-bottom-kpis small {
    color: #53605a;
    display: block;
    font-size: 12px;
    font-weight: 650;
}

.tr-admin-bottom-kpis strong {
    color: #111c18;
    display: block;
    font-size: 22px;
    font-weight: 780;
    line-height: 1.1;
    margin-top: 4px;
}

.tr-admin-bottom-kpis b {
    align-items: center;
    color: #2f8f3d;
    display: inline-flex;
    font-size: 11px;
    font-weight: 700;
    gap: 5px;
    margin-top: 8px;
}

@media (max-width: 1399px) {
    .tr-admin-dashboard-hero,
    .tr-admin-dashboard-shell,
    .tr-admin-analytics-grid,
    .tr-admin-lower-grid {
        grid-template-columns: 1fr;
    }

    .tr-admin-dashboard-tools {
        justify-content: stretch;
    }

    .tr-admin-dashboard-rail {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1199px) {
    .transroc-admin-dashboard-page .tr-admin-kpi-grid,
    .tr-admin-operational-metrics,
    .tr-admin-bottom-kpis {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tr-admin-bottom-kpis article:nth-child(odd) {
        border-left: 0;
    }
}

@media (max-width: 767px) {
    .transroc-admin-dashboard-page .transroc-content-container {
        padding: 16px 14px 28px;
    }

    .tr-admin-dashboard-tools,
    .transroc-admin-dashboard-page .tr-admin-dashboard-filters,
    .tr-admin-dashboard-rail,
    .tr-admin-donut-layout,
    .tr-admin-operational-metrics,
    .tr-admin-bottom-kpis,
    .transroc-admin-dashboard-page .tr-admin-kpi-grid {
        grid-template-columns: 1fr;
    }

    .tr-admin-date-range {
        align-items: stretch;
        display: grid;
        grid-template-columns: 1fr auto 1fr auto;
        width: 100%;
    }

    .tr-admin-date-range input {
        width: 100%;
    }

    .tr-admin-bottom-kpis article,
    .tr-admin-bottom-kpis article:nth-child(n) {
        border-left: 0;
        border-top: 1px solid #edf0eb;
    }

    .tr-admin-bottom-kpis article:first-child {
        border-top: 0;
    }

    .tr-admin-chart-list li {
        grid-template-columns: 10px minmax(0, 1fr);
    }

    .tr-admin-chart-list small {
        grid-column: 2;
    }
}

/* Admin dashboard reference layout */
body.transroc-admin-dashboard-page {
    --tr-sidebar-width: 260px;
    background: #f7f9f5 !important;
    color: #121a16;
}

body.transroc-admin-dashboard-page .transroc-wrap,
body.transroc-admin-dashboard-page.transroc-shell.has-sidebar .transroc-wrap,
body.transroc-admin-dashboard-page .transroc-content,
body.transroc-admin-dashboard-page.transroc-shell.has-sidebar .transroc-content {
    background: #f7f9f5 !important;
    background-image: none !important;
}

body.transroc-admin-dashboard-page .transroc-mobile-header,
body.transroc-admin-dashboard-page .tr-auto-breadcrumbs,
body.transroc-admin-dashboard-page .transroc-footer,
body.transroc-admin-dashboard-page .tr-admin-filter-state {
    display: none !important;
}

body.transroc-admin-dashboard-page .transroc-content {
    margin-top: 0 !important;
    min-height: 100vh;
    padding: 28px 32px 34px !important;
}

body.transroc-admin-dashboard-page .transroc-content-container {
    max-width: none !important;
    padding: 0 !important;
}

body.transroc-admin-dashboard-page .transroc-sidebar {
    background: #ffffff !important;
    border-right: 1px solid #e5eae3 !important;
    box-shadow: none !important;
    color: #141c18;
    width: var(--tr-sidebar-width) !important;
}

body.transroc-admin-dashboard-page .transroc-sidebar-head {
    padding: 22px 24px 20px !important;
}

body.transroc-admin-dashboard-page .transroc-brand-link {
    align-items: center;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    display: inline-flex;
    gap: 10px;
    justify-content: flex-start;
    margin: 0 !important;
    padding: 0 !important;
    width: auto !important;
}

body.transroc-admin-dashboard-page .transroc-brand-logo-mark {
    background: #f2faf5;
    border: 1px solid #dbe8dc;
    border-radius: 50%;
    filter: none !important;
    height: 46px !important;
    max-height: 46px !important;
    object-fit: contain;
    padding: 7px;
    width: 46px !important;
}

body.transroc-admin-dashboard-page .transroc-staff-brand-copy {
    color: #0f1714;
    display: grid;
    gap: 1px;
    line-height: 1;
}

body.transroc-admin-dashboard-page .transroc-staff-brand-copy strong {
    color: #111c18;
    font-size: 24px;
    font-weight: 820;
}

body.transroc-admin-dashboard-page .transroc-staff-brand-copy small {
    color: #111c18;
    font-size: 10px;
    font-weight: 780;
    letter-spacing: 4px;
}

body.transroc-admin-dashboard-page .transroc-sidebar-content {
    padding: 0 16px 14px !important;
}

body.transroc-admin-dashboard-page .transroc-sidebar-menu {
    margin-top: 2px;
    padding-right: 0;
}

body.transroc-admin-dashboard-page .transroc-menu-heading {
    display: block !important;
    margin: 22px 12px 10px !important;
}

body.transroc-admin-dashboard-page .transroc-menu-heading h6 {
    color: #7a837d !important;
    font-size: 10px;
    font-weight: 760;
    text-transform: uppercase;
}

body.transroc-admin-dashboard-page .transroc-menu {
    gap: 5px;
}

body.transroc-admin-dashboard-page .transroc-menu-link {
    border-radius: 8px !important;
    color: #38433d !important;
    font-size: 13px;
    font-weight: 650;
    gap: 12px;
    min-height: 42px;
    padding: 0 13px !important;
}

body.transroc-admin-dashboard-page .transroc-menu-link:hover {
    background: #f0f5ef !important;
    color: #1f3f25 !important;
}

body.transroc-admin-dashboard-page .transroc-menu-item.active > .transroc-menu-link,
body.transroc-admin-dashboard-page .transroc-menu-link[aria-current="page"] {
    background: #3e742e !important;
    box-shadow: none !important;
    color: #ffffff !important;
}

body.transroc-admin-dashboard-page .transroc-menu-icon {
    flex-basis: 22px;
    font-size: 18px;
    min-width: 22px;
}

body.transroc-admin-dashboard-page .transroc-sidebar-footer {
    background: transparent !important;
    border-top: 1px solid #e6ebe3 !important;
    margin-top: auto;
    padding-top: 14px !important;
}

body.transroc-admin-dashboard-page .transroc-profile-card {
    border-radius: 10px;
    color: #26312c !important;
    min-height: 46px;
}

body.transroc-admin-dashboard-page .transroc-profile-card:hover {
    background: #f0f5ef !important;
}

body.transroc-admin-dashboard-page .tr-admin-dashboard {
    color: #111c18;
    gap: 20px;
}

body.transroc-admin-dashboard-page .tr-admin-dashboard-hero {
    align-items: start;
    display: grid;
    gap: 24px;
    grid-template-columns: minmax(560px, 1fr) minmax(620px, auto);
}

body.transroc-admin-dashboard-page .tr-admin-dashboard-hero h1 {
    color: #11151a !important;
    font-size: 30px;
    font-weight: 760;
    line-height: 1.1;
    margin: 8px 0 8px;
}

body.transroc-admin-dashboard-page .tr-admin-dashboard-hero p {
    color: #4f5962 !important;
    font-size: 14px;
    font-weight: 520;
    margin: 0;
}

body.transroc-admin-dashboard-page .tr-admin-dashboard-tools {
    align-items: end;
    display: flex;
    gap: 16px;
    justify-content: end;
}

body.transroc-admin-dashboard-page .tr-admin-date-filter summary,
body.transroc-admin-dashboard-page .tr-admin-date-range {
    background: #ffffff !important;
    border: 1px solid #dfe5df !important;
    border-radius: 8px;
    box-shadow: none;
    min-height: 40px;
}

body.transroc-admin-dashboard-page .tr-admin-date-range {
    box-shadow: 0 18px 44px rgba(22, 34, 27, 0.14);
    gap: 9px;
    padding: 14px;
}

body.transroc-admin-dashboard-page .tr-admin-date-range input,
body.transroc-admin-dashboard-page .tr-admin-date-range select {
    color: #17211b;
    font-size: 12px;
}

body.transroc-admin-dashboard-page .tr-admin-date-range button {
    background: #3e742e;
    border-color: #3e742e;
    color: #ffffff;
}

body.transroc-admin-dashboard-page .tr-admin-export-button {
    background: #3e742e !important;
    border-color: #3e742e !important;
    border-radius: 8px;
    color: #ffffff !important;
    font-size: 12px;
    min-height: 40px;
}

body.transroc-admin-dashboard-page .tr-admin-dashboard-shell {
    gap: 18px;
    grid-template-columns: minmax(0, 1fr) 340px;
}

body.transroc-admin-dashboard-page .tr-admin-dashboard-canvas,
body.transroc-admin-dashboard-page .tr-admin-dashboard-rail {
    gap: 18px;
}

body.transroc-admin-dashboard-page .tr-admin-top-kpis {
    gap: 16px;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

body.transroc-admin-dashboard-page .tr-admin-kpi-card,
body.transroc-admin-dashboard-page .tr-admin-panel,
body.transroc-admin-dashboard-page .tr-admin-bottom-kpis {
    background: #ffffff !important;
    border: 1px solid #dfe5df !important;
    box-shadow: 0 12px 26px rgba(22, 34, 27, 0.045) !important;
    color: #111c18 !important;
}

body.transroc-admin-dashboard-page .tr-admin-kpi-card {
    border-radius: 12px;
    min-height: 146px;
    padding: 18px;
}

body.transroc-admin-dashboard-page .tr-admin-panel {
    border-radius: 12px;
    padding: 20px;
}

body.transroc-admin-dashboard-page .tr-admin-kpi-card :where(strong, b),
body.transroc-admin-dashboard-page .tr-admin-panel :where(h1, h2, h3, h4, h5, h6, strong, b, caption),
body.transroc-admin-dashboard-page .tr-admin-bottom-kpis :where(strong, b) {
    color: #111c18 !important;
}

body.transroc-admin-dashboard-page .tr-admin-kpi-card :where(span:not(.tr-admin-kpi-icon):not(.tr-admin-sparkline), p, small, li, label, th, td, a:not(.btn)),
body.transroc-admin-dashboard-page .tr-admin-panel :where(p, small, dd, li, label, th, td, span:not(.badge):not(.tr-admin-status-pill):not(.tr-admin-dot):not(.tr-admin-commodity-thumb), a:not(.btn)),
body.transroc-admin-dashboard-page .tr-admin-bottom-kpis :where(small) {
    color: #56615b !important;
}

body.transroc-admin-dashboard-page .tr-admin-top-kpis .tr-admin-kpi-card > div > span,
body.transroc-admin-dashboard-page .tr-admin-section-heading > div > span {
    color: #111c18 !important;
    font-size: 13px;
    font-weight: 740;
    text-transform: none;
}

body.transroc-admin-dashboard-page .tr-admin-top-kpis .tr-admin-kpi-card strong {
    font-size: 26px;
    margin-top: 7px;
}

body.transroc-admin-dashboard-page .tr-admin-top-kpis .tr-admin-kpi-card small,
body.transroc-admin-dashboard-page .tr-admin-section-heading small,
body.transroc-admin-dashboard-page .tr-admin-bottom-kpis b {
    color: #2f8f3d !important;
}

body.transroc-admin-dashboard-page .tr-admin-analytics-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(400px, 0.92fr);
}

body.transroc-admin-dashboard-page .tr-admin-lower-grid {
    grid-template-columns: minmax(0, 1.28fr) minmax(360px, 0.72fr);
}

body.transroc-admin-dashboard-page .tr-admin-section-heading {
    align-items: center;
    margin-bottom: 14px;
}

body.transroc-admin-dashboard-page .tr-admin-section-heading h2 {
    font-size: 24px;
    margin-top: 8px;
}

body.transroc-admin-dashboard-page .tr-admin-section-heading a {
    color: #2f6f2d !important;
    font-size: 12px;
}

body.transroc-admin-dashboard-page .tr-admin-line-chart {
    background: repeating-linear-gradient(to bottom, transparent 0 39px, rgba(31, 43, 36, 0.1) 40px);
    min-height: 220px;
}

body.transroc-admin-dashboard-page .tr-admin-donut {
    min-width: 190px;
}

body.transroc-admin-dashboard-page .tr-admin-chart-list li {
    grid-template-columns: 10px minmax(0, 0.72fr) minmax(120px, 1fr);
}

body.transroc-admin-dashboard-page .tr-admin-orders-table {
    min-width: 780px;
}

body.transroc-admin-dashboard-page .tr-admin-orders-table caption {
    color: #6b746f !important;
}

body.transroc-admin-dashboard-page .tr-admin-orders-table th {
    background: #fbfcfa !important;
    border-color: #e8ece6 !important;
    color: #5f6964 !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: none !important;
}

body.transroc-admin-dashboard-page .tr-admin-orders-table td {
    border-color: #edf0eb !important;
    color: #24302a !important;
    font-size: 12px !important;
}

body.transroc-admin-dashboard-page .tr-admin-commodity-cell {
    align-items: center;
    display: inline-flex;
    gap: 10px;
}

body.transroc-admin-dashboard-page .tr-admin-commodity-thumb {
    background: linear-gradient(135deg, #f6c343, #4ca344);
    border-radius: 7px;
    display: inline-block;
    height: 28px;
    width: 28px;
}

body.transroc-admin-dashboard-page .tr-admin-status-pill {
    background: #eaf7e9 !important;
    border-color: #bde5bd !important;
    color: #257d32 !important;
}

body.transroc-admin-dashboard-page .tr-admin-system-list li {
    min-height: 76px;
}

body.transroc-admin-dashboard-page .tr-admin-system-list li > span,
body.transroc-admin-dashboard-page .tr-admin-activity-list li > span,
body.transroc-admin-dashboard-page .tr-admin-bottom-kpis article > span {
    border-radius: 10px;
}

body.transroc-admin-dashboard-page .tr-admin-system-list b {
    color: #111c18 !important;
    font-size: 21px;
}

body.transroc-admin-dashboard-page .tr-admin-activity-list {
    gap: 16px;
    max-height: 390px;
    overflow: hidden;
}

body.transroc-admin-dashboard-page .tr-admin-activity-list li {
    grid-template-columns: 42px minmax(0, 1fr);
}

body.transroc-admin-dashboard-page .tr-admin-activity-list small {
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    grid-column: 2;
    overflow: hidden;
}

body.transroc-admin-dashboard-page .tr-admin-operational-metrics {
    display: none !important;
}

body.transroc-admin-dashboard-page .tr-admin-bottom-kpis {
    border-radius: 12px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

body.transroc-admin-dashboard-page .tr-admin-bottom-kpis article {
    min-height: 112px;
}

@media (max-width: 1500px) {
    body.transroc-admin-dashboard-page .tr-admin-dashboard-hero,
    body.transroc-admin-dashboard-page .tr-admin-dashboard-shell,
    body.transroc-admin-dashboard-page .tr-admin-analytics-grid,
    body.transroc-admin-dashboard-page .tr-admin-lower-grid {
        grid-template-columns: 1fr;
    }

    body.transroc-admin-dashboard-page .tr-admin-dashboard-tools {
        justify-content: stretch;
    }

    body.transroc-admin-dashboard-page .tr-admin-dashboard-rail {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1199px) {
    body.transroc-admin-dashboard-page .tr-admin-top-kpis,
    body.transroc-admin-dashboard-page .tr-admin-bottom-kpis {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 767px) {
    body.transroc-admin-dashboard-page {
        --tr-sidebar-width: 240px;
    }

    body.transroc-admin-dashboard-page .transroc-content {
        padding: 18px 14px 28px !important;
    }

    body.transroc-admin-dashboard-page .tr-admin-dashboard-rail,
    body.transroc-admin-dashboard-page .tr-admin-donut-layout,
    body.transroc-admin-dashboard-page .tr-admin-bottom-kpis,
    body.transroc-admin-dashboard-page .tr-admin-top-kpis {
        grid-template-columns: 1fr !important;
    }
}

body.transroc-admin-dashboard-page .tr-admin-dashboard-hero {
    grid-template-columns: minmax(0, 1fr) auto !important;
}

body.transroc-admin-dashboard-page .tr-admin-dashboard-shell {
    align-items: start;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 360px) !important;
}

body.transroc-admin-dashboard-page .tr-admin-dashboard-rail {
    grid-template-columns: 1fr !important;
}

body.transroc-admin-dashboard-page .tr-admin-top-kpis {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

body.transroc-admin-dashboard-page .tr-admin-analytics-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr) !important;
}

body.transroc-admin-dashboard-page .tr-admin-lower-grid {
    grid-template-columns: minmax(0, 1.28fr) minmax(340px, 0.72fr) !important;
}

body.transroc-admin-dashboard-page .tr-admin-kpi-card,
body.transroc-admin-dashboard-page .tr-admin-bottom-kpis article {
    container-type: inline-size;
}

body.transroc-admin-dashboard-page .tr-admin-kpi-card > div,
body.transroc-admin-dashboard-page .tr-admin-bottom-kpis article > div {
    min-width: 0;
}

body.transroc-admin-dashboard-page .tr-admin-top-kpis .tr-admin-kpi-card strong,
body.transroc-admin-dashboard-page .tr-admin-bottom-kpis strong {
    display: block;
    max-width: 100%;
    overflow-wrap: anywhere;
    white-space: normal;
    word-break: normal;
}

body.transroc-admin-dashboard-page .tr-admin-top-kpis .tr-admin-kpi-card strong {
    font-size: clamp(18px, 7cqw, 26px);
}

body.transroc-admin-dashboard-page .tr-admin-bottom-kpis {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
}

body.transroc-admin-dashboard-page .tr-admin-bottom-kpis strong {
    font-size: clamp(17px, 8cqw, 22px);
}

body.transroc-admin-dashboard-page .tr-admin-kpi-icon,
body.transroc-admin-dashboard-page .tr-admin-system-list li > span,
body.transroc-admin-dashboard-page .tr-admin-activity-list li > span,
body.transroc-admin-dashboard-page .tr-admin-bottom-kpis article > span {
    color: #176c43;
}

body.transroc-admin-dashboard-page .tr-admin-top-kpis .tr-admin-kpi-icon {
    background: #dff2df;
    color: #176c43;
}

body.transroc-admin-dashboard-page .tr-admin-top-kpis .is-gold .tr-admin-kpi-icon {
    background: #fff0bd;
    color: #a66a00;
}

body.transroc-admin-dashboard-page .tr-admin-top-kpis .is-blue .tr-admin-kpi-icon {
    background: #dbeafe;
    color: #245fc8;
}

body.transroc-admin-dashboard-page .tr-admin-top-kpis .is-purple .tr-admin-kpi-icon {
    background: #eadcff;
    color: #6f35bd;
}

body.transroc-admin-dashboard-page .tr-admin-top-kpis .tr-admin-kpi-icon em,
body.transroc-admin-dashboard-page .tr-admin-top-kpis .tr-admin-kpi-icon em::before {
    color: #111c18 !important;
    opacity: 1 !important;
    -webkit-text-fill-color: #111c18 !important;
}

body.transroc-admin-dashboard-page .tr-admin-system-list li.is-gray > span {
    color: #4f5b55;
}

body.transroc-admin-dashboard-page .tr-admin-system-list li.is-red > span {
    color: #c93322;
}

body.transroc-admin-dashboard-page .tr-admin-system-list li.is-blue > span,
body.transroc-admin-dashboard-page .tr-admin-bottom-kpis article.is-blue > span {
    color: #245fc8;
}

body.transroc-admin-dashboard-page .tr-admin-bottom-kpis article.is-purple > span {
    color: #6f35bd;
}

body.transroc-admin-dashboard-page .tr-admin-bottom-kpis article.is-orange > span {
    color: #d7570f;
}

body.transroc-admin-dashboard-page :is(.tr-admin-kpi-icon, .tr-admin-system-list li > span, .tr-admin-activity-list li > span, .tr-admin-bottom-kpis article > span) em,
body.transroc-admin-dashboard-page :is(.tr-admin-kpi-icon, .tr-admin-system-list li > span, .tr-admin-activity-list li > span, .tr-admin-bottom-kpis article > span) em::before {
    color: currentColor !important;
    opacity: 1 !important;
}

body.transroc-admin-dashboard-page :is(.tr-admin-kpi-icon, .tr-admin-system-list li > span, .tr-admin-activity-list li > span, .tr-admin-bottom-kpis article > span) em {
    align-items: center;
    display: inline-flex !important;
    font-size: 22px !important;
    font-style: normal;
    height: 1em;
    justify-content: center;
    line-height: 1 !important;
    width: 1em;
}

body.transroc-admin-dashboard-page :is(.tr-admin-kpi-icon, .tr-admin-system-list li > span, .tr-admin-activity-list li > span, .tr-admin-bottom-kpis article > span) .ni::before {
    color: currentColor !important;
    display: block !important;
    font-family: "Nioicon" !important;
    font-size: inherit !important;
    font-weight: normal !important;
    line-height: 1 !important;
    opacity: 1 !important;
}

body.transroc-admin-dashboard-page .tr-admin-interactive-chart {
    --chart-stroke: #2f8f3d;
    overflow: visible;
}

body.transroc-admin-dashboard-page .tr-admin-interactive-chart .tr-chart-point {
    cursor: pointer;
    outline: none;
}

body.transroc-admin-dashboard-page .tr-admin-interactive-chart .tr-chart-point circle {
    fill: #ffffff;
    stroke: var(--chart-stroke);
    stroke-width: 2;
    transform-box: fill-box;
    transform-origin: center;
    transition: filter 0.16s ease, stroke-width 0.16s ease, transform 0.16s ease;
}

body.transroc-admin-dashboard-page .tr-admin-interactive-chart .tr-chart-guide {
    opacity: 0;
    stroke: rgba(17, 28, 24, 0.26);
    stroke-dasharray: 2 2;
    stroke-width: 1;
    transition: opacity 0.16s ease;
}

body.transroc-admin-dashboard-page .tr-admin-interactive-chart .tr-chart-tooltip {
    fill: #111c18;
    font-size: 7px;
    font-weight: 800;
    opacity: 0;
    paint-order: stroke;
    pointer-events: none;
    stroke: #ffffff;
    stroke-width: 3px;
    transition: opacity 0.16s ease;
}

body.transroc-admin-dashboard-page .tr-admin-interactive-chart .tr-chart-point:hover .tr-chart-guide,
body.transroc-admin-dashboard-page .tr-admin-interactive-chart .tr-chart-point:focus .tr-chart-guide,
body.transroc-admin-dashboard-page .tr-admin-interactive-chart .tr-chart-point:hover .tr-chart-tooltip,
body.transroc-admin-dashboard-page .tr-admin-interactive-chart .tr-chart-point:focus .tr-chart-tooltip {
    opacity: 1;
}

body.transroc-admin-dashboard-page .tr-admin-interactive-chart .tr-chart-point:hover circle,
body.transroc-admin-dashboard-page .tr-admin-interactive-chart .tr-chart-point:focus circle {
    filter: drop-shadow(0 4px 7px rgba(17, 28, 24, 0.2));
    stroke-width: 3;
    transform: scale(1.35);
}

body.transroc-admin-dashboard-page .tr-admin-donut {
    background: #edf6ea;
    overflow: visible;
}

body.transroc-admin-dashboard-page .tr-admin-donut-svg {
    height: 100%;
    inset: 0;
    overflow: visible;
    position: absolute;
    width: 100%;
    z-index: 0;
}

body.transroc-admin-dashboard-page .tr-admin-donut::after {
    z-index: 1;
}

body.transroc-admin-dashboard-page .tr-admin-donut span {
    z-index: 2;
}

body.transroc-admin-dashboard-page .tr-admin-donut-segment,
body.transroc-admin-dashboard-page .tr-admin-donut-empty {
    fill: none;
    stroke-linecap: butt;
    stroke-width: 18;
}

body.transroc-admin-dashboard-page .tr-admin-donut-empty {
    stroke: #dfe6dc;
}

body.transroc-admin-dashboard-page .tr-admin-donut-segment {
    cursor: pointer;
    outline: none;
    transition: filter 0.16s ease, opacity 0.16s ease, stroke-width 0.16s ease;
}

body.transroc-admin-dashboard-page .tr-admin-donut-segment:hover,
body.transroc-admin-dashboard-page .tr-admin-donut-segment:focus {
    filter: drop-shadow(0 5px 8px rgba(17, 28, 24, 0.22));
    opacity: 0.9;
    stroke-width: 21;
}

body.transroc-admin-dashboard-page .tr-admin-buyer-cell {
    align-items: center;
    display: inline-flex;
    gap: 10px;
    min-width: 0;
}

body.transroc-admin-dashboard-page .tr-admin-buyer-cell > span {
    align-items: center;
    background: #eaf7e9;
    border-radius: 7px;
    color: #2f8f3d;
    display: inline-flex;
    flex: 0 0 28px;
    font-size: 12px;
    font-weight: 800;
    height: 28px;
    justify-content: center;
    width: 28px;
}

body.transroc-admin-dashboard-page .tr-admin-buyer-cell strong {
    color: #24302a !important;
    font-size: 12px;
    font-weight: 680;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

body.transroc-admin-dashboard-page .tr-admin-commodity-thumb {
    background: #f3f6f1;
    border: 1px solid #e2e8df;
    border-radius: 7px;
    display: inline-block;
    flex: 0 0 28px;
    height: 28px;
    overflow: hidden;
    width: 28px;
}

body.transroc-admin-dashboard-page .tr-admin-commodity-thumb img {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

body.transroc-admin-dashboard-page .tr-admin-status-pill.is-processing,
body.transroc-admin-dashboard-page .tr-admin-status-pill.is-procurement-queued,
body.transroc-admin-dashboard-page .tr-admin-status-pill.is-paid-unassigned,
body.transroc-admin-dashboard-page .tr-admin-status-pill.is-awaiting-payment {
    background: #fff7df !important;
    border-color: #f5d486 !important;
    color: #b77900 !important;
}

body.transroc-admin-dashboard-page .tr-admin-status-pill.is-shipped,
body.transroc-admin-dashboard-page .tr-admin-status-pill.is-in-transit {
    background: #eaf2ff !important;
    border-color: #bdd6ff !important;
    color: #2563eb !important;
}

body.transroc-admin-dashboard-page .tr-admin-status-pill.is-pending {
    background: #fff0ed !important;
    border-color: #ffc9bd !important;
    color: #e0442e !important;
}

body.transroc-admin-dashboard-page .tr-admin-status-pill.is-completed,
body.transroc-admin-dashboard-page .tr-admin-status-pill.is-in-storage {
    background: #eaf7e9 !important;
    border-color: #bde5bd !important;
    color: #257d32 !important;
}

@media (max-width: 1280px) {
    body.transroc-admin-dashboard-page .tr-admin-dashboard-shell {
        grid-template-columns: 1fr !important;
    }

    body.transroc-admin-dashboard-page .tr-admin-dashboard-rail {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 1100px) {
    body.transroc-admin-dashboard-page .tr-admin-top-kpis,
    body.transroc-admin-dashboard-page .tr-admin-bottom-kpis {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    body.transroc-admin-dashboard-page .tr-admin-analytics-grid,
    body.transroc-admin-dashboard-page .tr-admin-lower-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 767px) {
    body.transroc-admin-dashboard-page .tr-admin-dashboard-hero,
    body.transroc-admin-dashboard-page .tr-admin-dashboard-rail,
    body.transroc-admin-dashboard-page .tr-admin-top-kpis,
    body.transroc-admin-dashboard-page .tr-admin-bottom-kpis,
    body.transroc-admin-dashboard-page .tr-admin-donut-layout {
        grid-template-columns: 1fr !important;
    }

    body.transroc-admin-dashboard-page .tr-admin-dashboard-tools {
        align-items: stretch;
        display: grid;
    }
}
