
  .risk-meter-container {
    max-width: 400px;
    width: 100%;
    text-align: center;
  }

  .meter-wrapper {
    position: relative;
    width: 320px;
    height: 160px;
    margin: 0 auto;
  }

  .half-circle {
    width: 100%;
    height: 100%;
  }

  .needle {
    position: absolute;
    bottom: 4px;
    left: 50%;
    border-radius: 2px;
    width: 4px;
    height: 100px;
    background-color: black;
    transform-origin: bottom center;
    transform: translateX(-50%) rotate(-90deg);
  }

  .center-dot {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 10px;
    height: 10px;
    background-color: black;
    border-radius: 50%;
    transform: translateX(-50%);
  }

  .risk-label {
    margin-top: 20px;
    font-size: 1rem;
    color: black;
    opacity: 0; /* Initially hidden */
    transition: opacity 0.5s ease-in-out;
  }

  .risk-label.show {
    opacity: 1; /* Fully visible */
  }

  .risk-level {
    font-weight: bold;
    color: black;
    text-decoration: underline;
  }
