.transparency-screening {
      font-family: 'Inter', sans-serif;
      display: flex;
      justify-content: center;
      align-items: center;
      /* Light grey background */
      margin: 0;
      overflow: hidden;
      /* Prevent scroll for elements outside viewport */


    .chart-and-legend-container {
      display: flex;
      flex-direction: row;
      /* Chart and legend side-by-side */
      align-items: center;
      gap: 40px;
      /* Space between chart and legend */
      padding: 20px;
      flex-wrap: wrap;
      /* Allow wrapping on smaller screens */
      justify-content: center;
      /* Center content when wrapped */
    }

    .chart-container {
      position: relative;
      width: 240px;
      /* Diameter of the entire donut */
      height: 240px;
      /* Full circle height */
      border-radius: 50%;
      /* Make it a circle */
      display: flex;
      justify-content: center;
      align-items: center;
      flex-shrink: 0;
    }

    /* Inner cut-out for the donut effect */
    .inner-donut-cutout {
      position: absolute;
      width: 140px;
      /* Diameter of the inner hole */
      height: 140px;
      background-color: #f0f2f5;
      /* Match body background */
      border-radius: 50%;
      z-index: 9;
      /* Higher than segments */
    }

    /* Legend Styling */
    .chart-legend-container {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      padding: 10px;
    }

    .legend-item {
      display: flex;
      align-items: center;
      margin-bottom: 8px;
      font-size: 18px;
      color: #333;
    }

    .legend-dot {
      width: 16px;
      height: 16px;
      border-radius: 50%;
      margin-right: 10px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .legend-text {
      margin-right: 8px;
      /* Space between text and percentage */
    }

    .legend-percentage {
      font-weight: bold;
      color: #555;
      /* Slightly darker color for percentage */
    }

    .dot-yes {
      background-color: #EF767A;
    }

    .dot-nearly-yes {
      background-color: #F7A86B;
    }

    .dot-nearly-no {
      background-color: #FDD87D;
    }

    .dot-no {
      background-color: #87D37C;
    }

    .inner-donut-percentage {
      padding: 40px;
      font-size: 25px;
      font-weight: bold;
      text-align: center;
    }
    .inner-donut-title {
      font-size: 9px;
      font-weight: bold;
      text-align: center;
    }


    /* Responsive adjustments */
    @media (max-width: 768px) {
      .chart-and-legend-container {
        flex-direction: column;
        /* Stack chart and legend vertically */
        gap: 20px;
      }

      .chart-container {
        width: 300px;
        height: 300px;
      }

      .inner-donut-cutout {
        width: 180px;
        /* 60% of 300px */
        height: 180px;
      }

      .legend-item {
        font-size: 0.9rem;
        margin-bottom: 6px;
      }

      .legend-dot {
        width: 14px;
        height: 14px;
      }
    }


}
