.giforest-admin {
    max-width: 1280px;
}

.giforest-admin-intro {
    max-width: 960px;
    color: #667085;
    font-size: 14px;
    line-height: 1.6;
}

.giforest-admin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.giforest-admin-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 18px;
    background: #fff;
    border: 1px solid #d0d5dd;
    border-radius: 12px;
    text-decoration: none;
    color: #101828;
    box-shadow: 0 1px 3px rgba(16, 24, 40, 0.08);
}

.giforest-admin-card:hover {
    border-color: #12b76a;
}

.giforest-admin-card__title {
    font-size: 16px;
    font-weight: 600;
}

.giforest-admin-card__text {
    font-size: 13px;
    line-height: 1.55;
    color: #475467;
}

.giforest-admin-tabs {
    margin-top: 18px;
}

.giforest-admin-panel {
    margin-top: 18px;
    background: #fff;
    border: 1px solid #d0d5dd;
    border-radius: 12px;
    padding: 20px;
}

.giforest-admin-panel__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.giforest-admin-panel__head h2 {
    margin: 0 0 6px;
    font-size: 22px;
}

.giforest-admin-panel__head p {
    margin: 0;
    color: #475467;
    max-width: 760px;
}

.giforest-admin-badge {
    min-width: 52px;
    padding: 10px 14px;
    background: #101828;
    color: #fff;
    border-radius: 999px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
}

.giforest-admin-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.giforest-admin-table th {
    width: 220px;
}

.giforest-admin-dashboard {
    max-width: 1320px;
    padding-right: 20px;
}

.giforest-admin-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 0 18px;
}

.giforest-admin-topbar__left {
    display: flex;
    align-items: center;
}

.giforest-admin-topbar__menu {
    width: 40px;
    height: 40px;
    border: 1px solid #dadde3;
    border-radius: 8px;
    background: #fff;
    cursor: default;
}

.giforest-admin-topbar__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.giforest-admin-topbar__button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 36px;
    padding: 0 14px;
    border: 1px solid #d0d5dd;
    border-radius: 6px;
    background: #fff;
    color: #101828;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
}

.giforest-admin-topbar__button.is-success {
    border-color: #36a269;
    color: #167f4d;
}

.giforest-admin-topbar__button.is-danger {
    border-color: #e35d5b;
    color: #d92d20;
}

.giforest-admin-topbar__dropdown {
    position: relative;
}

.giforest-admin-topbar__dropdown summary {
    list-style: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 36px;
    padding: 0 14px;
    border: 1px solid #d0d5dd;
    border-radius: 6px;
    background: #fff;
    cursor: pointer;
    font-size: 13px;
}

.giforest-admin-topbar__dropdown summary::-webkit-details-marker {
    display: none;
}

.giforest-admin-topbar__menu-list {
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    min-width: 180px;
    background: #fff;
    border: 1px solid #d0d5dd;
    border-radius: 10px;
    box-shadow: 0 12px 24px rgba(16, 24, 40, 0.08);
    padding: 8px;
    z-index: 30;
}

.giforest-admin-topbar__menu-list a {
    display: block;
    padding: 9px 12px;
    color: #344054;
    text-decoration: none;
    border-radius: 8px;
}

.giforest-admin-topbar__menu-list a:hover {
    background: #f3f5f7;
}

.giforest-admin-topbar__user {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-left: 4px;
}

.giforest-admin-topbar__user img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
}

.giforest-admin-topbar__user strong,
.giforest-admin-topbar__user span {
    display: block;
}

.giforest-admin-topbar__user strong {
    color: #101828;
    font-size: 14px;
    line-height: 1.2;
}

.giforest-admin-topbar__user span {
    color: #667085;
    font-size: 12px;
}

.giforest-admin-dashboard__header {
    margin-bottom: 18px;
}

.giforest-admin-dashboard__header h1 {
    margin: 0 0 6px;
    font-size: 28px;
    font-weight: 600;
    color: #2a1420;
}

.giforest-admin-dashboard__header p {
    margin: 0;
    color: #8b7280;
    font-size: 13px;
}

.giforest-dashboard-section {
    margin-bottom: 14px;
    background: #fff;
    border: 1px solid #d8dde3;
    border-radius: 4px;
    overflow: hidden;
}

.giforest-dashboard-section__title {
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 600;
    color: #344054;
    border-bottom: 1px solid #e4e7ec;
    background: #fafafa;
}

.giforest-counter-grid {
    display: grid;
    gap: 12px;
    padding: 12px;
}

.giforest-counter-grid.columns-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.giforest-counter-card {
    min-height: 92px;
    padding: 16px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 14px;
    color: #fff;
}

.giforest-counter-card__icon {
    width: 54px;
    height: 54px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.16);
}

.giforest-counter-card__icon .dashicons {
    font-size: 28px;
    width: 28px;
    height: 28px;
}

.giforest-counter-card__meta p {
    margin: 0 0 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    opacity: 0.95;
}

.giforest-counter-card__meta h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2;
}

