  .progress-bar-container {
    width: 100%;
    background-color: #f3f4f6;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
  }

  .progress-bar {
    height: 8px;
    background-color: #3b82f6;
    width: 0;
    transition: width 0.2s ease;
  }

  @media screen and (max-width: 640px) {
    .media-container img {
      max-width: 100%;
      height: auto;
    }
    .media-container canvas {
      width: 100%;
      height: auto;
    }
  }

  @media screen and (min-width: 641px) and (max-width: 1024px) {
    .media-container img {
      max-width: 100%;
      height: auto;
    }
    .media-container canvas {
      width: 100%;
      height: auto;
    }
  }

  @media screen and (min-width: 1025px) {
    .media-container img {
      max-width: 100%;
      height: auto;
    }
    .media-container canvas {
      width: 100%;
      height: auto;
    }
  }
