/* Progress Bar Overlay Styles for SnapExpense */

/* Overlay container */
.progress-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #2F2F2F; /* Match SnapExpense dark background */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  }
  
  .progress-overlay.show {
    opacity: 1;
    visibility: visible;
  }
  
  /* Container inside overlay */
  .progress-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }
  
  /* Canvas styling */
  canvas {
    border-radius: 50%;
    display: block;
    max-width: 80vw;
    max-height: 80vh;
    aspect-ratio: 1 / 1;
    width: min(80vw, 80vh, 250px);
  }
  
  /* Progress message text */
  .progress-message {
    color: #E5E7EB;
    font-size: 1.4em;
    margin-top: 30px;
    text-align: center;
  }