body {
    margin: 0;
    overflow: hidden;
    font-family: Arial, sans-serif;
    position: relative;
}
/* Pie Chart Container Styling */
#pieChartContainer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none; /* Hidden initially */
    background-color: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
    z-index: 10; /* Ensure it appears above the p5.js canvas */
}
/* Legend Styling */
#legend {
    margin-top: 20px;
    text-align: left;
}
.legend-item {
    margin-bottom: 5px;
}
.legend-color-box {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-right: 8px;
    vertical-align: middle;
}