.circular-loading-container {
    position: relative;
    width: 75px; /* Adjust the size as needed */
    height: 75px; /* Adjust the size as needed */
    margin: auto;
  }
  
  .circular-loading {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .percentage {
    font-size: 16px;
    color: black; /* Adjust the color as needed */
    font-weight: bold;
    width: 90%;
    aspect-ratio: 1 / 1;
    display: grid;
    place-content: center;
    background: #f1f1f1;
    border-radius: 100%;
    letter-spacing: 0.1rem;
  }
  