/**
 * Pie Chart Styling (D3.js)
 */

.pie-chart-container {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.pie-chart-container svg {
    overflow: visible;
}

.pie-chart-container text {
    user-select: none;
    pointer-events: none;
}

/* Responsive sizing for pie charts in grid context */
@media (max-width: 768px) {
    .pie-chart-container {
        margin: 0.5rem auto;
    }
}

/* Legend text improvements */
.pie-chart-container .legend text {
    font-family: inherit;
}

/* Hover effects on pie slices */
.pie-chart-container path {
    transition: opacity 0.2s ease, stroke-width 0.2s ease;
}