.tone-green { background: linear-gradient(135deg,#800020,#a52834); }
.tone-violet { background: linear-gradient(135deg,#5c0a1d,#951646); }
.tone-blue { background: linear-gradient(135deg,#5f1d2b,#8f1238); }
.tone-teal { background: linear-gradient(135deg,#73343a,#a52834); }
.tone-sky { background: linear-gradient(135deg,#6f122f,#8f173d); }
.tone-brown { background: linear-gradient(135deg,#6e1914,#7f1d28); }
.tone-orange { background: linear-gradient(135deg,#a00016,#800020); }
.tone-purple { background: linear-gradient(135deg,#8f1238,#951646); }
.tone-slate { background: linear-gradient(135deg,#73343a,#8f1238); }
.tone-clay { background: linear-gradient(135deg,#7f1d28,#a52834); }
.tone-lime { background: linear-gradient(135deg,#651833,#8f1738); }
.tone-maroon { background: linear-gradient(135deg,#722026,#a52834); }
.tone-charcoal { background: linear-gradient(135deg,#5f1d2b,#73343a); }
.tone-indigo { background: linear-gradient(135deg,#5c0a1d,#8f1238); }
.tone-magenta { background: linear-gradient(135deg,#951646,#c03b61); }
.tone-forest { background: linear-gradient(135deg,#550000,#800020); }
.tone-royal { background: linear-gradient(135deg,#7f1d28,#951646); }
.tone-gold { background: linear-gradient(135deg,#6e1914,#a52834); }
.tone-pink { background: linear-gradient(135deg,#8f1238,#951646); }

.giforest-dashboard-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 14px;
    margin-top: 14px;
}

.giforest-panel {
    background: #fff;
    border: 1px solid #d8dde3;
    border-radius: 4px;
    min-height: 100%;
}

.giforest-panel__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 16px 0;
}

.giforest-panel__head h3 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #344054;
}

.giforest-panel__head a,
.giforest-panel__ghost {
    color: #98a2b3;
    text-decoration: none;
}

.giforest-panel__body {
    padding: 12px 16px 16px;
}

.giforest-chart {
    width: 100%;
    overflow: hidden;
}

.giforest-chart svg {
    width: 100%;
    height: auto;
    display: block;
}

.giforest-list {
    display: flex;
    flex-direction: column;
}

.giforest-list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #eef2f6;
}

.giforest-list-item:last-child {
    border-bottom: 0;
}

.giforest-list-item__media {
    width: 42px;
    height: 42px;
    border-radius: 4px;
    overflow: hidden;
    flex: 0 0 42px;
    background: #f3f4f6;
}

.giforest-list-item__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.giforest-list-item__content {
    flex: 1;
    min-width: 0;
}

.giforest-list-item__content a,
.giforest-list-item__content span {
    display: block;
}

.giforest-list-item__content a {
    color: #1d2939;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.35;
    margin-bottom: 4px;
}

.giforest-list-item__content span {
    color: #98a2b3;
    font-size: 12px;
}

.giforest-icon-button {
    width: 28px;
    height: 28px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #8f173d;
    color: #fff;
    text-decoration: none;
}

.giforest-map svg {
    width: 100%;
    height: auto;
    display: block;
}

.giforest-map__legend {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    color: #667085;
    font-size: 12px;
}

.giforest-map__legend div {
    height: 8px;
    flex: 0 0 90px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(143, 23, 61, 0.18), rgba(143, 23, 61, 0.92));
}

.giforest-country-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.giforest-country-list__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid #eef2f6;
}

.giforest-country-list__item:last-child {
    border-bottom: 0;
}

.giforest-country-list__name {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #344054;
    font-size: 13px;
}

.giforest-country-list strong {
    color: #8f173d;
    font-size: 13px;
}

.giforest-flag {
    font-size: 22px;
    line-height: 1;
}

.giforest-empty {
    margin: 0;
    color: #98a2b3;
    font-size: 13px;
}

.giforest-admin-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 4px 10px;
    color: #98a2b3;
    font-size: 12px;
}

@media (max-width: 1200px) {
    .giforest-counter-grid.columns-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (max-width: 782px) {
    .giforest-admin-topbar {
        align-items: flex-start;
    }

    .giforest-admin-topbar__actions {
        justify-content: flex-start;
    }

    .giforest-counter-grid.columns-4 {
        grid-template-columns: 1fr;
    }

    .giforest-admin-dashboard__header h1 {
        font-size: 30px;
    }

    .giforest-admin-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}

.giforest-admin-members {
    max-width: 1320px;
}

.giforest-wireframe-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
}

.giforest-wireframe-header h1 {
    margin: 0 0 6px;
    font-size: 24px;
    font-weight: 600;
    color: #1f2937;
}

.giforest-wireframe-header p {
    margin: 0;
    color: #98a2b3;
    font-size: 13px;
}

.giforest-add-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 2px;
    background: #59b95b;
    color: #fff;
    text-decoration: none;
}


.giforest-counter-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.giforest-counter-card__icon .dashicons {
    display: none;
}

.giforest-stat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: #ffffff;
}

.giforest-stat-icon svg {
    width: 24px;
    height: 24px;
    display: block;
    fill: currentColor;
}

.giforest-member-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 18px;
}

.giforest-member-panel {
    background: #fff;
    border: 1px solid #d8dde3;
    border-radius: 4px;
    overflow: hidden;
}

.giforest-member-search {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 14px;
    border-bottom: 1px solid #e5e7eb;
}

.giforest-member-search--stacked {
    display: block;
}

.giforest-member-filter-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr)) 92px 92px;
    gap: 12px;
    margin-top: 12px;
}

.giforest-member-input,
.giforest-member-select {
    width: 100%;
    height: 42px;
    border: 1px solid #cfd5dd;
    border-radius: 2px;
    background: #fff;
    padding: 0 14px;
    font-size: 14px;
    color: #344054;
}

.giforest-member-input--grow {
    flex: 1;
}

.giforest-member-input--full {
    width: 100%;
}

.giforest-search-button,
.giforest-reset-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    border-radius: 2px;
    text-decoration: none;
    font-size: 14px;
}

.giforest-search-button {
    border: 1px solid #59b95b;
    background: #59b95b;
    color: #fff;
}

.giforest-reset-button {
    border: 1px solid #cfd5dd;
    background: #fff;
    color: #1f2937;
}

.giforest-member-table {
    width: 100%;
    border-collapse: collapse;
}

.giforest-member-table th,
.giforest-member-table td {
    padding: 14px 16px;
    border-top: 1px solid #e5e7eb;
    font-size: 14px;
    color: #1f2937;
    vertical-align: middle;
}

.giforest-member-table thead th {
    background: #fafafa;
    font-weight: 600;
    text-align: left;
}

.giforest-member-table td.is-center,
.giforest-member-table th.is-center {
    text-align: center;
}

.giforest-member-table td.is-end {
    text-align: right;
}

.giforest-member-identity {
    display: flex;
    align-items: center;
    gap: 12px;
}

.giforest-member-identity__avatar img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: block;
}

.giforest-member-identity__name {
    display: inline-block;
    margin-bottom: 3px;
    color: #101828;
    text-decoration: none;
    font-weight: 500;
}

.giforest-member-identity span {
    display: block;
    color: #667085;
    font-size: 13px;
}

.giforest-status-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    padding: 4px 10px;
    border-radius: 4px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
}

.giforest-category-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.giforest-category-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 4px;
    background: #59b95b;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
}

.giforest-row-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 4px;
    color: #667085;
    text-decoration: none;
}

.giforest-row-action:hover {
    background: #f3f4f6;
}

.giforest-empty-state {
    display: flex;
    min-height: 390px;
    padding: 40px 20px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.giforest-empty-state__art {
    position: relative;
    width: 110px;
    height: 110px;
    margin-bottom: 18px;
}

.giforest-empty-state__art span {
    position: absolute;
    width: 52px;
    height: 72px;
    border: 1px solid #cfd5dd;
    border-radius: 4px;
    background: #f4f4f5;
}

.giforest-empty-state__art span::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 10px;
    width: 32px;
    height: 8px;
    border-radius: 2px;
    background: #59b95b;
}

.giforest-empty-state__art span:first-child {
    left: 18px;
    top: 18px;
    transform: rotate(-16deg);
}

.giforest-empty-state__art span:last-child {
    right: 18px;
    top: 24px;
}

.giforest-empty-state h3 {
    margin: 0 0 8px;
    font-size: 22px;
    color: #344054;
}

.giforest-empty-state p {
    margin: 0;
    max-width: 360px;
    color: #667085;
    line-height: 1.6;
}

.giforest-counter-card.tone-red {
    background: #e23948;
}

@media (max-width: 1100px) {
    
.giforest-counter-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.giforest-counter-card__icon .dashicons {
    display: none;
}

.giforest-stat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: #ffffff;
}

.giforest-stat-icon svg {
    width: 24px;
    height: 24px;
    display: block;
    fill: currentColor;
}

.giforest-member-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .giforest-member-filter-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 782px) {
    .giforest-wireframe-header,
    .giforest-member-search {
        flex-direction: column;
        align-items: stretch;
    }

    .giforest-member-stats,
    .giforest-member-filter-row {
        grid-template-columns: 1fr;
    }

    .giforest-member-table-wrap {
        overflow-x: auto;
    }

    .giforest-member-table {
        min-width: 920px;
    }
}

.giforest-member-subnav{display:flex;align-items:center;gap:10px;flex-wrap:wrap}.giforest-member-subnav__link{display:inline-flex;align-items:center;justify-content:center;height:36px;padding:0 16px;border:1px solid #d9e0e7;border-radius:8px;background:#fff;color:#2b3441;text-decoration:none;font-weight:600}.giforest-member-subnav__link.is-active{background:#56b657;border-color:#56b657;color:#fff}.giforest-wireframe-header{display:flex;align-items:flex-start;justify-content:space-between;gap:16px}.giforest-wireframe-header>div:first-child{flex:1}

.giforest-plan-name {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.giforest-drag-handle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #667085;
}

.giforest-subscription-id {
    color: #46b35f;
    font-weight: 700;
}

.giforest-subscription-user {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.giforest-premium-settings-panel {
    padding-top: 26px;
}

.giforest-premium-settings-form {
    display: grid;
    gap: 24px;
}

.giforest-premium-settings-actions {
    display: flex;
    justify-content: flex-end;
}

.giforest-search-button--label {
    width: auto;
    min-width: 92px;
    padding: 0 18px;
}

.giforest-premium-setting-row {
    display: grid;
    gap: 10px;
}

.giforest-premium-label {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
}

.giforest-switch {
    display: inline-flex;
    align-items: center;
}

.giforest-switch input {
    display: none;
}

.giforest-switch__track {
    position: relative;
    display: inline-flex;
    align-items: center;
    width: 290px;
    height: 36px;
    border-radius: 4px;
    background: #d1d5db;
    overflow: hidden;
}

.giforest-switch__label {
    position: relative;
    z-index: 2;
    width: 50%;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
}

.giforest-switch__label--on {
    color: #ffffff;
}

.giforest-switch__label--off {
    color: #4b5563;
}

.giforest-switch__handle {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: #27b62d;
    transition: left .2s ease, background .2s ease;
}

.giforest-switch input:not(:checked) + .giforest-switch__track .giforest-switch__handle {
    left: 50%;
    background: #111827;
}

.giforest-switch input:not(:checked) + .giforest-switch__track .giforest-switch__label--on {
    color: #4b5563;
}

.giforest-switch input:not(:checked) + .giforest-switch__track .giforest-switch__label--off {
    color: #ffffff;
}


.giforest-square-button{display:inline-flex;align-items:center;justify-content:center;width:48px;height:48px;border-radius:4px;background:#59b65a;color:#fff;text-decoration:none}.giforest-square-button:hover{color:#fff;opacity:.92}.giforest-item-categories{display:flex;flex-direction:column;gap:2px;color:#59b65a;font-weight:500}.giforest-item-categories span{display:block}.giforest-plan-name{display:flex;align-items:center;gap:8px}.giforest-drag-handle{color:#586075}.giforest-member-table td.is-end,.giforest-member-table th.is-end{text-align:right}.giforest-empty{color:#9aa4b2}


#adminmenu .toplevel_page_giforest-dashboard .wp-submenu li.giforest-menu-group {
    position: relative;
}
#adminmenu .toplevel_page_giforest-dashboard .wp-submenu li.giforest-menu-group > a {
    font-weight: 600;
    color: #dfe7ef;
    padding-left: 12px;
    padding-right: 34px;
    position: relative;
    cursor: default;
}
#adminmenu .toplevel_page_giforest-dashboard .wp-submenu li.giforest-menu-group > a:hover {
    color: #ffffff;
}
#adminmenu .toplevel_page_giforest-dashboard .wp-submenu li.giforest-menu-group > a:focus {
    box-shadow: none;
}
#adminmenu .toplevel_page_giforest-dashboard .wp-submenu li.giforest-menu-group .giforest-menu-toggle {
    position: absolute;
    right: 8px;
    top: 50%;
    width: 22px;
    height: 22px;
    margin-top: -11px;
    border: 0;
    padding: 0;
    background: transparent;
    cursor: pointer;
}
#adminmenu .toplevel_page_giforest-dashboard .wp-submenu li.giforest-menu-group .giforest-menu-toggle:before {
    content: '';
    position: absolute;
    left: 6px;
    top: 6px;
    width: 8px;
    height: 8px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    color: #dfe7ef;
    transform: rotate(-45deg);
    transition: transform .15s ease;
}
#adminmenu .toplevel_page_giforest-dashboard .wp-submenu li.giforest-menu-group .giforest-menu-toggle:hover:before {
    color: #ffffff;
}
#adminmenu .toplevel_page_giforest-dashboard .wp-submenu li.giforest-menu-group .giforest-menu-toggle[aria-expanded='true']:before {
    transform: rotate(45deg);
    top: 4px;
}
#adminmenu .toplevel_page_giforest-dashboard .wp-submenu li.giforest-menu-child {
    position: relative;
}
#adminmenu .toplevel_page_giforest-dashboard .wp-submenu li.giforest-menu-child > a {
    padding-left: 44px !important;
    color: #c3ced9;
    font-size: 13px;
    position: relative;
}
#adminmenu .toplevel_page_giforest-dashboard .wp-submenu li.giforest-menu-child > a:before {
    content: '';
    position: absolute;
    left: 22px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(255,255,255,.18);
}
#adminmenu .toplevel_page_giforest-dashboard .wp-submenu li.giforest-menu-child > a:after {
    content: '';
    position: absolute;
    left: 22px;
    top: 50%;
    width: 12px;
    height: 1px;
    background: rgba(255,255,255,.18);
}
#adminmenu .toplevel_page_giforest-dashboard .wp-submenu li.giforest-menu-child.is-first-child > a:before {
    top: 50%;
}
#adminmenu .toplevel_page_giforest-dashboard .wp-submenu li.giforest-menu-child.is-last-child > a:before {
    bottom: 50%;
}
#adminmenu .toplevel_page_giforest-dashboard .wp-submenu li.giforest-menu-child > a:hover {
    color: #ffffff;
}
#adminmenu .toplevel_page_giforest-dashboard .wp-submenu li.giforest-menu-child.current > a {
    color: #ffffff;
}

.giforest-record-link {
    color: #1f2937;
    text-decoration: none;
}

.giforest-record-link:hover {
    color: #101828;
}

.giforest-positive {
    color: #138a63 !important;
    font-weight: 700;
}

.giforest-negative {
    color: #df3a46 !important;
    font-weight: 700;
}

.giforest-records-stats--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.giforest-form-panel{padding:22px}.giforest-panel-title{font-size:18px;font-weight:600;margin:0 0 16px;padding-bottom:12px;border-bottom:1px solid #e5e7eb}.giforest-form-grid{display:grid;gap:18px}.giforest-form-grid.cols-1{grid-template-columns:1fr}.giforest-form-grid.cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.giforest-form-grid.cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.giforest-form-grid.cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}.giforest-form-row{display:flex;flex-direction:column;gap:8px}.giforest-form-row.cols-2{grid-column:1/-1}.giforest-form-row label{font-weight:600;color:#101828}.giforest-form-row input,.giforest-form-row select,.giforest-tags-field{border:1px solid #d0d5dd;border-radius:2px;min-height:44px;padding:10px 12px;background:#fff}.giforest-input-group{display:flex;align-items:center;border:1px solid #d0d5dd;border-radius:2px;background:#fff}.giforest-input-group span{padding:0 12px;color:#344054}.giforest-input-group input{border:0;flex:1;min-height:42px;padding:10px 12px}.giforest-toggle-block{height:38px;border-radius:2px;color:#fff;display:flex;align-items:center;justify-content:center;font-weight:600;position:relative}.giforest-toggle-block i{position:absolute;right:6px;top:5px;width:10px;height:28px;background:#111827;border-radius:1px}.giforest-toggle-block.is-positive{background:#20bf27}.giforest-toggle-block.is-negative{background:#e30b11}.giforest-alert{background:#f7e7b8;border:1px solid #ead28c;border-radius:4px;padding:14px 16px;margin-bottom:18px;color:#5b4a18}.giforest-upload-box{border:1px solid #d0d5dd;border-radius:4px;padding:18px;margin-bottom:18px;background:#fff}.giforest-upload-preview{width:90px;height:90px;background:#eef2f6;border:1px solid #d0d5dd;border-radius:4px;margin:10px 0}.giforest-upload-preview.large{width:100%;height:180px}.giforest-watermark-preview{min-height:160px;border:1px dashed #cfd4dc;display:flex;align-items:center;justify-content:center;font-size:48px;color:#8f949b;margin-bottom:20px}.giforest-tag{display:inline-block;background:#59b65a;color:#fff;font-size:12px;padding:4px 8px;border-radius:4px;margin-right:6px}.giforest-tags-field input{border:0;min-height:30px;padding:0 8px;width:220px}.giforest-themes-grid{display:grid;grid-template-columns:360px;gap:24px}.giforest-theme-card{background:#fff;border:1px solid #e5e7eb;border-radius:6px;overflow:hidden}.giforest-theme-card__preview{height:250px;background:#0d2c25;position:relative}.giforest-theme-card__badge{position:absolute;right:16px;top:16px;background:#20bf27;color:#fff;padding:6px 12px;border-radius:4px;font-weight:600}.giforest-theme-card__mock{position:absolute;left:24px;right:24px;top:24px;bottom:24px;background:linear-gradient(180deg,#173d34,#0e2520)}.giforest-theme-card__body{padding:20px}.giforest-theme-card__actions{display:flex;align-items:center;justify-content:space-between;margin-top:18px}.giforest-tools-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px}.giforest-tool-card{background:#fff;border:1px solid #e5e7eb;border-radius:8px;padding:26px}.giforest-tool-card h3{margin:0 0 10px}.giforest-tool-card p{margin:0 0 18px;color:#475467}.giforest-tool-card.tone-green{border-left:4px solid #59b65a}.giforest-tool-card.tone-red{border-left:4px solid #df3a46}.giforest-tool-card.tone-gold{border-left:4px solid #f5b301}.giforest-tool-card.tone-blue{border-left:4px solid #30a3f0}.giforest-tool-card.tone-slate{border-left:4px solid #667085}.giforest-pagination-note{padding:14px 0 0;color:#667085;text-align:right}.giforest-add-button__label{margin-left:6px}.giforest-row-action{display:inline-flex;align-items:center;justify-content:center;min-width:32px;height:32px;border:1px solid #d0d5dd;border-radius:4px;background:#fff;color:#344054;text-decoration:none}.giforest-member-subnav{display:flex;flex-wrap:wrap;gap:8px;align-items:center;max-width:900px}.giforest-member-subnav__link{font-size:13px}

.giforest-addon-row{display:flex;justify-content:space-between;align-items:center;padding:16px 18px;border-bottom:1px solid #e5e7eb}.giforest-addon-row__left{display:flex;align-items:center;gap:14px}.giforest-addon-icon{width:52px;height:52px;border-radius:12px;background:#111827;display:inline-block}.giforest-addon-row__right{display:flex;align-items:center;gap:12px}.giforest-system-head{display:flex;align-items:center;gap:10px;color:#fff;padding:12px 14px;font-size:22px}.giforest-system-list{padding:0}.giforest-system-list__item{display:flex;align-items:center;gap:10px;padding:12px 14px;border-top:1px solid #e5e7eb}.giforest-info-box{background:#cfe0ff;padding:16px;border-radius:6px;color:#1f2937}.giforest-info-box ul{margin:8px 0 14px 24px}.giforest-danger-wide{display:block;width:100%;text-align:center;margin:16px 0 0;background:#ef4444;border-color:#ef4444;color:#fff}.giforest-wide-button{display:block;width:100%;text-align:center}.giforest-avatar-row{display:flex;align-items:center;gap:12px}.giforest-upload-preview.wide{height:74px}.giforest-addon-row .giforest-toggle-block{min-width:120px}.giforest-system-head.tone-green{background:#4caf50}.giforest-system-head.tone-charcoal{background:#374151}
.giforest-wireframe-header--category{margin-bottom:18px}.giforest-category-header-actions{display:flex;align-items:center;gap:12px}.giforest-category-header-actions .giforest-reset-button,.giforest-category-header-actions .giforest-add-button{height:48px;padding:0 22px;border-radius:12px;font-weight:700}.giforest-category-header-actions .giforest-add-button{background:#8f173d;border-color:#8f173d}.giforest-category-header-actions .giforest-add-button:hover{background:#761332;border-color:#761332}.giforest-sortable-panel .giforest-member-table tbody tr.is-dragging{opacity:.55}.giforest-drag-button{width:36px;height:36px;border:1px solid #d8dde6;border-radius:10px;background:#fff;display:inline-flex;align-items:center;justify-content:center;cursor:grab}.giforest-drag-button:hover{border-color:#8f173d;color:#8f173d}.giforest-action-menu{position:relative;display:inline-flex}.giforest-action-menu__toggle{width:36px;height:36px;border:1px solid #d8dde6;border-radius:10px;background:#fff;display:inline-flex;align-items:center;justify-content:center;color:#475467;cursor:pointer}.giforest-action-menu__toggle:hover{border-color:#8f173d;color:#8f173d}.giforest-action-menu__list{position:absolute;top:42px;right:0;min-width:140px;background:#fff;border:1px solid #e4e7ec;border-radius:12px;box-shadow:0 14px 36px rgba(16,24,40,.16);padding:8px;display:none;z-index:30}.giforest-action-menu.is-open .giforest-action-menu__list{display:block}.giforest-action-menu__list a{display:flex;align-items:center;height:36px;padding:0 12px;border-radius:8px;color:#101828;text-decoration:none;font-weight:600}.giforest-action-menu__list a:hover{background:#f8e6ec;color:#8f173d}.giforest-toggle{position:relative;display:grid;grid-template-columns:1fr 1fr;align-items:center;width:220px;height:46px;padding:4px;border-radius:14px;background:#f3d9e1;border:1px solid #e6bac9;overflow:hidden}.giforest-toggle__option{position:relative;z-index:2;border:0;background:transparent;color:#8f173d;font-weight:700;font-size:15px;height:100%;border-radius:10px;cursor:pointer}.giforest-toggle__option.is-active{color:#fff}.giforest-toggle__thumb{position:absolute;top:4px;left:4px;width:calc(50% - 4px);height:calc(100% - 8px);border-radius:10px;background:#8f173d;transition:transform .18s ease}.giforest-toggle[data-value="no"] .giforest-toggle__thumb,.giforest-toggle[data-value="disabled"] .giforest-toggle__thumb,.giforest-toggle[data-value="disable"] .giforest-toggle__thumb{transform:translateX(100%)}.giforest-options-builder{display:grid;gap:12px}.giforest-option-row{display:grid;grid-template-columns:minmax(0,1fr) 54px;gap:12px}.giforest-option-row input{width:100%}.giforest-option-remove,.giforest-option-add{height:46px;border-radius:12px;border:1px solid #d8dde6;background:#fff;color:#8f173d;font-size:28px;line-height:1;cursor:pointer}.giforest-option-remove:hover,.giforest-option-add:hover{border-color:#8f173d;background:#fff5f8}.giforest-option-add{justify-self:end;width:54px;background:#8f173d;color:#fff;border-color:#8f173d}.giforest-option-add:hover{background:#761332}.giforest-form-panel .giforest-toggle{margin-top:4px}


.giforest-admin-items-cards{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px;margin-bottom:18px}.giforest-admin-items-dashboard .giforest-status-card{display:flex;align-items:center;gap:16px;padding:26px 18px;border-radius:10px;color:#fff;min-height:110px}.giforest-admin-items-dashboard .giforest-status-card__icon{width:68px;height:68px;border-radius:12px;background:rgba(255,255,255,.16);display:flex;align-items:center;justify-content:center;font-size:28px}.giforest-admin-items-dashboard .giforest-status-card strong{display:block;font-size:14px;letter-spacing:.12em;text-transform:uppercase;margin-bottom:10px}.giforest-admin-items-dashboard .giforest-status-card span{display:block;font-size:22px;font-weight:700}.giforest-admin-items-dashboard .giforest-status-card--orange{background:#ff7c14}.giforest-admin-items-dashboard .giforest-status-card--purple{background:#6200ee}.giforest-admin-items-dashboard .giforest-status-card--blue{background:#2287e8}.giforest-admin-items-dashboard .giforest-status-card--green{background:#04c700}.giforest-admin-items-dashboard .giforest-status-card--red{background:#e90000}.giforest-admin-items-dashboard .giforest-status-card--rose{background:#e8344d}.giforest-member-search--inline{display:grid;grid-template-columns:minmax(0,1fr) 180px 180px 72px 82px;gap:14px;align-items:center;padding:14px;border-bottom:1px solid #e5e7eb}.giforest-member-input--search{min-width:0}.giforest-items-dashboard-panel .giforest-empty-state{border-top:1px solid #eceff3;min-height:520px}@media (max-width:1200px){.giforest-admin-items-cards{grid-template-columns:repeat(2,minmax(0,1fr))}.giforest-member-search--inline{grid-template-columns:1fr 1fr 1fr 72px 82px}}@media (max-width:900px){.giforest-admin-items-cards,.giforest-member-search--inline{grid-template-columns:1fr}}

.giforest-admin-items-dashboard .giforest-admin-items-cards{display:grid!important;grid-template-columns:repeat(3,minmax(0,1fr))!important;gap:14px!important;margin:18px 0 16px!important}
.giforest-admin-items-dashboard .giforest-status-card{display:flex!important;align-items:center!important;gap:18px!important;min-height:126px!important;padding:24px 18px!important;border-radius:10px!important;color:#fff!important}
.giforest-admin-items-dashboard .giforest-status-card__icon{display:flex!important;align-items:center!important;justify-content:center!important;width:64px!important;height:64px!important;border-radius:12px!important;background:rgba(255,255,255,.18)!important;font-size:28px!important;flex:0 0 64px!important}
.giforest-admin-items-dashboard .giforest-status-card strong{display:block!important;margin:0 0 8px!important;color:#fff!important;font-size:13px!important;letter-spacing:.14em!important;text-transform:uppercase!important}
.giforest-admin-items-dashboard .giforest-status-card span{display:block!important;color:#fff!important;font-size:22px!important;font-weight:700!important}
.giforest-admin-items-dashboard .giforest-status-card--orange{background:#b42355!important}.giforest-admin-items-dashboard .giforest-status-card--purple{background:#8f173d!important}.giforest-admin-items-dashboard .giforest-status-card--blue{background:#a11d48!important}.giforest-admin-items-dashboard .giforest-status-card--green{background:#6f1230!important}.giforest-admin-items-dashboard .giforest-status-card--red{background:#cf3659!important}.giforest-admin-items-dashboard .giforest-status-card--rose{background:#d45472!important}
.giforest-admin-items-dashboard .giforest-member-search--inline{display:grid!important;grid-template-columns:minmax(0,1fr) 170px 170px 70px 82px!important;gap:12px!important;align-items:center!important;padding:14px!important}
.giforest-admin-topbar__button.is-success,.giforest-member-subnav__link.is-active,.giforest-search-button,.giforest-wireframe-create,.giforest-create-button{background:#8f173d!important;border-color:#8f173d!important;color:#fff!important}
.giforest-admin-topbar__button.is-danger{border-color:#b42355!important;color:#8f173d!important}
@media (max-width:1100px){.giforest-admin-items-dashboard .giforest-admin-items-cards{grid-template-columns:repeat(2,minmax(0,1fr))!important}.giforest-admin-items-dashboard .giforest-member-search--inline{grid-template-columns:1fr 1fr 1fr 70px 82px!important}}
@media (max-width:820px){.giforest-admin-items-dashboard .giforest-admin-items-cards,.giforest-admin-items-dashboard .giforest-member-search--inline{grid-template-columns:1fr!important}}

#toplevel_page_giforest .wp-submenu a{white-space:nowrap!important;word-break:normal!important;overflow-wrap:normal!important}
#toplevel_page_giforest .wp-submenu{width:220px!important}
#toplevel_page_giforest .wp-submenu li{min-width:220px!important}
.giforest-admin-topbar__button.is-success,.giforest-member-subnav__link.is-active,.giforest-search-button,.giforest-member-status-card__action,.giforest-operation-plus,.giforest-floating-plus{background:#8f173d!important;border-color:#8f173d!important;color:#fff!important}
.giforest-admin-topbar__button.is-danger{border-color:#b42355!important;color:#b42355!important}


.giforest-author-member-shell{display:grid;gap:18px}
.giforest-author-member-toolbar{display:flex;justify-content:flex-end;align-items:center}
.giforest-member-stats--authors{grid-template-columns:repeat(4,minmax(0,1fr))}
.giforest-author-member-panel h2{margin:0 0 16px;font-size:24px;font-weight:600;color:#23131a}
.giforest-author-seller-list .giforest-media-row__thumb{overflow:hidden;background:#f3e6ea}
.giforest-author-seller-list .giforest-media-row__thumb img{width:100%;height:100%;object-fit:cover;display:block}
@media (max-width:1100px){.giforest-member-stats--authors{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media (max-width:700px){.giforest-member-stats--authors{grid-template-columns:1fr}}


.giforest-workspace-back,
.giforest-workspace-save {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 84px;
    height: 42px;
    padding: 0 16px;
    border-radius: 6px;
    border: 1px solid #d0d5dd;
    background: #fff;
    color: #344054;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.giforest-workspace-save {
    border-color: #9f1239;
    background: #9f1239;
    color: #fff;
}

.giforest-member-create {
    max-width: 1120px;
}

.giforest-member-create__panel {
    background: #fff;
    border: 1px solid #d8dde3;
    border-radius: 10px;
    padding: 24px;
}

.giforest-member-create__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.giforest-member-create label {
    display: block;
    margin-bottom: 18px;
}

.giforest-member-create label > span {
    display: block;
    margin-bottom: 10px;
    color: #1f2937;
    font-size: 15px;
    font-weight: 600;
}

.giforest-member-create input,
.giforest-member-create select {
    width: 100%;
    min-height: 48px;
    border: 1px solid #cfd6de;
    border-radius: 4px;
    background: #fff;
    color: #1f2937;
    padding: 0 14px;
    font-size: 15px;
}

.giforest-member-create select[multiple] {
    min-height: 160px;
    padding: 10px 14px;
}

.giforest-member-create__password {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 132px;
}

.giforest-member-create__password input {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.giforest-member-generate-password {
    border: 1px solid #cfd6de;
    border-left: 0;
    border-radius: 0 4px 4px 0;
    background: #fff;
    color: #1f2937;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}

.giforest-form-notice {
    margin: 0 0 16px;
    padding: 14px 16px;
    border-radius: 8px;
    font-size: 14px;
}

.giforest-form-notice--error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

@media (max-width: 860px) {
    .giforest-member-create__grid,
    .giforest-member-create__password {
        grid-template-columns: 1fr;
    }

    .giforest-member-create__password input {
        border-radius: 4px;
    }

    .giforest-member-generate-password {
        border-left: 1px solid #cfd6de;
        border-radius: 4px;
        min-height: 44px;
        margin-top: 10px;
    }
}


.giforest-workspace-header__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.giforest-workspace-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 8px;
    border: 1px solid #c9ced6;
    background: #fff;
    color: #6c1d35;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.giforest-member-import .giforest-member-create__panel {
    display: grid;
    gap: 18px;
}

.giforest-import-intro h2 {
    margin: 0 0 8px;
    font-size: 22px;
    font-weight: 600;
    color: #2a1420;
}

.giforest-import-intro p,
.giforest-import-note {
    margin: 0;
    color: #6b7280;
    font-size: 14px;
    line-height: 1.6;
}

.giforest-import-columns {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 16px 18px;
    background: #faf8f9;
}

.giforest-import-columns strong {
    display: block;
    margin-bottom: 10px;
    color: #6c1d35;
    font-size: 14px;
    font-weight: 700;
}

.giforest-import-columns ul {
    margin: 0;
    padding-left: 18px;
    color: #374151;
}

.giforest-import-columns li {
    margin: 0 0 6px;
}

.giforest-form-notice--success {
    border-color: #c8e6c9;
    background: #edf7ee;
    color: #1f5d2f;
}
.giforest-member-bulk-bar{display:flex;align-items:center;gap:12px;padding:14px;border-top:1px solid #eceff3;border-bottom:1px solid #eceff3;background:#fff7fa}.giforest-member-bulk-bar select{min-width:180px;height:42px;border:1px solid #d8dde6;border-radius:10px;padding:0 12px;background:#fff}.giforest-member-bulk-bar__select-all{display:inline-flex;align-items:center;gap:8px;font-weight:600;color:#344054}.giforest-member-table th.is-checkbox,.giforest-member-table td.is-checkbox{width:42px;text-align:center}.giforest-row-checkbox,.giforest-check-all{width:16px;height:16px;accent-color:#8f173d}.giforest-action-menu__list form{margin:0}.giforest-action-menu__submit{display:flex;align-items:center;width:100%;height:36px;padding:0 12px;border:0;background:transparent;border-radius:8px;color:#101828;font-weight:600;cursor:pointer}.giforest-action-menu__submit:hover{background:#f8e6ec;color:#8f173d}.giforest-member-panel .giforest-form-notice{margin:14px}.giforest-action-menu__toggle{width:32px;height:32px;border-radius:8px}.giforest-member-table thead th:last-child,.giforest-member-table tbody td:last-child{width:56px}.giforest-member-search{margin-bottom:0}@media (max-width:900px){.giforest-member-bulk-bar{flex-wrap:wrap}.giforest-member-bulk-bar select{flex:1 1 180px}}


.giforest-member-select,.giforest-member-select option{color:#344054}
.giforest-action-menu{position:relative;overflow:visible}
.giforest-action-menu__toggle{width:32px;height:32px;border:1px solid #d0d5dd;border-radius:8px;background:#fff;color:#111827;display:inline-flex;align-items:center;justify-content:center}
.giforest-action-menu__toggle:hover,.giforest-action-menu__toggle:focus{border-color:#111827;color:#111827;background:#fff}
.giforest-action-menu__dots{font-size:20px;line-height:1;color:#111827;font-weight:700;display:inline-flex;align-items:center;justify-content:center;width:100%}
.giforest-action-menu__list{min-width:190px;z-index:999;overflow:visible}
.giforest-action-menu.is-open-up .giforest-action-menu__list{top:auto;bottom:42px}
.giforest-action-menu__list a,.giforest-action-menu__submit{color:#111827;background:#fff;text-align:left;justify-content:flex-start}
.giforest-action-menu__list a span,.giforest-action-menu__submit span{color:inherit}
.giforest-action-menu__submit.is-danger,.giforest-action-menu__list a.is-danger{color:#dc2626}
.giforest-member-table-wrap,.giforest-member-panel{overflow:visible}
.giforest-quick-actions{display:flex;flex-wrap:wrap;gap:12px}.giforest-quick-actions form{margin:0}.giforest-quick-action{display:inline-flex;align-items:center;justify-content:center;height:44px;padding:0 18px;border:1px solid #d0d5dd;border-radius:4px;background:#fff;color:#111827;text-decoration:none;font-weight:600}
.giforest-member-details-view__stats{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px;margin-bottom:18px}
.giforest-member-details-layout{display:grid;grid-template-columns:280px minmax(0,1fr);gap:18px}.giforest-member-details-nav{display:grid;gap:10px}.giforest-member-details-nav__item{padding:16px 18px;border:1px solid #d8dde6;border-radius:6px;background:#fff;font-weight:600;color:#111827}.giforest-member-details-nav__item.is-active{background:#4caf50;border-color:#4caf50;color:#fff}
.giforest-public-profile{display:grid;gap:18px}.giforest-public-profile__hero{padding:18px;border:1px solid #e5e7eb;border-radius:10px;background:#fff}.giforest-public-profile__summary{display:flex;align-items:center;gap:18px}.giforest-public-profile__avatar{width:96px;height:96px;border-radius:12px;object-fit:cover;background:#d9dde3}.giforest-profile-follow{display:inline-flex;align-items:center;justify-content:center;height:36px;padding:0 18px;border:1px solid #4caf50;border-radius:8px;color:#4caf50;text-decoration:none;font-weight:600}.giforest-public-profile__tabs{display:flex;gap:24px;margin-top:16px;color:#59b65a;font-weight:500}.giforest-public-profile__tabs .is-active{padding:10px 14px;border:1px solid #d8dde6;border-bottom:0;border-radius:8px 8px 0 0;color:#111827}.giforest-public-profile__body{display:grid;grid-template-columns:minmax(0,1fr) 320px;gap:18px}.giforest-public-profile__cover{min-height:320px;border:1px solid #e5e7eb;border-radius:10px;background:#f3f4f6;display:flex;align-items:center;justify-content:center;overflow:hidden}.giforest-public-profile__cover img{max-width:240px;opacity:.35}.giforest-public-profile__badges{border:1px solid #e5e7eb;border-radius:10px;background:#fff;padding:20px}.giforest-public-profile__badge-dot{width:48px;height:48px;border-radius:50%;background:linear-gradient(180deg,#1aa157,#0e74c4)}
.giforest-cancel-subscription{display:inline-flex;align-items:center;justify-content:center;width:100%;height:46px;border:1px solid #ef4444;border-radius:4px;background:#fff;color:#ef4444;font-weight:600;margin-top:18px}
@media (max-width: 980px){.giforest-member-details-view__stats,.giforest-member-details-layout,.giforest-public-profile__body{grid-template-columns:1fr}}
.giforest-member-detail-icon{display:inline-flex;align-items:center;justify-content:center;width:18px;height:18px;flex:0 0 18px}
.giforest-member-detail-icon svg{width:18px;height:18px;stroke:currentColor;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.giforest-quick-action{gap:10px}
.giforest-member-details-nav__item{display:flex;align-items:center;gap:10px;text-decoration:none}.giforest-member-details-nav__item strong{margin-left:auto;font-size:24px;line-height:1;font-weight:400}
.giforest-member-details-nav__item.is-active strong{color:inherit}
.giforest-counter-card{position:relative}.giforest-counter-card__button{margin-left:auto;display:inline-flex;align-items:center;justify-content:center;padding:0 16px;height:38px;border:1px solid rgba(255,255,255,.75);border-radius:2px;color:#fff;text-decoration:none;font-weight:700}
.giforest-counter-card__icon .giforest-member-detail-icon,.giforest-counter-card__icon .giforest-member-detail-icon svg{width:28px;height:28px}
.giforest-member-balance-card{display:flex;align-items:center;justify-content:space-between;margin-bottom:18px;padding:24px;border-radius:10px;background:#8bc34a;color:#fff}.giforest-member-balance-card span{display:block;font-size:14px;text-transform:uppercase;letter-spacing:.08em}.giforest-member-balance-card strong{display:block;font-size:48px;line-height:1.1}
.giforest-profile-upload{display:grid;gap:10px;padding:18px;border:1px solid #d8dde6;border-radius:8px;background:#fff}.giforest-profile-upload img{width:140px;height:140px;object-fit:cover;border-radius:6px;background:#f2f4f7}
.giforest-inline-row{display:flex;gap:12px;align-items:center}.giforest-inline-row input{flex:1 1 auto}
.giforest-badge-toolbar{display:flex;justify-content:flex-end;margin-bottom:16px}.giforest-badge-row{display:flex;align-items:center;gap:12px;padding:14px 16px;border:1px solid #d8dde6;border-radius:8px;background:#fff}.giforest-badge-row__icon{display:inline-flex;width:24px;height:24px;color:#4caf50}.giforest-badge-row .giforest-reset-button{margin-left:auto}
.giforest-api-actions{display:flex;gap:12px;align-items:center}.giforest-workspace-save--secondary{background:#8bc34a;border-color:#8bc34a;color:#fff;text-decoration:none;display:inline-flex;align-items:center;justify-content:center;padding:0 18px;height:42px;border-radius:6px}
@media (max-width:980px){.giforest-member-balance-card,.giforest-inline-row{flex-direction:column;align-items:stretch}.giforest-counter-card__button{margin-left:0;margin-top:12px}.giforest-api-actions{flex-wrap:wrap}}
.giforest-admin-items-workspace .giforest-admin-items-cards{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px;margin:0 0 18px}.giforest-admin-items-workspace .giforest-status-card{display:flex;align-items:center;gap:16px;padding:24px 18px;border-radius:6px;color:#fff}.giforest-admin-items-workspace .giforest-status-card__icon{display:flex;align-items:center;justify-content:center;width:64px;height:64px;border-radius:10px;background:rgba(255,255,255,.18)}.giforest-admin-items-workspace .giforest-status-card__icon svg,.giforest-item-action svg{width:28px;height:28px;stroke:#fff;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}.giforest-admin-items-workspace .giforest-status-card strong{display:block;font-size:13px;letter-spacing:.12em;color:#fff;margin-bottom:8px;text-transform:uppercase}.giforest-admin-items-workspace .giforest-status-card span{font-size:18px;font-weight:700;color:#fff}.giforest-status-card--orange{background:#ff7c14}.giforest-status-card--purple{background:#6124d8}.giforest-status-card--blue{background:#2287e8}.giforest-status-card--green{background:#04c700}.giforest-status-card--red{background:#e90000}.giforest-status-card--rose{background:#e8344d}.giforest-items-table .giforest-subscription-id{color:#59b65a}.giforest-item-identity{display:flex;align-items:center;gap:14px;min-width:260px}.giforest-item-identity__thumb{width:64px;height:64px;border-radius:8px;overflow:hidden;display:block;background:#eef2f6}.giforest-item-identity__thumb img{width:100%;height:100%;object-fit:cover}.giforest-item-identity__title{display:block;font-weight:600;color:#111827;text-decoration:none;margin-bottom:4px}.giforest-item-identity__meta{display:flex;flex-wrap:wrap;gap:6px;align-items:center;color:#667085;font-size:13px}.giforest-item-identity__meta i{font-style:normal;color:#98a2b3}.giforest-item-badge{display:inline-flex;align-items:center;height:20px;padding:0 8px;border-radius:4px;background:#59b65a;color:#fff;font-size:11px;font-weight:700;margin-top:8px}.giforest-item-prices{display:grid;gap:8px;min-width:150px}.giforest-item-prices>div{display:flex;justify-content:space-between;gap:12px}.giforest-item-prices span{font-size:13px;color:#344054}.giforest-item-prices strong{font-size:14px;color:#111827}.giforest-item-author{display:inline-flex;align-items:center;gap:8px}.giforest-item-author svg{width:14px;height:14px;stroke:#111827;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}.giforest-status-pill{display:inline-flex;align-items:center;justify-content:center;min-width:92px;height:24px;border-radius:6px;padding:0 10px;font-size:12px;font-weight:700;color:#fff}.giforest-status-pill.tone-orange{background:#ff7c14}.giforest-status-pill.tone-violet{background:#6124d8}.giforest-status-pill.tone-blue{background:#2287e8}.giforest-status-pill.tone-green{background:#04c700}.giforest-status-pill.tone-red{background:#e8344d}.giforest-status-pill.tone-slate{background:#667085}.giforest-item-actions{display:flex;align-items:center;gap:8px;justify-content:flex-end}.giforest-item-actions form{margin:0}.giforest-item-action{display:inline-flex;align-items:center;justify-content:center;width:40px;height:40px;border-radius:6px;border:0;text-decoration:none;cursor:pointer}.giforest-item-action--edit{background:#59b65a}.giforest-item-action--stats{background:#e3b22b}.giforest-item-action--download{background:#202836}.giforest-item-action--delete{background:#ea5455}.giforest-item-action:hover{filter:brightness(.96)}.giforest-admin-item-picker-wrap{display:flex;justify-content:center;padding:40px 0}.giforest-admin-item-picker{width:100%;max-width:500px;background:#fff;border:1px solid #e5e7eb;border-radius:12px;padding:28px;box-shadow:0 12px 40px rgba(16,24,40,.08)}.giforest-admin-item-picker h2{margin:0 0 18px}.giforest-admin-item-picker__actions{display:flex;justify-content:flex-end;margin-top:16px}.giforest-admin-item-form{display:grid;gap:18px}.giforest-admin-item-form .giforest-item-panel{background:#fff;border:1px solid #e5e7eb;border-radius:8px;padding:24px}.giforest-admin-item-form .giforest-item-panel h3{margin:0 0 14px}.giforest-admin-item-form label{display:flex;flex-direction:column;gap:8px;margin-bottom:14px}.giforest-admin-item-form label>span{font-weight:600;color:#111827}.giforest-admin-item-form input[type=text],.giforest-admin-item-form input[type=url],.giforest-admin-item-form input[type=number],.giforest-admin-item-form input[type=file],.giforest-admin-item-form textarea,.giforest-admin-item-form select{width:100%;min-height:46px;padding:10px 12px;border:1px solid #d0d5dd;border-radius:4px;background:#fff}.giforest-admin-item-form textarea{min-height:140px}.giforest-admin-item-form select[multiple]{min-height:132px}.giforest-dropzone{border:1px dashed #d0d5dd;border-radius:6px;padding:22px;background:#fafafa}.giforest-dropzone span{font-weight:600;color:#59b65a}.giforest-dropzone small,.giforest-admin-item-form small{color:#667085}.giforest-file-inline{display:grid;grid-template-columns:160px 1fr 1fr;gap:12px;align-items:center}.giforest-item-panel__head{display:flex;align-items:center;justify-content:space-between;gap:12px}.giforest-item-panel__head a{text-decoration:none;color:#59b65a;font-weight:600}.giforest-item-price-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px}.giforest-item-price{display:flex;flex-direction:column;gap:8px}.giforest-item-price__field{display:flex;align-items:center;border:1px solid #d0d5dd;border-radius:4px;overflow:hidden;background:#fff;min-height:46px}.giforest-item-price__field i{display:inline-flex;align-items:center;justify-content:center;width:40px;color:#344054;font-style:normal}.giforest-item-price__field input{border:0!important;min-height:44px!important;padding:0 12px!important}.giforest-item-price__field.is-readonly{background:#f2f4f7}.giforest-item-toggle-row{display:flex}.giforest-binary-toggle{display:inline-flex;overflow:hidden;border:1px solid #d0d5dd;border-radius:6px}.giforest-binary-toggle label{margin:0!important;display:inline-flex;align-items:center;justify-content:center;min-width:64px;height:36px;padding:0 14px;cursor:pointer;background:#fff;color:#111827}.giforest-binary-toggle label.is-active{background:#59b65a;color:#fff}.giforest-binary-toggle input{display:none}.giforest-tag-field{display:flex;flex-wrap:wrap;gap:8px;align-items:center;min-height:46px;padding:8px 10px;border:1px solid #d0d5dd;border-radius:4px;background:#fff}.giforest-tag-field__chips{display:flex;flex-wrap:wrap;gap:6px}.giforest-tag-chip{border:0;background:#8f173d;color:#fff;border-radius:999px;padding:6px 10px;font-size:12px;cursor:pointer}.giforest-tag-field__input{border:0!important;padding:0!important;min-height:auto!important;flex:1 1 160px}.giforest-tag-field__input:focus{outline:none}.giforest-items-panel .giforest-empty-state{padding:90px 24px}.giforest-empty-state{text-align:center;padding:60px 24px}.giforest-empty-state__art{width:120px;height:120px;border-radius:16px;background:linear-gradient(180deg,#f1f5f9,#d0d5dd);margin:0 auto 18px;position:relative}.giforest-empty-state__art:before,.giforest-empty-state__art:after{content:'';position:absolute;background:#59b65a;border-radius:4px}.giforest-empty-state__art:before{width:52px;height:12px;top:18px;left:34px}.giforest-empty-state__art:after{width:60px;height:70px;left:30px;top:34px;background:#e5e7eb;border:1px solid #cfd4dc}.giforest-items-table td,.giforest-items-table th{vertical-align:middle}.giforest-workspace-header__actions .giforest-workspace-add{display:inline-flex;align-items:center;justify-content:center}@media (max-width:1100px){.giforest-admin-items-workspace .giforest-admin-items-cards,.giforest-item-price-grid,.giforest-file-inline{grid-template-columns:1fr}.giforest-item-identity{min-width:0}}

.giforest-admin-items-workspace .giforest-status-card--orange{background:linear-gradient(135deg,#a3153d,#cb3765)}
.giforest-admin-items-workspace .giforest-status-card--purple{background:linear-gradient(135deg,#6f1230,#8f173d)}
.giforest-admin-items-workspace .giforest-status-card--blue{background:linear-gradient(135deg,#8a1639,#b42355)}
.giforest-admin-items-workspace .giforest-status-card--green{background:linear-gradient(135deg,#5d0d27,#8f173d)}
.giforest-admin-items-workspace .giforest-status-card--red{background:linear-gradient(135deg,#93213f,#c93f61)}
.giforest-admin-items-workspace .giforest-status-card--rose{background:linear-gradient(135deg,#b02f54,#d65d7d)}
.giforest-admin-items-workspace .giforest-items-panel{border:1px solid #ead8df;border-radius:12px;overflow:hidden;box-shadow:0 18px 45px rgba(73,16,34,.06)}
.giforest-admin-items-workspace .giforest-member-search--inline{background:linear-gradient(180deg,#fff,#fcf8fa)}
.giforest-admin-items-workspace .giforest-search-button{background:#8f173d;color:#fff;border-color:#8f173d}
.giforest-admin-items-workspace .giforest-search-button:hover{background:#741131;border-color:#741131}
.giforest-admin-items-workspace .giforest-reset-button{border-color:#d8c3cb;color:#5a2032}
.giforest-item-actions{min-width:188px;gap:10px;flex-wrap:nowrap}
.giforest-item-actions form{display:inline-flex}
.giforest-item-action{box-shadow:0 6px 14px rgba(17,24,39,.08);flex:0 0 40px}
.giforest-item-action svg{width:20px;height:20px;stroke:#fff!important;fill:none!important;opacity:1!important}
.giforest-item-action--delete{background:#d83b59!important}
.giforest-admin-item-form--split{display:grid;grid-template-columns:minmax(0,1fr) 320px;gap:22px;align-items:start}
.giforest-admin-item-form__main{display:grid;gap:18px}
.giforest-admin-item-form__side{position:sticky;top:88px}
.giforest-admin-item-toolbar{display:flex;flex-wrap:wrap;gap:10px;margin:0 0 12px}
.giforest-admin-item-toolbar__button{display:inline-flex;align-items:center;justify-content:center;height:38px;padding:0 16px;border-radius:8px;border:1px solid #d8c3cb;background:#fff;color:#6b2037;text-decoration:none;font-weight:600}
.giforest-admin-item-toolbar__button.is-active,.giforest-admin-item-toolbar__button:hover{background:#8f173d;border-color:#8f173d;color:#fff}
.giforest-item-panel--summary{display:grid;gap:14px}
.giforest-item-summary__row{display:flex;justify-content:space-between;gap:12px;padding-bottom:12px;border-bottom:1px solid #efe5e9;color:#344054}
.giforest-item-summary__row strong{font-weight:600;color:#101828;text-align:right}
.giforest-item-summary__row .giforest-status-pill{min-width:unset}
.giforest-item-summary__button{display:flex;align-items:center;justify-content:center;height:42px;border-radius:8px;border:1px solid #d8c3cb;text-decoration:none;color:#3f2230;background:#fff;font-weight:600}
.giforest-item-summary__button.is-primary{background:#8f173d;border-color:#8f173d;color:#fff}
.giforest-upload-note{display:block;color:#667085;font-style:normal;font-size:12px;margin-top:4px}
.giforest-item-stats-page{display:grid;gap:18px}
.giforest-item-stats-cards{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px}
.giforest-item-stats-card{background:#fff;border:1px solid #ead8df;border-radius:12px;padding:28px 18px;box-shadow:0 12px 32px rgba(73,16,34,.05)}
.giforest-item-stats-card strong{display:block;font-size:28px;color:#101828;margin-bottom:8px}
.giforest-item-stats-card span{display:block;color:#667085;font-weight:600}
.giforest-item-stats-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px}
.giforest-chart-placeholder,.giforest-map-placeholder{height:300px;border:1px solid #efe5e9;border-radius:12px;background:linear-gradient(180deg,#fff,#fcf8fa);position:relative;overflow:hidden}
.giforest-chart-placeholder svg{width:100%;height:100%}
.giforest-chart-placeholder path:first-child{stroke:#e8dde2;stroke-width:1;fill:none}
.giforest-chart-placeholder path:last-child{stroke:#59b65a;stroke-width:3;fill:none}
.giforest-map-placeholder:before{content:'';position:absolute;inset:24px;border-radius:50%;background:radial-gradient(circle at 30% 40%,rgba(143,23,61,.12),transparent 36%),radial-gradient(circle at 68% 58%,rgba(89,182,90,.18),transparent 28%),linear-gradient(180deg,#f8fafc,#eef2f7)}
.giforest-bars-placeholder{height:300px;border:1px solid #efe5e9;border-radius:12px;background:linear-gradient(180deg,#fff,#fcf8fa);display:flex;align-items:flex-end;gap:8px;padding:20px}
.giforest-bars-placeholder span{flex:1;background:#59b65a;border-radius:6px 6px 0 0;opacity:.95}
.giforest-country-list-mini{min-height:120px;display:flex;align-items:flex-start}
.giforest-country-list-mini div{display:flex;justify-content:space-between;gap:12px;width:100%;padding:8px 0;color:#344054}
.giforest-country-list-mini strong{color:#0f8c4b}
.giforest-admin-items-workspace--updated .giforest-items-table thead th{background:#faf6f8}
.giforest-admin-items-workspace--updated .giforest-status-pill.tone-blue{background:#8f173d}
@media (max-width:1200px){.giforest-admin-item-form--split,.giforest-item-stats-grid,.giforest-item-stats-cards{grid-template-columns:1fr}.giforest-admin-item-form__side{position:static}}

.giforest-item-actions{min-width:196px;gap:10px;align-items:center}
.giforest-item-actions form{display:inline-flex;align-items:center;justify-content:center;margin:0;flex:0 0 40px}
.giforest-item-actions form button{padding:0;appearance:none;-webkit-appearance:none}
.giforest-item-action{box-sizing:border-box;display:inline-flex;align-items:center;justify-content:center;width:40px;height:40px;min-width:40px;min-height:40px;flex:0 0 40px;border-radius:8px;border:0}
.giforest-item-action--delete{background:#e84c62!important;color:#fff!important}
.giforest-item-action--delete svg{display:block;stroke:#fff!important;fill:none!important}
.giforest-binary-toggle{display:inline-flex;align-items:center;overflow:hidden;border:1px solid #d0d5dd;border-radius:8px;background:#fff}
.giforest-binary-toggle label{position:relative;min-width:72px;height:38px;padding:0 18px;background:#fff;color:#6b2037;font-weight:600}
.giforest-binary-toggle label span{display:flex;align-items:center;justify-content:center;width:100%;height:100%;line-height:1;opacity:1;visibility:visible;color:inherit}
.giforest-binary-toggle label.is-active{background:#8f173d;color:#fff}
.giforest-item-toggle-row{display:flex;align-items:center;margin-top:10px}
.giforest-item-panel__field{display:flex;flex-direction:column;align-items:flex-start;gap:10px}
.giforest-item-panel__field p{max-width:760px;margin:0 0 6px;color:#475467;line-height:1.7}
.giforest-item-panel--summary{padding:24px!important}
.giforest-item-summary__row{padding:14px 6px 14px 0}
.giforest-item-summary__row span{padding-left:6px}
.giforest-item-summary__row strong{padding-right:6px}
.giforest-item-detail-page,.giforest-item-stats-page{display:grid;gap:18px}
.giforest-item-detail-layout{display:grid;grid-template-columns:minmax(0,1.45fr) 360px;gap:24px;align-items:start}
.giforest-item-detail-layout .giforest-admin-item-form__main{display:grid;gap:18px;min-width:0}
.giforest-item-detail-layout .giforest-admin-item-form__side{display:block}
.giforest-item-detail-page .giforest-empty-state{padding:78px 24px}
.giforest-item-detail-page .giforest-item-panel h3,.giforest-item-stats-page .giforest-item-panel h3{margin:0 0 18px}
.giforest-two-col-grid{display:grid;grid-template-columns:1fr 1fr;gap:18px}
.giforest-admin-items-workspace .giforest-member-panel{border-radius:14px;border-color:#ead9df;background:#fff;box-shadow:0 8px 24px rgba(73,17,39,.04)}
.giforest-items-table thead th{background:#fbf7f8;color:#532033}
.giforest-items-table tbody tr:hover{background:#fcf8fa}
.giforest-items-table .is-end{white-space:nowrap}
.giforest-admin-item-toolbar__button{padding:0 18px;min-width:110px}
@media (max-width:1100px){.giforest-item-detail-layout{grid-template-columns:1fr}.giforest-two-col-grid{grid-template-columns:1fr}}
.giforest-item-actions{min-width:210px!important;gap:10px!important;justify-content:flex-end!important}
.giforest-item-actions form,.giforest-item-actions a{display:inline-flex!important;align-items:center!important;justify-content:center!important;flex:0 0 40px!important;width:40px!important;height:40px!important}
.giforest-item-action{position:relative;overflow:hidden}
.giforest-item-action--delete,.giforest-item-action--delete:hover{background:#e84c62!important;color:#fff!important}
.giforest-item-action--delete svg,.giforest-item-action--delete path{stroke:#fff!important;fill:none!important;opacity:1!important;display:block!important}
.giforest-item-toggle-row{display:flex!important;align-items:center!important;justify-content:flex-start!important;margin-top:8px!important}
.giforest-binary-toggle{display:inline-grid!important;grid-template-columns:1fr 1fr!important;align-items:stretch!important;min-width:112px!important;border:1px solid #d0d5dd!important;border-radius:8px!important;overflow:hidden!important;background:#fff!important}
.giforest-binary-toggle label{display:flex!important;align-items:center!important;justify-content:center!important;min-width:56px!important;height:38px!important;padding:0 12px!important;margin:0!important;line-height:1!important;background:#fff!important;color:#6b2037!important;text-align:center!important}
.giforest-binary-toggle label span{display:flex!important;align-items:center!important;justify-content:center!important;width:100%!important;height:100%!important;opacity:1!important;visibility:visible!important;color:inherit!important;font-size:14px!important;font-weight:600!important}
.giforest-binary-toggle label.is-active{background:#8f173d!important;color:#fff!important}
.giforest-item-summary__row{padding:16px 10px!important}
.giforest-item-summary__row span,.giforest-item-summary__row strong{padding:0!important}
.giforest-item-history-list{display:grid;gap:14px}
.giforest-item-history-entry{border:1px solid #ead8df;border-radius:10px;padding:16px 18px;background:#fff}
.giforest-item-history-entry strong{display:block;font-size:15px;color:#101828;margin-bottom:6px}
.giforest-item-history-entry span{display:block;font-size:12px;color:#667085;margin-bottom:8px}
.giforest-item-history-entry p{margin:0;color:#344054;line-height:1.6}
.giforest-empty-state--compact{padding:36px 18px}


.giforest-table-shell{width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}
.giforest-records-stats{margin-bottom:18px}
.giforest-member-table--records td[data-label]{position:relative}
.giforest-toggle--settings{width:100%;max-width:260px;background:#eef2f6;border-color:#d0d5dd}
.giforest-toggle--settings .giforest-toggle__option{color:#667085}
.giforest-toggle--settings .giforest-toggle__option.is-active{color:#fff}
.giforest-toggle--settings .giforest-toggle__thumb{background:#20bf27}
.giforest-toggle--settings[data-value="disabled"] .giforest-toggle__thumb,
.giforest-toggle--settings[data-value="disable"] .giforest-toggle__thumb,
.giforest-toggle--settings[data-value="no"] .giforest-toggle__thumb{background:#e30b11}
.giforest-toggle--settings[data-value="active"] .giforest-toggle__thumb,
.giforest-toggle--settings[data-value="enable"] .giforest-toggle__thumb,
.giforest-toggle--settings[data-value="enabled"] .giforest-toggle__thumb,
.giforest-toggle--settings[data-value="yes"] .giforest-toggle__thumb{background:#20bf27}
@media (max-width: 1024px){
  .giforest-records-stats{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media (max-width: 782px){
  .giforest-records-stats{grid-template-columns:1fr}
  .giforest-table-shell--records{overflow:visible}
  .giforest-member-table--records,
  .giforest-member-table--records tbody,
  .giforest-member-table--records tr,
  .giforest-member-table--records td{display:block;width:100%}
  .giforest-member-table--records thead{display:none}
  .giforest-member-table--records tbody{display:grid;gap:14px}
  .giforest-member-table--records tr{background:#fff;border:1px solid #e5e7eb;border-radius:14px;padding:10px 14px;box-shadow:0 10px 22px rgba(16,24,40,.06)}
  .giforest-member-table--records td{border-top:0;padding:8px 0;text-align:left !important}
  .giforest-member-table--records td[data-label]::before{content:attr(data-label);display:block;margin-bottom:4px;color:#667085;font-size:11px;font-weight:700;letter-spacing:.04em;text-transform:uppercase}
  .giforest-member-table--records td.is-end{padding-top:12px;border-top:1px solid #eef2f6}
  .giforest-toggle--settings{max-width:none}
}

/* v0.9.48 records and downstream ui fixes */
.giforest-table-shell--records{
  overflow-x:auto;
  overflow-y:visible;
}
.giforest-member-table--records{
  width:100%;
  table-layout:auto;
}
.giforest-member-table--records th,
.giforest-member-table--records td{
  white-space:normal;
  word-break:break-word;
  overflow-wrap:anywhere;
  vertical-align:middle;
}
.giforest-member-table--records td.giforest-cell-nowrap,
.giforest-member-table--records th.giforest-cell-nowrap,
.giforest-member-table--records td[data-label="Date"],
.giforest-member-table--records td[data-label="Withdrawal Date"],
.giforest-member-table--records td[data-label="Submitted Date"],
.giforest-member-table--records td[data-label="Last update"],
.giforest-member-table--records td[data-label="Author Earnings"],
.giforest-member-table--records td[data-label="Amount"],
.giforest-member-table--records td[data-label="Buyer Fee"],
.giforest-member-table--records td[data-label="Author Fee"],
.giforest-member-table--records td[data-label="Total"],
.giforest-member-table--records td[data-label="Price"],
.giforest-member-table--records td[data-label="SubTotal"],
.giforest-member-table--records td[data-label="Tax"],
.giforest-member-table--records td[data-label="Fees"]{
  white-space:nowrap;
  word-break:normal;
  overflow-wrap:normal;
}
.giforest-member-table--records td.giforest-cell-details,
.giforest-member-table--records td[data-label="Details"],
.giforest-member-table--records td[data-label="Purchase"],
.giforest-member-table--records td[data-label="Title"],
.giforest-member-table--records td[data-label="Subscription"]{
  min-width:280px;
}
.giforest-member-table--records td.giforest-cell-actions,
.giforest-member-table--records th:last-child,
.giforest-member-table--records td:last-child{
  width:74px;
  min-width:74px;
  text-align:right;
}
.giforest-member-table--records .giforest-action-menu{
  display:inline-flex;
  justify-content:flex-end;
}
.giforest-member-table--records .giforest-action-menu__toggle{
  width:34px;
  height:34px;
  border-radius:8px;
  border:1px solid #d0d5dd;
  background:#fff;
  color:#111827;
}
.giforest-member-table--records .giforest-action-menu__dots{
  font-size:20px;
  font-weight:700;
  line-height:1;
  color:#8f173d;
}
.giforest-member-table--records .giforest-action-menu__list{
  min-width:180px;
  right:0;
}
.giforest-member-table--records .giforest-status-pill{
  white-space:nowrap;
}
@media (max-width:1024px){
  .giforest-member-table--records td.giforest-cell-details,
  .giforest-member-table--records td[data-label="Details"],
  .giforest-member-table--records td[data-label="Purchase"],
  .giforest-member-table--records td[data-label="Title"],
  .giforest-member-table--records td[data-label="Subscription"]{
    min-width:220px;
  }
}
@media (max-width:782px){
  .giforest-member-table--records td.giforest-cell-details,
  .giforest-member-table--records td[data-label="Details"],
  .giforest-member-table--records td[data-label="Purchase"],
  .giforest-member-table--records td[data-label="Title"],
  .giforest-member-table--records td[data-label="Subscription"]{
    min-width:0;
  }
  .giforest-member-table--records td.giforest-cell-actions,
  .giforest-member-table--records td:last-child{
    width:100%;
    min-width:0;
    text-align:left !important;
  }
  .giforest-member-table--records .giforest-action-menu{
    justify-content:flex-start;
  }
}


/* v0.9.49 records polish */
.giforest-member-table--records thead th:last-child{width:72px;min-width:72px}
.giforest-member-table--records td,.giforest-member-table--records th{line-height:1.45}
.giforest-member-table--records td[data-label="Details"],
.giforest-member-table--records td[data-label="Purchase"],
.giforest-member-table--records td[data-label="Title"],
.giforest-member-table--records td[data-label="Subscription"],
.giforest-member-table--records td[data-label="Item"],
.giforest-member-table--records td[data-label="Buyer"],
.giforest-member-table--records td[data-label="User"],
.giforest-member-table--records td[data-label="User details"]{overflow-wrap:break-word;word-break:normal}
.giforest-member-table--records td[data-label="Date"],
.giforest-member-table--records td[data-label="Withdrawal Date"],
.giforest-member-table--records td[data-label="Submitted Date"],
.giforest-member-table--records td[data-label="Last update"],
.giforest-member-table--records td[data-label="Support Expiry Date"]{white-space:nowrap}
.giforest-member-table--records td[data-label="Price"],
.giforest-member-table--records td[data-label="Amount"],
.giforest-member-table--records td[data-label="Buyer Fee"],
.giforest-member-table--records td[data-label="Author Fee"],
.giforest-member-table--records td[data-label="Total"],
.giforest-member-table--records td[data-label="SubTotal"],
.giforest-member-table--records td[data-label="Tax"],
.giforest-member-table--records td[data-label="Fees"],
.giforest-member-table--records td[data-label="Author Earnings"]{font-variant-numeric:tabular-nums}
.giforest-member-table--records .giforest-action-menu__toggle{padding:0!important}
.giforest-member-table--records .giforest-action-menu__dots{display:inline-flex;align-items:center;justify-content:center;width:100%;height:100%;font-size:22px;line-height:1;color:#8f173d}
.giforest-member-table--records td.giforest-cell-actions{padding-right:10px}
#adminmenu .toplevel_page_giforest-dashboard .wp-submenu li.giforest-menu-child > a:before,
#adminmenu .toplevel_page_giforest-dashboard .wp-submenu li.giforest-menu-child > a:after{display:none!important}
#adminmenu .toplevel_page_giforest-dashboard .wp-submenu li.giforest-menu-child > a{padding-left:20px!important;white-space:nowrap!important}
#adminmenu .toplevel_page_giforest-dashboard .wp-submenu li.giforest-menu-child{list-style:none!important}

/* v0.9.51 records and downstream responsive cleanup */
.giforest-member-search > .giforest-member-input--grow{min-width:220px}
.giforest-table-shell--records{overflow-x:auto;overflow-y:visible}
.giforest-member-table--records{min-width:980px;table-layout:fixed;border-collapse:collapse}
.giforest-member-table--records th,.giforest-member-table--records td{padding:12px 14px;line-height:1.35;vertical-align:middle}
.giforest-member-table--records th:first-child,.giforest-member-table--records td:first-child{width:88px;min-width:88px}
.giforest-member-table--records th:last-child,.giforest-member-table--records td:last-child,.giforest-member-table--records td.giforest-cell-actions{width:72px;min-width:72px;max-width:72px}
.giforest-member-table--records td[data-label="Date"],.giforest-member-table--records td[data-label="Withdrawal Date"],.giforest-member-table--records td[data-label="Submitted Date"],.giforest-member-table--records td[data-label="Support Expiry Date"],.giforest-member-table--records td[data-label="Last update"]{min-width:170px;max-width:170px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.giforest-member-table--records td[data-label="Price"],.giforest-member-table--records td[data-label="Amount"],.giforest-member-table--records td[data-label="Buyer Fee"],.giforest-member-table--records td[data-label="Author Fee"],.giforest-member-table--records td[data-label="Total"],.giforest-member-table--records td[data-label="SubTotal"],.giforest-member-table--records td[data-label="Tax"],.giforest-member-table--records td[data-label="Fees"],.giforest-member-table--records td[data-label="Author Earnings"]{min-width:105px;max-width:120px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;font-variant-numeric:tabular-nums}
.giforest-member-table--records td[data-label="Details"],.giforest-member-table--records td[data-label="Purchase"],.giforest-member-table--records td[data-label="Title"],.giforest-member-table--records td[data-label="Subscription"],.giforest-member-table--records td[data-label="Item"]{max-width:360px;overflow-wrap:break-word;word-break:normal}
.giforest-member-table--records td[data-label="Buyer"],.giforest-member-table--records td[data-label="User"],.giforest-member-table--records td[data-label="Username"],.giforest-member-table--records td[data-label="Author"]{max-width:180px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.giforest-member-table--records td[data-label="User details"] .giforest-member-identity{min-width:240px}
.giforest-member-table--records .giforest-action-menu{display:inline-flex;justify-content:flex-end;align-items:center}
.giforest-action-menu__toggle{padding:0!important}
.giforest-action-menu__dots{display:flex;flex-direction:column;align-items:center;justify-content:center;gap:3px;width:100%;height:100%}
.giforest-action-menu__dots i{display:block;width:4px;height:4px;border-radius:999px;background:currentColor}
.giforest-member-table--records .giforest-action-menu__toggle{width:34px;height:34px;border-radius:8px;border:1px solid #d0d5dd;background:#fff;color:#8f173d}
.giforest-member-table--records .giforest-action-menu__toggle:hover,.giforest-member-table--records .giforest-action-menu__toggle:focus{color:#761332;border-color:#8f173d;background:#fff}
.giforest-member-table--records .giforest-action-menu__list{right:0;left:auto;min-width:180px;z-index:9999}
@media (max-width:782px){.giforest-member-table--records{min-width:0;table-layout:auto}.giforest-member-search{flex-wrap:wrap}.giforest-member-search > *{flex:1 1 100%}.giforest-member-search .giforest-search-button,.giforest-member-search .giforest-reset-button{flex:1 1 calc(50% - 6px)}}
#adminmenu .toplevel_page_giforest-dashboard .wp-submenu,
#adminmenu .toplevel_page_giforest-dashboard .wp-submenu li{list-style:none!important;margin-left:0!important}
#adminmenu .toplevel_page_giforest-dashboard .wp-submenu li a{white-space:nowrap!important;overflow:hidden!important;text-overflow:ellipsis!important}

.giforest-action-menu__divider{height:1px;background:#e5e7eb;margin:6px 0}
.giforest-action-menu--items .giforest-action-menu__list{min-width:210px}
.giforest-header-actions{display:flex;gap:12px;align-items:center}
.giforest-members-header--item-detail{align-items:flex-start;gap:16px;flex-wrap:wrap}
.giforest-item-detail-layout{display:grid;grid-template-columns:minmax(0,1.45fr) 420px;gap:20px;align-items:start}
.giforest-item-detail-main,.giforest-item-detail-side{min-width:0}
.giforest-item-gallery{display:grid;grid-template-columns:repeat(auto-fit,minmax(180px,1fr));gap:16px}
.giforest-item-gallery__image{border:1px solid #e5e7eb;border-radius:14px;background:#fff;overflow:hidden;padding:12px;min-height:180px;display:flex;align-items:center;justify-content:center}
.giforest-item-gallery__image img{max-width:100%;height:auto;display:block;border-radius:10px}
.giforest-item-detail-card__head{display:flex;align-items:center;justify-content:space-between;margin-bottom:16px}
.details.giforest-item-accordion{}
.giforest-item-accordion{border:1px solid #e5e7eb;border-radius:14px;background:#fff;margin-top:16px;overflow:hidden}
.giforest-item-accordion summary{cursor:pointer;list-style:none;padding:18px 20px;font-size:16px;font-weight:700}
.giforest-item-accordion summary::-webkit-details-marker{display:none}
.giforest-item-accordion__body{padding:0 20px 20px}
.giforest-item-meta-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}
.giforest-item-meta-grid > div,.giforest-item-side-row{border:1px solid #eceef3;border-radius:12px;padding:14px;background:#fff}
.giforest-item-meta-grid strong,.giforest-item-side-row strong{display:block;font-size:13px;margin-bottom:6px;color:#344054}
.giforest-item-meta-grid span,.giforest-item-side-row span{display:block;color:#101828;line-height:1.6}
.giforest-item-side-card{position:sticky;top:24px}
.giforest-item-side-grid{display:grid;gap:12px}
.giforest-item-side-actions{display:grid;gap:12px;margin-top:16px}
@media (max-width:1100px){.giforest-item-detail-layout{grid-template-columns:1fr}.giforest-item-side-card{position:static}}
@media (max-width:640px){.giforest-item-meta-grid{grid-template-columns:1fr}.giforest-header-actions{width:100%;justify-content:flex-start;flex-wrap:wrap}}
.giforest-item-actions-dropdown{position:relative;display:inline-block}
.giforest-item-actions-dropdown summary{display:inline-flex;align-items:center;justify-content:center;width:30px;height:30px;border:1px solid #d0d5dd;border-radius:10px;background:#fff;cursor:pointer;list-style:none}
.giforest-item-actions-dropdown summary::-webkit-details-marker{display:none}
.giforest-item-actions-dropdown summary svg{width:18px;height:18px;stroke:#111827;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.giforest-item-actions-dropdown[open] summary{border-color:#8f173d;box-shadow:0 0 0 3px rgba(143,23,61,.12)}
.giforest-item-actions-dropdown__menu{position:absolute;right:0;top:38px;z-index:50;min-width:210px;background:#fff;border:1px solid #e5e7eb;border-radius:12px;box-shadow:0 16px 40px rgba(15,23,42,.18);overflow:hidden;padding:8px 0}
.giforest-item-actions-dropdown__menu a,.giforest-item-actions-dropdown__menu button{display:flex;align-items:center;gap:10px;width:100%;padding:12px 16px;background:#fff;border:0;color:#344054;text-decoration:none;text-align:left;font-size:15px;cursor:pointer}
.giforest-item-actions-dropdown__menu form{margin:0}
.giforest-item-actions-dropdown__menu svg{width:18px;height:18px;stroke:currentColor;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;flex:0 0 auto}
.giforest-item-actions-dropdown__menu a:hover,.giforest-item-actions-dropdown__menu button:hover{background:#f8f4f6;color:#8f173d}
.giforest-item-detail-page--view{gap:22px}
.giforest-item-detail-header{display:flex;align-items:flex-start;justify-content:space-between;gap:20px}
.giforest-item-detail-header h1{margin:0 0 8px;font-size:28px;line-height:1.2;color:#1f2937}
.giforest-item-detail-header p{margin:0;color:#667085}
.giforest-item-detail-header__actions{display:flex;gap:12px;flex-wrap:wrap}
.giforest-admin-item-toolbar--tabs{display:flex;gap:12px;flex-wrap:wrap}
.giforest-item-detail-card{background:#fff;border:1px solid #e5e7eb;border-radius:10px;overflow:hidden}
.giforest-item-detail-card+ .giforest-item-detail-card{margin-top:16px}
.giforest-item-detail-card summary{display:flex;align-items:center;justify-content:space-between;padding:22px 24px;font-size:18px;font-weight:600;color:#111827;cursor:pointer;list-style:none}
.giforest-item-detail-card summary::-webkit-details-marker{display:none}
.giforest-item-detail-card summary i{width:12px;height:12px;border-right:2px solid #111827;border-bottom:2px solid #111827;transform:rotate(45deg);transition:transform .2s ease}
.giforest-item-detail-card[open] summary i{transform:rotate(-135deg)}
.giforest-item-detail-card__body{padding:0 24px 24px}
.giforest-item-detail-thumb{width:120px;height:120px;object-fit:cover;border-radius:10px;background:#f3f4f6}
.giforest-item-detail-list{display:grid;gap:14px}
.giforest-item-detail-list-row{display:flex;align-items:center;justify-content:space-between;gap:18px;padding-bottom:14px;border-bottom:1px solid #eef2f6}
.giforest-item-detail-list-row:last-child{padding-bottom:0;border-bottom:0}
.giforest-item-detail-list-row span{color:#667085}
.giforest-item-detail-list-row strong{color:#111827;font-weight:600;text-align:right}
.giforest-item-detail-side{min-width:0}
.giforest-item-side-card{background:#fff;border:1px solid #e5e7eb;border-radius:10px;padding:26px;position:sticky;top:24px}
.giforest-item-side-actions{display:grid;gap:12px;margin-top:22px}
.giforest-item-side-actions form{margin:0}
.giforest-item-side-actions form button,.giforest-item-side-button{display:flex;align-items:center;justify-content:center;width:100%;min-height:48px;border-radius:8px;border:1px solid #8f173d;background:#fff;color:#8f173d;text-decoration:none;font-weight:700}
.giforest-item-side-actions form button svg{display:none}
.giforest-item-side-button--download,.giforest-item-side-actions form:first-of-type button{background:#8f173d;color:#fff;border-color:#8f173d}
@media (max-width:1100px){.giforest-item-detail-header{flex-direction:column}.giforest-item-actions-dropdown__menu{right:auto;left:0}}

.giforest-item-actions-dropdown__divider{height:1px;background:#eceff3;margin:2px 0}
.giforest-item-actions-dropdown__group{display:block}
.giforest-item-action-row,.giforest-item-action-form button{display:flex;align-items:center;gap:10px;width:100%;padding:12px 16px;background:#fff;border:0;color:#344054;text-decoration:none;text-align:left;font-size:15px;cursor:pointer}
.giforest-item-action-form{margin:0}
.giforest-item-action-form.is-danger button{color:#ef4444}
.giforest-item-action-form.is-warning button{color:#eab308}
.giforest-item-action-form.is-success button{color:#16a34a}
.giforest-item-action-form.is-muted button{color:#4b5563}
.giforest-item-action-row:hover,.giforest-item-action-form button:hover{background:#f8f4f6}

:root{
  --giforest-burgundy:#8b0000;
  --giforest-dark-burgundy:#800020;
  --giforest-bordeaux:#5c1f2b;
  --giforest-merlot:#73343f;
  --giforest-wine-red:#722f37;
  --giforest-berry:#8f1242;
  --giforest-red-berry:#7b1e27;
  --giforest-japanese-carmine:#9d2933;
  --giforest-claret:#7f1734;
  --giforest-mahogany:#4f0b0b;
  --giforest-light-burgundy:#a0001c;
  --giforest-sangria:#6c0f1a;
  --giforest-cream:#fbf7f8;
  --giforest-line:#e7d7dd;
}

.giforest-admin-workspace-copy .giforest-workspace-card,
.giforest-admin-workspace-copy .giforest-item-panel,
.giforest-admin-workspace-copy .giforest-item-side-card,
.giforest-admin-workspace-copy .giforest-item-detail-card,
.giforest-admin-workspace-copy .giforest-admin-item-picker,
.giforest-admin-workspace-copy .giforest-item-detail-page,
.giforest-admin-workspace-copy .giforest-author-items-block{border-color:var(--giforest-line)!important;box-shadow:0 10px 24px rgba(92,31,43,.06)!important}

.giforest-admin-workspace-copy .giforest-item-panel,
.giforest-admin-workspace-copy .giforest-item-side-card,
.giforest-admin-workspace-copy .giforest-item-detail-card,
.giforest-admin-workspace-copy .giforest-admin-item-picker{border-radius:18px!important;background:#fff!important}

.giforest-admin-workspace-copy .giforest-admin-item-toolbar,.giforest-admin-workspace-copy .giforest-admin-item-toolbar--tabs{display:flex;flex-wrap:wrap;gap:12px;margin:0 0 20px!important}
.giforest-admin-workspace-copy .giforest-admin-item-toolbar__button{display:inline-flex;align-items:center;justify-content:center;min-height:44px;padding:0 22px;border:1px solid #dcc6cd;border-radius:12px;background:#fff;color:var(--giforest-bordeaux)!important;font-size:15px!important;font-weight:600!important;text-decoration:none!important;line-height:1.2!important;box-shadow:none!important}
.giforest-admin-workspace-copy .giforest-admin-item-toolbar__button:hover{border-color:var(--giforest-berry);color:var(--giforest-berry)!important;background:var(--giforest-cream)}
.giforest-admin-workspace-copy .giforest-admin-item-toolbar__button.is-active{background:linear-gradient(135deg,var(--giforest-dark-burgundy),var(--giforest-berry))!important;border-color:var(--giforest-dark-burgundy)!important;color:#fff!important}

.giforest-admin-workspace-copy .giforest-item-detail-header{display:flex;align-items:flex-start;justify-content:space-between;gap:18px;margin-bottom:18px}
.giforest-admin-workspace-copy .giforest-item-detail-header h1{margin:0 0 8px!important;color:var(--giforest-bordeaux)!important;font-size:28px!important;line-height:1.2!important;font-weight:700!important}
.giforest-admin-workspace-copy .giforest-item-detail-header p{margin:0!important;color:#8f6e79!important;font-size:14px!important}
.giforest-admin-workspace-copy .giforest-item-detail-header__actions{display:flex;gap:12px;flex-wrap:wrap}
.giforest-admin-workspace-copy .giforest-item-summary__button,
.giforest-admin-workspace-copy .giforest-workspace-save{display:inline-flex;align-items:center;justify-content:center;min-height:46px;padding:0 20px;border-radius:12px;border:1px solid var(--giforest-dark-burgundy);background:linear-gradient(135deg,var(--giforest-dark-burgundy),var(--giforest-berry));color:#fff!important;text-decoration:none!important;font-weight:700!important}
.giforest-admin-workspace-copy .giforest-item-summary__button--ghost{background:#fff!important;color:var(--giforest-bordeaux)!important;border-color:#d9c8cf!important}
.giforest-admin-workspace-copy .giforest-item-summary__button:not(.giforest-item-summary__button--ghost):hover,
.giforest-admin-workspace-copy .giforest-workspace-save:hover{filter:brightness(.97)}

.giforest-admin-workspace-copy .giforest-item-detail-layout,.giforest-admin-workspace-copy .giforest-admin-item-form--split{display:grid;grid-template-columns:minmax(0,1.4fr) 360px;gap:22px;align-items:start}
.giforest-admin-workspace-copy .giforest-item-detail-card summary{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:20px 22px;cursor:pointer;list-style:none;font-size:17px;font-weight:700;color:var(--giforest-bordeaux)}
.giforest-admin-workspace-copy .giforest-item-detail-card__body{padding:0 22px 22px}
.giforest-admin-workspace-copy .giforest-item-detail-list-row{display:grid;grid-template-columns:160px 1fr;gap:14px;padding:14px 0;border-bottom:1px solid #f0e4e8;align-items:start}
.giforest-admin-workspace-copy .giforest-item-detail-list-row:last-child{border-bottom:0}
.giforest-admin-workspace-copy .giforest-item-detail-list-row span{color:#86656f;font-size:14px;line-height:1.5}
.giforest-admin-workspace-copy .giforest-item-detail-list-row strong{color:var(--giforest-bordeaux);font-size:15px;line-height:1.6;font-weight:600}
.giforest-admin-workspace-copy .giforest-item-side-actions{display:grid;gap:12px;margin-top:20px}
.giforest-admin-workspace-copy .giforest-item-side-actions .giforest-item-action-form button,
.giforest-admin-workspace-copy .giforest-item-side-button{display:flex;align-items:center;justify-content:center;width:100%;min-height:46px;padding:0 18px;border-radius:12px;border:1px solid #d8c3cb;background:#fff;color:var(--giforest-bordeaux);font-size:15px;font-weight:700;text-decoration:none}
.giforest-admin-workspace-copy .giforest-item-side-button--download{background:linear-gradient(135deg,var(--giforest-dark-burgundy),var(--giforest-berry));border-color:var(--giforest-dark-burgundy);color:#fff}
.giforest-admin-workspace-copy .giforest-item-side-actions .is-danger button{color:var(--giforest-japanese-carmine)}
.giforest-admin-workspace-copy .giforest-item-side-actions .is-warning button{color:var(--giforest-light-burgundy)}
.giforest-admin-workspace-copy .giforest-item-side-actions .is-success button{color:var(--giforest-berry)}

.giforest-admin-workspace-copy .giforest-item-panel h3,
.giforest-admin-workspace-copy .giforest-item-panel__head h3{font-size:22px!important;line-height:1.3!important;color:var(--giforest-bordeaux)!important}
.giforest-admin-workspace-copy .giforest-item-panel>label,
.giforest-admin-workspace-copy .giforest-item-panel__body,
.giforest-admin-workspace-copy .giforest-item-price-grid{gap:14px!important}
.giforest-admin-workspace-copy .giforest-item-panel label span{font-size:13px!important;font-weight:600!important;color:var(--giforest-merlot)!important;line-height:1.45!important}
.giforest-admin-workspace-copy .giforest-item-panel input[type=text],
.giforest-admin-workspace-copy .giforest-item-panel input[type=url],
.giforest-admin-workspace-copy .giforest-item-panel input[type=number],
.giforest-admin-workspace-copy .giforest-item-panel input[type=file],
.giforest-admin-workspace-copy .giforest-item-panel select,
.giforest-admin-workspace-copy .giforest-item-panel textarea,
.giforest-admin-workspace-copy .giforest-admin-item-picker select{border:1px solid #e4d5da!important;border-radius:12px!important;min-height:48px!important;padding:0 14px!important;font-size:14px!important;color:var(--giforest-bordeaux)!important;background:#fff!important}
.giforest-admin-workspace-copy .giforest-item-panel textarea{padding:14px!important;line-height:1.7!important}
.giforest-admin-workspace-copy .giforest-item-panel small,
.giforest-admin-workspace-copy .giforest-item-panel p{font-size:12px!important;color:#8d727b!important;line-height:1.7!important}
.giforest-admin-workspace-copy .giforest-dropzone{border:1px dashed #d8bcc6!important;background:linear-gradient(180deg,#fff,#fcf7f8)!important;border-radius:14px!important}
.giforest-admin-workspace-copy .giforest-dropzone span{color:var(--giforest-berry)!important;font-size:17px!important;font-weight:700!important}
.giforest-admin-workspace-copy .giforest-binary-toggle{border-color:#d8c5cb!important;border-radius:10px!important}
.giforest-admin-workspace-copy .giforest-binary-toggle label{height:38px!important;background:#fff!important;color:var(--giforest-bordeaux)!important}
.giforest-admin-workspace-copy .giforest-binary-toggle label.is-active{background:linear-gradient(135deg,var(--giforest-dark-burgundy),var(--giforest-berry))!important;color:#fff!important}
.giforest-admin-workspace-copy .giforest-tag-field{border:1px solid #e4d5da;border-radius:12px;padding:8px 10px;background:#fff}
.giforest-admin-workspace-copy .giforest-tag-field__chips{display:flex;gap:8px;flex-wrap:wrap;margin-bottom:8px}
.giforest-admin-workspace-copy .giforest-tag-chip{display:inline-flex;align-items:center;gap:8px;padding:6px 10px;border-radius:999px;background:#f7edf1;color:var(--giforest-bordeaux);font-size:12px;font-weight:700}
.giforest-admin-workspace-copy .giforest-tag-chip button{border:0;background:none;color:inherit;padding:0;cursor:pointer}

.giforest-admin-workspace-copy .giforest-item-actions-dropdown{position:relative;display:inline-block}
.giforest-admin-workspace-copy .giforest-item-actions-dropdown summary{display:inline-flex;align-items:center;justify-content:center;width:36px;height:36px;border-radius:12px;border:1px solid #d6c3ca;background:#fff;color:var(--giforest-bordeaux);cursor:pointer;list-style:none}
.giforest-admin-workspace-copy .giforest-item-actions-dropdown summary::-webkit-details-marker{display:none}
.giforest-admin-workspace-copy .giforest-item-actions-dropdown[open]{z-index:9999}
.giforest-admin-workspace-copy .giforest-item-actions-dropdown__menu{position:absolute;top:calc(100% + 10px);right:0;min-width:224px;padding:10px;background:#fff;border:1px solid #e4d8dd;border-radius:16px;box-shadow:0 18px 42px rgba(76,25,38,.18);z-index:9999}
.giforest-admin-workspace-copy .giforest-item-actions-dropdown__group{display:grid;gap:2px}
.giforest-admin-workspace-copy .giforest-item-actions-dropdown__divider{height:1px;background:#f0e5e8;margin:8px 0}
.giforest-admin-workspace-copy .giforest-item-action-row,
.giforest-admin-workspace-copy .giforest-item-action-form button{display:grid;grid-template-columns:18px 1fr;align-items:center;gap:10px;width:100%;padding:10px 12px;border:0;border-radius:10px;background:#fff;color:#493946;text-decoration:none;font-size:14px;line-height:1.25;font-weight:500;text-align:left}
.giforest-admin-workspace-copy .giforest-item-action-row:hover,
.giforest-admin-workspace-copy .giforest-item-action-form button:hover{background:#faf4f6}
.giforest-admin-workspace-copy td.is-end,.giforest-admin-workspace-copy .giforest-admin-items-table td:last-child{position:relative;overflow:visible!important}
.giforest-admin-workspace-copy .giforest-admin-items-table,.giforest-admin-workspace-copy .giforest-author-items-block,.giforest-admin-workspace-copy .giforest-workspace-card{overflow:visible!important}
.giforest-admin-workspace-copy .giforest-item-action-form{margin:0}
.giforest-admin-workspace-copy .giforest-item-action-form.is-danger button{color:var(--giforest-japanese-carmine)}
.giforest-admin-workspace-copy .giforest-item-action-form.is-warning button{color:#b06d00}
.giforest-admin-workspace-copy .giforest-item-action-form.is-success button{color:var(--giforest-berry)}
.giforest-admin-workspace-copy .giforest-item-action-form.is-muted button{color:#6f6268}

@media (max-width:1100px){
  .giforest-admin-workspace-copy .giforest-item-detail-layout,
  .giforest-admin-workspace-copy .giforest-admin-item-form--split{grid-template-columns:1fr}
}
@media (max-width:767px){
  .giforest-admin-workspace-copy .giforest-item-detail-header{flex-direction:column}
  .giforest-admin-workspace-copy .giforest-item-detail-header h1{font-size:24px!important}
  .giforest-admin-workspace-copy .giforest-item-detail-list-row{grid-template-columns:1fr}
  .giforest-admin-workspace-copy .giforest-admin-item-toolbar,.giforest-admin-workspace-copy .giforest-admin-item-toolbar--tabs{gap:10px}
  .giforest-admin-workspace-copy .giforest-admin-item-toolbar__button{width:100%;justify-content:flex-start;padding:0 16px}
  .giforest-admin-workspace-copy .giforest-item-actions-dropdown__menu{right:auto;left:50%;transform:translateX(-50%);min-width:210px}
}


.giforest-admin-workspace-copy .giforest-admin-item-form--split{grid-template-columns:minmax(0,1.72fr) 320px;gap:24px;align-items:start}
.giforest-admin-workspace-copy .giforest-item-detail-layout{grid-template-columns:minmax(0,1.68fr) 320px;gap:24px;align-items:start}
.giforest-admin-workspace-copy .giforest-admin-item-form__side{margin-top:96px;justify-self:end;width:100%;max-width:320px}
.giforest-admin-workspace-copy .giforest-item-detail-layout>.giforest-item-detail-side,.giforest-admin-workspace-copy .giforest-item-detail-layout>.giforest-admin-item-form__side{justify-self:end;width:100%;max-width:320px}
.giforest-admin-workspace-copy .giforest-admin-item-toolbar,.giforest-admin-workspace-copy .giforest-admin-item-toolbar--tabs{flex-wrap:nowrap;overflow-x:auto;scrollbar-width:thin;padding-bottom:2px}
.giforest-admin-workspace-copy .giforest-admin-item-toolbar__button{flex:0 0 auto;padding:0 20px;height:44px;font-size:14px;border-radius:12px}
.giforest-admin-workspace-copy .giforest-workspace-save,.giforest-admin-workspace-copy .giforest-workspace-back,.giforest-admin-workspace-copy .giforest-workspace-secondary,.giforest-admin-workspace-copy .giforest-item-summary__button,.giforest-admin-workspace-copy .giforest-item-side-button{padding:0 18px;min-height:44px;line-height:1.2;border-radius:12px}
.giforest-admin-workspace-copy .giforest-item-panel,.giforest-admin-workspace-copy .giforest-item-side-card{border-color:#ead8df;border-radius:18px;box-shadow:0 10px 30px rgba(89,24,41,.05)}
.giforest-admin-workspace-copy .giforest-item-panel h3,.giforest-admin-workspace-copy .giforest-item-side-card h3{color:var(--giforest-bordeaux);line-height:1.35}
.giforest-admin-workspace-copy .giforest-admin-item-form label>span,.giforest-admin-workspace-copy .giforest-item-detail-list-row span,.giforest-admin-workspace-copy .giforest-item-summary__row span{line-height:1.45}
.giforest-admin-workspace-copy .giforest-admin-item-form input[type=text],.giforest-admin-workspace-copy .giforest-admin-item-form input[type=url],.giforest-admin-workspace-copy .giforest-admin-item-form input[type=number],.giforest-admin-workspace-copy .giforest-admin-item-form input[type=file],.giforest-admin-workspace-copy .giforest-admin-item-form textarea,.giforest-admin-workspace-copy .giforest-admin-item-form select,.giforest-admin-workspace-copy .giforest-item-price__field{border-radius:12px}
.giforest-admin-workspace-copy .giforest-item-history-list{display:grid;gap:14px}
.giforest-admin-workspace-copy .giforest-item-history-entry{padding:18px 20px;border-radius:14px;background:#fff}
.giforest-admin-workspace-copy .giforest-item-history-entry strong{font-size:15px;line-height:1.4;margin-bottom:6px}
.giforest-admin-workspace-copy .giforest-item-history-entry span{font-size:12px;line-height:1.5;margin-bottom:10px}
.giforest-admin-workspace-copy .giforest-item-history-entry p{line-height:1.75}
.giforest-admin-workspace-copy .giforest-item-stats-cards{gap:16px}
.giforest-admin-workspace-copy .giforest-item-stats-cards article{padding:30px 18px}
.giforest-admin-workspace-copy .giforest-item-stats-cards article strong{display:block;line-height:1.15;margin-bottom:18px}
.giforest-admin-workspace-copy .giforest-item-stats-cards article span{line-height:1.45}
.giforest-admin-workspace-copy .giforest-country-list-mini div,.giforest-admin-workspace-copy .giforest-bars-placeholder{padding:16px 18px}
.giforest-admin-workspace-copy .giforest-item-price-grid{grid-template-columns:repeat(4,minmax(0,1fr));gap:12px;align-items:end}
.giforest-admin-workspace-copy .giforest-item-price-grid .giforest-item-price{min-width:0}
.giforest-admin-workspace-copy .giforest-item-price-grid .giforest-item-price__field{min-width:0}
.giforest-admin-workspace-copy .giforest-item-price-grid .giforest-item-price__field i{width:36px}
.giforest-admin-workspace-copy .giforest-item-price-grid .giforest-item-price__field input{padding:0 10px!important}
.giforest-admin-workspace-copy .giforest-item-detail-list-row{padding:18px 0;gap:18px}
.giforest-admin-workspace-copy .giforest-item-summary__row{padding:18px 0;gap:20px}
.giforest-admin-workspace-copy .giforest-item-summary__row strong,.giforest-admin-workspace-copy .giforest-item-detail-list-row strong{line-height:1.5}
.giforest-admin-workspace-copy .giforest-item-summary__row .giforest-status-pill{padding:6px 12px;min-width:auto;height:auto;border-radius:999px;font-size:12px;line-height:1.2}
.giforest-admin-workspace-copy .giforest-items-panel,.giforest-admin-workspace-copy .giforest-member-panel,.giforest-admin-workspace-copy .giforest-member-table,.giforest-admin-workspace-copy .giforest-member-table tbody,.giforest-admin-workspace-copy .giforest-member-table tr,.giforest-admin-workspace-copy .giforest-member-table td{overflow:visible!important}
.giforest-admin-workspace-copy .giforest-member-table td.is-end{position:relative;z-index:30}
.giforest-admin-workspace-copy .giforest-item-actions-dropdown{position:relative;display:inline-block;z-index:120}
.giforest-admin-workspace-copy .giforest-item-actions-dropdown[open]{z-index:99999}
.giforest-admin-workspace-copy .giforest-item-actions-dropdown summary{width:36px;height:36px;border-radius:12px;border:1px solid #dcc7cf;background:#fff;color:var(--giforest-bordeaux)}
.giforest-admin-workspace-copy .giforest-item-actions-dropdown__menu{top:auto;bottom:calc(100% + 8px);right:0;left:auto;min-width:200px;padding:6px;background:#fff;border:1px solid #e6dbe0;border-radius:16px;box-shadow:0 20px 44px rgba(89,24,41,.16);overflow:visible}
.giforest-admin-workspace-copy .giforest-item-actions-dropdown__menu a,.giforest-admin-workspace-copy .giforest-item-actions-dropdown__menu button{gap:10px;padding:9px 12px;font-size:14px;line-height:1.3;border-radius:10px;color:#4f2130;font-weight:500;background:transparent}
.giforest-admin-workspace-copy .giforest-item-actions-dropdown__menu a:hover,.giforest-admin-workspace-copy .giforest-item-actions-dropdown__menu button:hover{background:#faf3f5;color:var(--giforest-berry)}
.giforest-admin-workspace-copy .giforest-item-actions-dropdown__menu form{display:block;margin:0}
.giforest-admin-workspace-copy .giforest-item-actions-dropdown__menu button{width:100%;border:0;box-shadow:none}
.giforest-admin-workspace-copy .giforest-item-actions-dropdown__divider{display:none}
.giforest-admin-workspace-copy .giforest-item-actions-dropdown__group{display:block}
.giforest-admin-workspace-copy .giforest-item-actions-dropdown__menu svg{width:16px;height:16px}
.giforest-admin-workspace-copy .giforest-item-actions-dropdown__menu .is-danger button,.giforest-admin-workspace-copy .giforest-item-actions-dropdown__menu .is-danger{color:#b42318}
@media (max-width:1280px){
  .giforest-admin-workspace-copy .giforest-admin-item-form--split{grid-template-columns:minmax(0,1.55fr) 300px}
  .giforest-admin-workspace-copy .giforest-item-detail-layout{grid-template-columns:minmax(0,1.5fr) 300px}
}
@media (max-width:1100px){
  .giforest-admin-workspace-copy .giforest-admin-item-form--split,.giforest-admin-workspace-copy .giforest-item-detail-layout{grid-template-columns:1fr}
  .giforest-admin-workspace-copy .giforest-admin-item-form__side{margin-top:0;max-width:none}
  .giforest-admin-workspace-copy .giforest-item-actions-dropdown__menu{right:0;left:auto;bottom:calc(100% + 8px);min-width:190px}
  .giforest-admin-workspace-copy .giforest-item-price-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media (max-width:680px){
  .giforest-admin-workspace-copy .giforest-admin-item-toolbar,.giforest-admin-workspace-copy .giforest-admin-item-toolbar--tabs{gap:8px;flex-wrap:wrap;overflow:visible}
  .giforest-admin-workspace-copy .giforest-admin-item-toolbar__button{padding:0 16px;height:42px}
  .giforest-admin-workspace-copy .giforest-item-price-grid{grid-template-columns:1fr}
  .giforest-admin-workspace-copy .giforest-item-actions-dropdown__menu{min-width:186px}
}

.giforest-admin-workspace-copy .giforest-admin-item-toolbar,
.giforest-admin-workspace-copy .giforest-admin-item-toolbar--tabs{
  width:100%;
  flex-wrap:wrap!important;
  overflow:visible!important;
  padding-bottom:0!important;
  gap:12px!important;
}
.giforest-admin-workspace-copy .giforest-admin-item-toolbar__button{
  flex:0 0 auto;
  min-width:0!important;
  padding:0 18px!important;
}
.giforest-admin-workspace-copy .giforest-admin-item-form--split{
  grid-template-columns:minmax(0,2fr) minmax(0,1fr)!important;
  gap:24px!important;
  align-items:start!important;
}
.giforest-admin-workspace-copy .giforest-admin-item-form__main{
  min-width:0;
}
.giforest-admin-workspace-copy .giforest-admin-item-form__side{
  width:100%!important;
  max-width:none!important;
  min-width:0!important;
  margin-top:0!important;
  justify-self:stretch!important;
  padding-right:0!important;
}
.giforest-admin-workspace-copy .giforest-item-detail-layout{
  grid-template-columns:minmax(0,2fr) minmax(0,1fr)!important;
  gap:24px!important;
}
.giforest-admin-workspace-copy .giforest-item-detail-layout>.giforest-item-detail-side,
.giforest-admin-workspace-copy .giforest-item-detail-layout>.giforest-admin-item-form__side{
  width:100%!important;
  max-width:none!important;
  min-width:0!important;
  margin-top:0!important;
  justify-self:stretch!important;
}
.giforest-admin-workspace-copy .giforest-item-panel--summary,
.giforest-admin-workspace-copy .giforest-item-side-card{
  padding:22px!important;
}
.giforest-admin-workspace-copy .giforest-item-detail-page--view .giforest-item-detail-side .giforest-item-detail-list-row{
  display:block;
  padding:16px 0!important;
}
.giforest-admin-workspace-copy .giforest-item-detail-page--view .giforest-item-detail-side .giforest-item-detail-list-row span{
  display:block;
  margin:0 0 8px;
  line-height:1.35;
}
.giforest-admin-workspace-copy .giforest-item-detail-page--view .giforest-item-detail-side .giforest-item-detail-list-row strong{
  display:block;
  width:100%;
  text-align:left;
  white-space:normal;
  word-break:break-word;
  line-height:1.55;
}
.giforest-admin-workspace-copy .giforest-item-price-grid{
  grid-template-columns:repeat(4,minmax(0,1fr))!important;
  gap:10px!important;
}
.giforest-admin-workspace-copy .giforest-item-price-grid .giforest-item-price__field i{
  width:30px!important;
}
.giforest-admin-workspace-copy .giforest-item-stats-card,
.giforest-admin-workspace-copy .giforest-item-stats-cards article{
  padding:22px 18px!important;
}
.giforest-admin-workspace-copy .giforest-item-stats-card strong,
.giforest-admin-workspace-copy .giforest-item-stats-cards article strong{
  line-height:1.15;
  margin-bottom:12px!important;
}
.giforest-admin-workspace-copy .giforest-item-history-entry{
  padding:18px 20px!important;
}
.giforest-admin-workspace-copy .giforest-item-actions-dropdown{
  position:relative;
  overflow:visible;
}
.giforest-admin-workspace-copy .giforest-items-table,
.giforest-admin-workspace-copy .giforest-items-table-wrapper,
.giforest-admin-workspace-copy .giforest-item-directory,
.giforest-admin-workspace-copy .giforest-item-directory__table,
.giforest-admin-workspace-copy .giforest-item-directory__body,
.giforest-admin-workspace-copy .giforest-workspace-card,
.giforest-admin-workspace-copy .giforest-item-actions-cell,
.giforest-admin-workspace-copy td,
.giforest-admin-workspace-copy th{
  overflow:visible!important;
}
.giforest-admin-workspace-copy .giforest-item-actions-dropdown__menu{
  top:calc(100% + 8px)!important;
  bottom:auto!important;
  right:0;
  min-width:212px;
  max-height:min(72vh,420px);
  padding:4px 0!important;
  overflow:hidden auto!important;
  border-radius:16px;
}
.giforest-admin-workspace-copy .giforest-item-actions-dropdown__group{
  display:block!important;
}
.giforest-admin-workspace-copy .giforest-item-actions-dropdown__divider{
  display:none!important;
}
.giforest-admin-workspace-copy .giforest-item-actions-dropdown__menu a,
.giforest-admin-workspace-copy .giforest-item-actions-dropdown__menu button{
  display:flex;
  align-items:center;
  gap:10px;
  width:100%;
  min-height:0;
  padding:10px 14px!important;
  margin:0;
  border-radius:0!important;
  line-height:1.3;
}
.giforest-admin-workspace-copy .giforest-item-actions-dropdown__menu a:first-child,
.giforest-admin-workspace-copy .giforest-item-actions-dropdown__group:first-child a:first-child{
  border-top-left-radius:16px!important;
  border-top-right-radius:16px!important;
}
.giforest-admin-workspace-copy .giforest-item-actions-dropdown__menu button:last-child,
.giforest-admin-workspace-copy .giforest-item-actions-dropdown__menu a:last-child,
.giforest-admin-workspace-copy .giforest-item-actions-dropdown__group:last-child button:last-child,
.giforest-admin-workspace-copy .giforest-item-actions-dropdown__group:last-child a:last-child{
  border-bottom-left-radius:16px!important;
  border-bottom-right-radius:16px!important;
}
.giforest-admin-workspace-copy .giforest-item-actions-dropdown__menu a:hover,
.giforest-admin-workspace-copy .giforest-item-actions-dropdown__menu button:hover,
.giforest-admin-workspace-copy .giforest-item-actions-dropdown__menu a:focus,
.giforest-admin-workspace-copy .giforest-item-actions-dropdown__menu button:focus{
  background:#f8eff2!important;
  color:var(--giforest-bordeaux)!important;
}
.giforest-admin-workspace-copy .giforest-item-actions-dropdown__menu svg{
  flex:0 0 16px;
}
@media (max-width:1100px){
  .giforest-admin-workspace-copy .giforest-admin-item-form--split,
  .giforest-admin-workspace-copy .giforest-item-detail-layout{
    grid-template-columns:1fr!important;
  }
  .giforest-admin-workspace-copy .giforest-admin-item-form__side,
  .giforest-admin-workspace-copy .giforest-item-detail-layout>.giforest-item-detail-side,
  .giforest-admin-workspace-copy .giforest-item-detail-layout>.giforest-admin-item-form__side{
    margin-top:0!important;
  }
  .giforest-admin-workspace-copy .giforest-item-price-grid{
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
  }
}
@media (max-width:640px){
  .giforest-admin-workspace-copy .giforest-admin-item-toolbar,
  .giforest-admin-workspace-copy .giforest-admin-item-toolbar--tabs{
    gap:8px!important;
  }
  .giforest-admin-workspace-copy .giforest-admin-item-toolbar__button{
    width:100%;
    justify-content:flex-start;
  }
  .giforest-admin-workspace-copy .giforest-item-price-grid{
    grid-template-columns:1fr!important;
  }
}

.giforest-admin-workspace-copy .giforest-admin-item-form__toolbar{
  grid-column:1 / -1;
  width:100%;
}
.giforest-admin-workspace-copy .giforest-admin-item-form--split{
  grid-template-columns:minmax(0,2fr) minmax(0,1fr)!important;
  gap:24px!important;
  align-items:start!important;
}
.giforest-admin-workspace-copy .giforest-admin-item-form__main,
.giforest-admin-workspace-copy .giforest-item-detail-main{
  min-width:0;
}
.giforest-admin-workspace-copy .giforest-admin-item-form__side,
.giforest-admin-workspace-copy .giforest-item-detail-layout>.giforest-item-detail-side,
.giforest-admin-workspace-copy .giforest-item-detail-layout>.giforest-admin-item-form__side{
  width:100%!important;
  max-width:none!important;
  min-width:0!important;
  justify-self:stretch!important;
  padding-right:0!important;
  margin-right:0!important;
}
.giforest-admin-workspace-copy .giforest-item-detail-layout,
.giforest-admin-workspace-copy .giforest-admin-item-form--split{
  grid-template-columns:minmax(0,2fr) minmax(0,1fr)!important;
}
.giforest-admin-workspace-copy .giforest-item-summary__row{
  display:block!important;
  padding:16px 0!important;
}
.giforest-admin-workspace-copy .giforest-item-summary__row span{
  display:block!important;
  margin:0 0 8px!important;
  padding:0!important;
  color:#86656f!important;
  font-size:14px!important;
  line-height:1.45!important;
}
.giforest-admin-workspace-copy .giforest-item-summary__row strong{
  display:block!important;
  width:100%!important;
  padding:0!important;
  text-align:left!important;
  color:var(--giforest-bordeaux)!important;
  line-height:1.55!important;
  white-space:normal!important;
  word-break:break-word!important;
  overflow-wrap:anywhere;
}
.giforest-admin-workspace-copy .giforest-item-actions-dropdown__menu{
  padding:0!important;
  overflow:hidden!important;
}
.giforest-admin-workspace-copy .giforest-item-actions-dropdown__menu a,
.giforest-admin-workspace-copy .giforest-item-actions-dropdown__menu button{
  border-radius:0!important;
  background-clip:padding-box;
}
.giforest-admin-workspace-copy .giforest-item-actions-dropdown__menu a:first-child,
.giforest-admin-workspace-copy .giforest-item-actions-dropdown__menu button:first-child{
  border-top-left-radius:16px!important;
  border-top-right-radius:16px!important;
}
.giforest-admin-workspace-copy .giforest-item-actions-dropdown__menu a:last-child,
.giforest-admin-workspace-copy .giforest-item-actions-dropdown__menu button:last-child{
  border-bottom-left-radius:16px!important;
  border-bottom-right-radius:16px!important;
}
@media (max-width:1100px){
  .giforest-admin-workspace-copy .giforest-admin-item-form--split,
  .giforest-admin-workspace-copy .giforest-item-detail-layout{
    grid-template-columns:1fr!important;
  }
}


.giforest-admin-workspace-copy .giforest-admin-item-form{
  width:100%!important;
  max-width:none!important;
  margin:0!important;
}
.giforest-admin-workspace-copy .giforest-admin-item-form--split{
  width:100%!important;
  max-width:none!important;
  margin:0!important;
  grid-template-columns:minmax(0,66.666%) minmax(0,33.333%)!important;
  column-gap:24px!important;
  row-gap:24px!important;
  align-items:start!important;
}
.giforest-admin-workspace-copy .giforest-admin-item-form__toolbar{
  grid-column:1 / -1!important;
  width:100%!important;
  max-width:none!important;
  margin:0!important;
  padding:0!important;
}
.giforest-admin-workspace-copy .giforest-admin-item-form__main,
.giforest-admin-workspace-copy .giforest-admin-item-form__side{
  width:100%!important;
  max-width:none!important;
  margin:0!important;
}
.giforest-admin-workspace-copy .giforest-admin-item-form__side{
  justify-self:stretch!important;
  padding:0!important;
}
.giforest-admin-workspace-copy .giforest-admin-item-form__side .giforest-item-panel--summary{
  width:100%!important;
  margin:0!important;
}
@media (max-width:1100px){
  .giforest-admin-workspace-copy .giforest-admin-item-form--split{
    grid-template-columns:1fr!important;
  }
}

/* v0.9.65 responsive admin polish */
.giforest-admin-dashboard,
.giforest-admin-dashboard *{
  box-sizing:border-box;
}

.giforest-admin-dashboard{
  min-width:0;
}

.giforest-admin-dashboard__header h1,
.giforest-item-view__header h1,
.giforest-item-edit__header h1{
  font-size:clamp(22px,2.4vw,30px);
  line-height:1.15;
}

.giforest-admin-dashboard__header p,
.giforest-item-view__header p,
.giforest-item-edit__header p,
.giforest-admin-table td,
.giforest-admin-table th,
.giforest-item-view,
.giforest-item-edit{
  font-size:14px;
  line-height:1.55;
}

.giforest-admin-topbar,
.giforest-admin-topbar__actions,
.giforest-admin-actions{
  flex-wrap:wrap;
}

.giforest-counter-grid.columns-4,
.giforest-admin-grid,
.giforest-item-edit__grid,
.giforest-item-view__grid,
.giforest-item-dashboard__grid{
  gap:14px;
}

.giforest-admin-table-wrap,
.giforest-admin-table,
.giforest-dashboard-table,
.giforest-item-table-wrap,
.giforest-item-content-table{
  overflow:auto;
  -webkit-overflow-scrolling:touch;
}

@media (max-width: 1024px){
  .giforest-counter-grid.columns-4,
  .giforest-admin-grid,
  .giforest-item-edit__grid,
  .giforest-item-view__grid,
  .giforest-item-dashboard__grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media (max-width: 768px){
  .giforest-admin-dashboard{
    padding-right:0;
  }
  .giforest-admin-topbar{
    align-items:flex-start;
    gap:12px;
  }
  .giforest-admin-topbar__actions{
    width:100%;
    justify-content:flex-start;
  }
  .giforest-counter-grid.columns-4,
  .giforest-admin-grid,
  .giforest-item-edit__grid,
  .giforest-item-view__grid,
  .giforest-item-dashboard__grid{
    grid-template-columns:1fr;
  }
  .giforest-admin-panel,
  .giforest-dashboard-section,
  .giforest-item-edit__main,
  .giforest-item-view__main,
  .giforest-item-edit__meta,
  .giforest-item-view__meta{
    padding:14px;
  }
  .giforest-admin-table th,
  .giforest-admin-table td,
  .giforest-dashboard-table th,
  .giforest-dashboard-table td{
    padding:10px 12px;
    font-size:13px;
  }
}

@media (max-width: 480px){
  .giforest-admin-dashboard__header h1,
  .giforest-item-view__header h1,
  .giforest-item-edit__header h1{
    font-size:22px;
  }
  .giforest-admin-topbar__button,
  .giforest-admin-topbar__dropdown summary{
    height:auto;
    min-height:38px;
    padding:8px 12px;
    font-size:12px;
  }
}

.giforest-status-pill.tone-burgundy{background:#8f173d!important;color:#fff!important}
.giforest-admin-workspace-copy .giforest-item-summary__row .giforest-status-pill.tone-burgundy{padding:4px 10px!important;min-width:auto!important;height:28px!important;border-radius:999px!important;font-size:12px!important;line-height:1.1!important;background:#8f173d!important}
.giforest-admin-workspace-copy .giforest-item-panel__field h3{margin:0 0 10px}
.giforest-admin-workspace-copy .giforest-two-col-grid--toggles{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px;align-items:start}
.giforest-admin-workspace-copy .giforest-two-col-grid--toggles .giforest-item-panel__field{padding:0}
.giforest-admin-workspace-copy .giforest-license-rows{display:grid;gap:14px}
.giforest-admin-workspace-copy .giforest-license-row{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px;align-items:end}
.giforest-admin-workspace-copy .giforest-license-row .giforest-item-price{margin:0}
.giforest-admin-workspace-copy .giforest-license-row .giforest-item-price__field{min-height:44px;border-radius:10px}
.giforest-admin-workspace-copy .giforest-binary-toggle{min-width:120px!important;border-color:#dcc7cf!important;background:#fff!important}
.giforest-admin-workspace-copy .giforest-binary-toggle label{min-width:60px!important;height:38px!important;padding:0 14px!important;background:#fff!important;color:#6b2037!important}
.giforest-admin-workspace-copy .giforest-binary-toggle label span{font-size:14px!important;font-weight:600!important;color:inherit!important}
.giforest-admin-workspace-copy .giforest-binary-toggle label.is-active{background:#8f173d!important;color:#fff!important}
.giforest-admin-workspace-copy .giforest-item-panel .giforest-upload-preview{display:grid;grid-template-columns:repeat(auto-fill,minmax(120px,1fr));gap:10px;padding:12px;border:1px solid #eadbe0;border-radius:12px;background:#fff7f9;min-height:78px}
.giforest-admin-workspace-copy .giforest-item-panel .giforest-upload-preview img{width:100%;height:92px;object-fit:cover;border-radius:10px;border:1px solid #eadbe0;background:#fff}
.giforest-admin-workspace-copy .giforest-item-panel .giforest-upload-preview span{display:flex;align-items:center;justify-content:center;min-height:54px;padding:10px 12px;border:1px dashed #d9bcc6;border-radius:10px;color:#8f173d;font-size:13px;background:#fff}
.giforest-admin-workspace-copy .giforest-item-panel .giforest-upload-preview--gallery img{height:84px}
.giforest-admin-workspace-copy .giforest-file-preview{display:flex;align-items:center;min-height:46px;padding:0 14px;border:1px solid #eadbe0;border-radius:10px;background:#fff7f9;color:#6b2037;font-size:13px}
.giforest-admin-workspace-copy .giforest-multi-select-field{display:grid;gap:10px}
.giforest-admin-workspace-copy .giforest-multi-select-field__picker{min-height:46px!important}
.giforest-admin-workspace-copy .giforest-tag-field--multi{padding:8px 10px;min-height:48px}
.giforest-admin-workspace-copy .giforest-tag-field--multi .giforest-tag-chip{padding:6px 12px;border-radius:8px;background:#8f173d;color:#fff}
.giforest-admin-workspace-copy .giforest-admin-item-form select[multiple]{display:none!important}
.giforest-admin-workspace-copy .giforest-item-panel--summary .giforest-item-summary__row .giforest-status-pill,.giforest-admin-workspace-copy .giforest-item-side-card .giforest-status-pill{display:inline-flex;width:auto!important;max-width:max-content!important}
@media (max-width:900px){.giforest-admin-workspace-copy .giforest-two-col-grid--toggles,.giforest-admin-workspace-copy .giforest-license-row{grid-template-columns:1fr}}


.giforest-admin-workspace-copy .giforest-two-col-grid--toggles .giforest-item-panel__field{min-width:0}
.giforest-admin-workspace-copy .giforest-binary-toggle{display:inline-grid!important;grid-template-columns:repeat(2,minmax(72px,1fr))!important;min-width:128px!important;max-width:140px!important}
.giforest-admin-workspace-copy .giforest-binary-toggle label{min-width:0!important;padding:0 16px!important;white-space:nowrap!important}
.giforest-admin-workspace-copy .giforest-binary-toggle label span{white-space:nowrap!important;line-height:1!important;word-break:normal!important}
.giforest-admin-workspace-copy .giforest-license-rows{gap:18px!important}
.giforest-admin-workspace-copy .giforest-license-row{grid-template-columns:repeat(3,minmax(180px,1fr))!important;gap:18px!important;align-items:start!important}
.giforest-admin-workspace-copy .giforest-item-price{gap:6px!important;min-width:0!important}
.giforest-admin-workspace-copy .giforest-item-price > span:first-child{font-size:14px!important;line-height:1.35!important;min-height:auto!important}
.giforest-admin-workspace-copy .giforest-item-price__field{display:grid!important;grid-template-columns:40px minmax(0,1fr)!important;align-items:stretch!important;min-height:50px!important;padding:0!important;overflow:hidden!important}
.giforest-admin-workspace-copy .giforest-item-price__field i{display:flex!important;align-items:center!important;justify-content:center!important;width:40px!important;height:100%!important;margin:0!important;padding:0!important;border-right:1px solid #d8c5cb!important;background:#fff!important;line-height:1!important}
.giforest-admin-workspace-copy .giforest-item-price__field input{display:block!important;width:100%!important;height:48px!important;min-height:48px!important;margin:0!important;padding:0 12px!important;border:0!important;border-radius:0!important;box-shadow:none!important;line-height:48px!important;background:#fff!important}
.giforest-admin-workspace-copy .giforest-item-price__field input::-webkit-outer-spin-button,
.giforest-admin-workspace-copy .giforest-item-price__field input::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}
.giforest-admin-workspace-copy .giforest-item-price__field input[type=number]{-moz-appearance:textfield}
.giforest-admin-workspace-copy .giforest-item-detail-page .giforest-status-pill,
.giforest-admin-workspace-copy .giforest-item-detail-side .giforest-status-pill{min-width:auto!important;height:28px!important;padding:0 10px!important;border-radius:999px!important;font-size:12px!important;background:#8f173d!important;color:#fff!important}
.giforest-admin-workspace-copy .giforest-status-pill.tone-green,
.giforest-admin-workspace-copy .giforest-status-pill.tone-violet,
.giforest-admin-workspace-copy .giforest-status-pill.tone-blue,
.giforest-admin-workspace-copy .giforest-status-pill.tone-orange,
.giforest-admin-workspace-copy .giforest-status-pill.tone-red,
.giforest-admin-workspace-copy .giforest-status-pill.tone-slate{background:#8f173d!important;color:#fff!important}
@media (max-width:1100px){
  .giforest-admin-workspace-copy .giforest-license-row{grid-template-columns:repeat(3,minmax(0,1fr))!important;gap:14px!important}
}
@media (max-width:900px){
  .giforest-admin-workspace-copy .giforest-license-row{grid-template-columns:1fr!important}
  .giforest-admin-workspace-copy .giforest-binary-toggle{max-width:none!important;width:100%!important}
}

/* v0.9.74 targeted admin edit fixes */
.giforest-admin-workspace-copy .giforest-two-col-grid--toggles{
  align-items:end!important;
}
.giforest-admin-workspace-copy .giforest-two-col-grid--toggles .giforest-item-panel__field{
  display:flex!important;
  flex-direction:column!important;
  justify-content:flex-end!important;
}
.giforest-admin-workspace-copy .giforest-item-toggle-row{
  display:block!important;
  margin-top:10px!important;
}
.giforest-admin-workspace-copy .giforest-binary-toggle,
.giforest-admin-workspace-copy .giforest-item-panel .giforest-binary-toggle{
  display:inline-grid!important;
  grid-template-columns:repeat(2,minmax(72px,1fr))!important;
  align-items:stretch!important;
  border:1px solid #d8c5cb!important;
  border-radius:10px!important;
  overflow:hidden!important;
  background:#fff!important;
  box-shadow:none!important;
  min-width:146px!important;
  max-width:146px!important;
  width:146px!important;
}
.giforest-admin-workspace-copy .giforest-binary-toggle label,
.giforest-admin-workspace-copy .giforest-item-panel .giforest-binary-toggle label{
  display:flex!important;
  flex-direction:row!important;
  gap:0!important;
  align-items:center!important;
  justify-content:center!important;
  min-width:0!important;
  width:100%!important;
  height:38px!important;
  margin:0!important;
  padding:0 14px!important;
  border:0!important;
  border-radius:0!important;
  box-shadow:none!important;
  background:#fff!important;
  color:#6b2037!important;
  line-height:1!important;
  white-space:nowrap!important;
  position:relative!important;
}
.giforest-admin-workspace-copy .giforest-binary-toggle label + label{
  border-left:1px solid #d8c5cb!important;
}
.giforest-admin-workspace-copy .giforest-binary-toggle label span,
.giforest-admin-workspace-copy .giforest-item-panel .giforest-binary-toggle label span{
  display:flex!important;
  flex-direction:row!important;
  align-items:center!important;
  justify-content:center!important;
  width:auto!important;
  min-width:0!important;
  height:auto!important;
  margin:0!important;
  padding:0!important;
  font-size:14px!important;
  font-weight:700!important;
  line-height:1!important;
  white-space:nowrap!important;
  word-break:normal!important;
}
.giforest-admin-workspace-copy .giforest-binary-toggle label.is-active,
.giforest-admin-workspace-copy .giforest-item-panel .giforest-binary-toggle label.is-active{
  background:#8f173d!important;
  color:#fff!important;
}
.giforest-admin-workspace-copy .giforest-binary-toggle input{
  display:none!important;
}
.giforest-admin-workspace-copy .giforest-license-rows{
  display:grid!important;
  gap:18px!important;
}
.giforest-admin-workspace-copy .giforest-license-row{
  display:grid!important;
  grid-template-columns:repeat(3,minmax(190px,1fr))!important;
  gap:20px!important;
  align-items:end!important;
}
.giforest-admin-workspace-copy .giforest-license-row .giforest-item-price{
  display:flex!important;
  flex-direction:column!important;
  gap:6px!important;
  margin:0!important;
  min-width:0!important;
}
.giforest-admin-workspace-copy .giforest-license-row .giforest-item-price > span:first-child{
  display:block!important;
  min-height:auto!important;
  margin:0!important;
  padding:0!important;
  font-size:13px!important;
  font-weight:700!important;
  line-height:1.2!important;
  white-space:nowrap!important;
}
.giforest-admin-workspace-copy .giforest-license-row .giforest-item-price__field{
  display:grid!important;
  grid-template-columns:40px minmax(0,1fr)!important;
  min-height:46px!important;
  height:46px!important;
  padding:0!important;
  border:1px solid #d8c5cb!important;
  border-radius:10px!important;
  overflow:hidden!important;
  background:#fff!important;
}
.giforest-admin-workspace-copy .giforest-license-row .giforest-item-price__field i{
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  width:40px!important;
  height:100%!important;
  margin:0!important;
  padding:0!important;
  border-right:1px solid #d8c5cb!important;
  background:#fff!important;
  color:#6b2037!important;
  font-style:normal!important;
  line-height:1!important;
}
.giforest-admin-workspace-copy .giforest-license-row .giforest-item-price__field input{
  display:block!important;
  width:100%!important;
  min-width:0!important;
  height:44px!important;
  min-height:44px!important;
  margin:0!important;
  padding:0 12px!important;
  border:0!important;
  border-radius:0!important;
  box-shadow:none!important;
  background:#fff!important;
  color:#6b2037!important;
  line-height:44px!important;
}
.giforest-admin-workspace-copy .giforest-item-detail-page .giforest-status-pill,
.giforest-admin-workspace-copy .giforest-item-detail-side .giforest-status-pill,
.giforest-admin-workspace-copy .giforest-item-panel--summary .giforest-status-pill{
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  width:auto!important;
  min-width:auto!important;
  max-width:max-content!important;
  height:26px!important;
  padding:0 10px!important;
  border-radius:999px!important;
  background:#8f173d!important;
  color:#fff!important;
  font-size:12px!important;
  font-weight:700!important;
  line-height:1!important;
  box-shadow:none!important;
}
@media (max-width: 980px){
  .giforest-admin-workspace-copy .giforest-license-row{
    grid-template-columns:1fr!important;
    gap:14px!important;
  }
}


.giforest-admin-workspace-copy .giforest-item-panel .giforest-upload-preview--gallery{display:grid!important;grid-template-columns:repeat(4,minmax(0,1fr))!important;gap:12px!important;align-items:start!important}
.giforest-admin-workspace-copy .giforest-item-panel .giforest-upload-preview--gallery img{width:100%!important;height:90px!important;object-fit:cover!important;display:block!important}
.giforest-admin-workspace-copy .giforest-item-panel .giforest-upload-preview--gallery span{grid-column:1/-1!important}
@media (max-width:900px){.giforest-admin-workspace-copy .giforest-item-panel .giforest-upload-preview--gallery{grid-template-columns:repeat(2,minmax(0,1fr))!important}}


.giforest-admin-workspace-copy .giforest-item-panel #giforest-screenshot-preview.giforest-upload-preview--gallery{
    width:100%!important;
    height:auto!important;
    min-height:0!important;
    margin:12px 0 0!important;
    display:grid!important;
    grid-template-columns:repeat(4,minmax(0,1fr))!important;
    gap:12px!important;
    align-items:start!important;
}
.giforest-admin-workspace-copy .giforest-item-panel #giforest-screenshot-preview.giforest-upload-preview--gallery img{
    width:100%!important;
    height:96px!important;
    object-fit:cover!important;
    display:block!important;
}
.giforest-admin-workspace-copy .giforest-item-panel #giforest-screenshot-preview.giforest-upload-preview--gallery span{
    grid-column:1/-1!important;
}
@media (max-width:900px){
    .giforest-admin-workspace-copy .giforest-item-panel #giforest-screenshot-preview.giforest-upload-preview--gallery{
        grid-template-columns:repeat(2,minmax(0,1fr))!important;
    }
}
@media (max-width:560px){
    .giforest-admin-workspace-copy .giforest-item-panel #giforest-screenshot-preview.giforest-upload-preview--gallery{
        grid-template-columns:1fr!important;
    }
}


/* v0.9.80 safe reapply */
.giforest-admin-workspace-copy .giforest-admin-item-form select[name="category_slug"]{opacity:1!important;background:#fff!important;color:#4b1327!important;cursor:pointer!important}
.giforest-admin-workspace-copy .giforest-item-toggle-row--inline{display:flex;align-items:center}

.giforest-admin-workspace-copy .giforest-item-actions-dropdown{overflow:visible!important;z-index:300!important}
.giforest-admin-workspace-copy .giforest-item-actions-dropdown[open]{z-index:999999!important}
.giforest-admin-workspace-copy .giforest-item-actions-dropdown__menu{top:auto!important;bottom:calc(100% + 8px)!important;right:0!important;left:auto!important;overflow:hidden auto!important;max-height:min(72vh,420px)!important}


/* v0.9.82 admin minimal enhancement overrides */
.giforest-role-nav-inline-footer{
  display:grid;
  gap:4px;
  margin-top:6px;
  padding-top:6px;
  border-top:1px solid rgba(255,255,255,.08);
}
.giforest-role-sidebar__footer{display:none!important}
.giforest-admin-workspace-copy .giforest-item-actions-dropdown__menu{
  padding:4px!important;
  min-width:188px!important;
}
.giforest-admin-workspace-copy .giforest-item-actions-dropdown__menu a,
.giforest-admin-workspace-copy .giforest-item-actions-dropdown__menu button{
  padding:7px 10px!important;
  gap:8px!important;
  min-height:34px!important;
  line-height:1.2!important;
}
.giforest-admin-workspace-copy .giforest-admin-item-toolbar{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}
.giforest-admin-workspace-copy .giforest-admin-item-toolbar__button{
  min-width:0!important;
}
.giforest-admin-workspace-copy .giforest-item-panel .giforest-upload-preview--gallery,
.giforest-admin-workspace-copy .giforest-item-panel #giforest-screenshot-preview.giforest-upload-preview--gallery{
  grid-template-columns:repeat(4,minmax(0,1fr))!important;
  gap:12px!important;
}
.giforest-admin-workspace-copy .giforest-item-panel #giforest-screenshot-preview.giforest-upload-preview--gallery img,
.giforest-admin-workspace-copy .giforest-item-panel .giforest-upload-preview--gallery img{
  width:100%!important;
  height:104px!important;
  object-fit:cover!important;
  border-radius:12px!important;
}
.giforest-admin-workspace-copy .giforest-item-price__field{
  min-height:44px!important;
}
.giforest-admin-workspace-copy .giforest-item-panel .giforest-item-price__field input{
  min-height:42px!important;
}
.giforest-admin-workspace-copy .giforest-admin-item-form__main .giforest-two-col-grid{
  grid-template-columns:repeat(2,minmax(0,1fr));
}
.giforest-admin-workspace-copy .giforest-item-doc-actions{
  margin-top:16px;
  display:flex;
  justify-content:flex-start;
}
@media (max-width:900px){
  .giforest-admin-workspace-copy .giforest-item-panel .giforest-upload-preview--gallery,
  .giforest-admin-workspace-copy .giforest-item-panel #giforest-screenshot-preview.giforest-upload-preview--gallery{grid-template-columns:repeat(2,minmax(0,1fr))!important}
  .giforest-admin-workspace-copy .giforest-admin-item-form__main .giforest-two-col-grid{grid-template-columns:1fr}
}

/* v0.9.83 compact admin dropdown */
.giforest-admin-workspace-copy .giforest-item-actions-dropdown,
.giforest-admin-workspace-copy .giforest-item-actions-cell,
.giforest-admin-workspace-copy .giforest-item-actions{
  overflow:visible!important;
}
.giforest-admin-workspace-copy .giforest-item-actions-dropdown__menu{
  top:auto!important;
  bottom:calc(100% + 6px)!important;
  right:0!important;
  left:auto!important;
  min-width:196px!important;
  max-height:none!important;
  overflow:visible!important;
  padding:4px 0!important;
  border-radius:14px!important;
}
.giforest-admin-workspace-copy .giforest-item-actions-dropdown__menu a,
.giforest-admin-workspace-copy .giforest-item-actions-dropdown__menu button{
  display:flex!important;
  align-items:center!important;
  gap:8px!important;
  width:100%!important;
  min-height:0!important;
  padding:7px 12px!important;
  margin:0!important;
  background:transparent!important;
  border:0!important;
  border-radius:0!important;
  box-shadow:none!important;
  line-height:1.1!important;
  font-size:14px!important;
  font-weight:500!important;
}
.giforest-admin-workspace-copy .giforest-item-actions-dropdown__menu a:hover,
.giforest-admin-workspace-copy .giforest-item-actions-dropdown__menu button:hover,
.giforest-admin-workspace-copy .giforest-item-actions-dropdown__menu a:focus,
.giforest-admin-workspace-copy .giforest-item-actions-dropdown__menu button:focus{
  background:#f8eff2!important;
  color:var(--giforest-bordeaux)!important;
}
.giforest-admin-workspace-copy .giforest-item-actions-dropdown__menu svg{
  width:14px!important;
  height:14px!important;
  flex:0 0 14px!important;
}
.giforest-admin-workspace-copy .giforest-item-actions-dropdown__menu form{
  margin:0!important;
}
.giforest-admin-workspace-copy .giforest-item-actions-dropdown__divider{
  display:none!important;
}
