.gmore-native-pie-report {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 270px;
    gap: 24px;
    width: 100%;
    box-sizing: border-box;
    direction: ltr;
    align-items: stretch;
    font-family: inherit;
}

.gmore-native-pie-report * {
    box-sizing: border-box;
}

.gmore-native-pie-report .gmore-native-pie-chart-box {
    grid-column: 1;
    direction: rtl;
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 18px;
    padding: 22px;
    min-height: 470px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
}

.gmore-native-pie-report .gmore-native-pie-tabs {
    grid-column: 2;
    direction: rtl;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 18px;
    padding: 14px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
}

.gmore-native-pie-report .gmore-native-pie-header {
    margin-bottom: 20px;
    text-align: right;
}

.gmore-native-pie-report .gmore-native-pie-title {
    margin: 0 0 8px 0;
    font-size: 20px;
    font-weight: 800;
    color: #222;
    line-height: 1.7;
}

.gmore-native-pie-report .gmore-native-pie-desc {
    margin: 0;
    font-size: 14px;
    color: #777;
    line-height: 1.8;
}

.gmore-native-pie-report .gmore-native-pie-main {
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 24px;
    align-items: center;
}

.gmore-native-pie-report .gmore-native-pie-svg-wrap {
    position: relative;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
}

.gmore-native-pie-report .gmore-native-pie-svg {
    display: block;
    width: 100%;
    height: auto;
    overflow: visible;
}

.gmore-native-pie-report .gmore-native-pie-slice {
    cursor: pointer;
    transition: transform 0.18s ease, opacity 0.18s ease;
    transform-origin: 120px 120px;
}

.gmore-native-pie-report .gmore-native-pie-slice:hover {
    transform: scale(1.025);
    opacity: 0.9;
}

.gmore-native-pie-report .gmore-native-pie-center {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 118px;
    height: 118px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    pointer-events: none;
}

.gmore-native-pie-report .gmore-native-pie-total-number {
    font-size: 24px;
    font-weight: 900;
    color: #4285F4;
    line-height: 1.2;
}

.gmore-native-pie-report .gmore-native-pie-total-label {
    margin-top: 5px;
    font-size: 12px;
    font-weight: 700;
    color: #777;
}

.gmore-native-pie-report .gmore-native-pie-legend {
    display: flex;
    flex-direction: column;
    gap: 9px;
    max-height: 360px;
    overflow: auto;
    padding-left: 6px;
}

.gmore-native-pie-report .gmore-native-pie-legend-item {
    display: grid;
    grid-template-columns: 14px minmax(0, 1fr) auto;
    gap: 9px;
    align-items: center;
    padding: 9px 10px;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    background: #fbfbfb;
}

.gmore-native-pie-report .gmore-native-pie-legend-item-score {
    grid-template-columns: 64px minmax(0, 1fr) auto;
    align-items: center;
    padding-top: 8px;
    padding-bottom: 8px;
}

.gmore-native-pie-report .gmore-native-pie-legend-marker {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gmore-native-pie-report .gmore-native-pie-legend-marker-score {
    align-self: center;
    min-width: 64px;
    flex-direction: column;
    gap: 3px;
}

.gmore-native-pie-report .gmore-native-pie-legend-color {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.gmore-native-pie-report .gmore-native-pie-legend-item-score .gmore-native-pie-legend-color {
    width: 13px;
    height: 13px;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.95), 0 2px 7px rgba(245, 158, 11, 0.18);
}

.gmore-native-pie-report .gmore-native-pie-legend-stars {
    display: block;
    width: 64px;
    min-height: 13px;
    direction: ltr;
    font-size: 11px;
    line-height: 1;
    letter-spacing: -1px;
    text-align: center;
    white-space: nowrap;
}

.gmore-native-pie-report .gmore-native-pie-legend-label {
    min-width: 0;
    font-size: 13px;
    font-weight: 700;
    color: #333;
    line-height: 1.6;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.gmore-native-pie-report .gmore-native-pie-legend-value {
    font-size: 12px;
    font-weight: 800;
    color: #666;
    white-space: nowrap;
}

.gmore-native-pie-report .gmore-native-pie-tab {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    border: 1px solid #e8e8e8;
    background: #f8f9fb;
    color: #333;
    border-radius: 12px;
    padding: 12px 13px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.7;
    text-align: right;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.gmore-native-pie-report .gmore-native-pie-tab-icon {
    width: 22px;
    height: 22px;
    min-width: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: currentColor;
}

.gmore-native-pie-report .gmore-native-pie-fa-icon {
    width: 18px;
    height: 18px;
    display: block;
    fill: currentColor;
}

.gmore-native-pie-report .gmore-native-pie-tab-text {
    flex: 1;
    min-width: 0;
}

.gmore-native-pie-report .gmore-native-pie-tab:hover {
    border-color: #4285F4;
    background: #eef5ff;
    color: #4285F4;
}

.gmore-native-pie-report .gmore-native-pie-tab.active {
    background: #4285F4;
    border-color: #4285F4;
    color: #ffffff;
    box-shadow: 0 8px 18px rgba(66, 133, 244, 0.25);
}

.gmore-native-pie-report .gmore-native-pie-empty {
    display: none;
    margin-top: 20px;
    padding: 18px;
    border-radius: 14px;
    background: #fff8e1;
    color: #7a5a00;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
}

.gmore-native-pie-report.gmore-native-pie-is-empty .gmore-native-pie-main {
    display: none;
}

.gmore-native-pie-report.gmore-native-pie-is-empty .gmore-native-pie-empty {
    display: block;
}

@media (max-width: 960px) {
    .gmore-native-pie-report .gmore-native-pie-main {
        grid-template-columns: 1fr;
    }

    .gmore-native-pie-report .gmore-native-pie-legend {
        max-height: 260px;
    }
}

@media (max-width: 768px) {
    .gmore-native-pie-report {
        grid-template-columns: 1fr;
    }

    .gmore-native-pie-report .gmore-native-pie-tabs {
        grid-column: 1;
        order: 1;
    }

    .gmore-native-pie-report .gmore-native-pie-chart-box {
        grid-column: 1;
        order: 2;
    }
}

.gmore-native-pie-data{display:none!important}
@media (prefers-reduced-motion:reduce){.gmore-native-pie-report .gmore-native-pie-slice,.gmore-native-pie-report .gmore-native-pie-tab{transition:none}}
