.audio-player {
    background-color: #e0ffe0; /* light green */
    padding: 16px;
    border-radius: 16px;
    box-shadow: 0 0 8px rgba(0,0,0,0.1);
    font-family: sans-serif;
  }
  
  .audio-player .waveform {
    display: flex;
    gap: 4px;
    align-items: flex-end;
    height: 40px;
    margin: 8px 0;
  }
  
  .audio-player .wave-bar {
    width: 4px;
    background-color: #4CAF50;
  }
  
  .audio-player .meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #444;
    margin-bottom: 8px;
  }
  
  .audio-player .play-button {
    background: #4CAF50;
    border: none;
    color: white;
    border-radius: 100%;
    width: 32px;
    height: 32px;
    font-size: 16px;
    cursor: pointer;
  }
  
  .audio-player .see-mends {
    font-size: 12px;
    text-align: right;
    display: block;
    color: #2b7cff;
    text-decoration: none;
  }
  .audio-player .see-mends:hover {
    text-decoration: underline;
  }
  
