.agp-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    font-family: inherit;
    max-width: 100%;
}
.agp-title {
    font-size: 24px;
    margin: 0;
    cursor: pointer;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}
.agp-title:hover, .agp-title.active-variant { color: #FE7314; }
.agp-badge {
    background: #e0e7ff;
    color: #4338ca;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 600;
    text-transform: uppercase;
    vertical-align: middle;
}
.agp-chart {
    display: flex;
    justify-content: center;
    width: 100%;
    overflow: visible;
}
.agp-chart svg { max-width: 100%; height: auto; }
.agp-legend {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}
.agp-legend-item {
    display: flex;
    align-items: center;
    font-size: 12px;
    color: #555;
    gap: 4px;
}
.agp-legend-item span { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.agp-producers-wrap {
    margin-top: 10px;
    text-align: center;
    width: 100%;
    border-top: 1px solid #eee;
    padding-top: 20px;
}
.agp-producers-wrap h3 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    margin-bottom: 15px;
}
.agp-producers { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.agp-producer {
    padding: 8px 16px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
    user-select: none;
}
.agp-producer:hover { background: #f9f9f9; transform: translateY(-1px); box-shadow: 0 2px 5px rgba(0,0,0,0.05); }
.agp-producer.active {
    background: #FE7314;
    color: white;
    border-color: #FE7314;
    box-shadow: 0 4px 6px -1px rgba(109, 40, 217, 0.3);
}