.pie-chart-section {
  text-align: center;
  max-width: 600px;
  margin: 40px auto;
  font-family: Arial, sans-serif;
}

.pie-wrapper {
  position: relative;
  width: 200px;
  margin: 0 auto;
}

.pie {
  width: 100%;
  transform: rotate(-90deg);
}

.slice {
  fill: none;
  stroke-width: 32;
  stroke-dasharray: 60 40;
  stroke-dashoffset: 0;
}

.first-party {
  stroke: #4caf50;
}

.third-party {
  stroke: #2196f3;
  stroke-dashoffset: -60;
}

.center-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: bold;
  font-size: 14px;
  color: #333;
}

.legend {
  margin-top: 20px;
  text-align: left;
}

.legend-item {
  position: relative;
  margin: 10px 0;
  padding-left: 24px;
  font-size: 14px;
  color: #333;
  cursor: default;
}

.dot {
  position: absolute;
  left: 0;
  top: 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.first {
  background-color: #4caf50;
}

.third {
  background-color: #2196f3;
}

/* Tooltip Styling */
.tooltip {
  display: inline-block;
  margin-left: 10px;
  background: #333;
  color: #fff;
  padding: 3px 6px;
  border-radius: 4px;
  font-size: 11px;
  opacity: 0;
  transition: opacity 0.3s ease;
  position: relative;
  top: -1px;
}

.legend-item:hover .tooltip {
  opacity: 1;
}

/* Responsive */
@media (max-width: 600px) {
  .pie-wrapper {
    width: 160px;
  }

  .center-label {
    font-size: 12px;
  }

  .legend-item {
    font-size: 13px;
  }
}