.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{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}}
