  .audio-patch {
    display: flex;
    flex-direction: column;
    background: #f5f5f5;
    color: #000;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.08);
    max-width: 500px;
    margin: 20px auto;
    position: relative;
    border: 1px solid #f44360;
  }
  
  .audio-left-line {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: #f44360;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
  }
  
  .audio-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-left: 12px;
  }
  
  .play-button {
    background-color: #f44360;
    color: white;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 16px;
    cursor: pointer;
  }
  
  .waveform {
    display: flex;
    gap: 2px;
    align-items: flex-end;
    height: 40px;
    flex-grow: 1;
    padding: 0 16px;
  }
  
  .waveform .bar {
    width: 3px;
    background-color: #f44360;
    border-radius: 2px;
    transition: height 0.2s ease;
  }
  
  .audio-meta {
    display: flex;
    gap: 8px;
    align-items: center;
    font-weight: bold;
    color: #ddd;
  }
  
  .see-mends-button {
    margin-top: 12px;
    background: none;
    border: none;
    color: #24477f;
    text-align: center;
    font-weight: 600;
    cursor: pointer;
    font-size: 16px;
  }
  
