/* app/assets/stylesheets/_action_buttons.css */

.action-buttons {
    display: flex;
    justify-content: flex-start;
    gap: 0.5rem;
    margin-bottom: 1rem;
  }
  
  .action-buttons button {
    font-size: 0.875rem;
    padding: 0.25rem 1rem;
    border-radius: 6px;
    border: 1px solid #555;
    background-color: #f5f5f5;
    color: #000;
    cursor: pointer;
    transition: background-color 0.2s ease;
  }
  
  .action-buttons button:hover {
    background-color: #e0e0e0;
  }
  
  .action-buttons .edit-profile {
    background-color: #008000;
    color: white;
    border: none;
  }
  
  .action-buttons .edit-profile:hover {
    background-color: #006400;
  }
  
  .action-buttons .icon-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
  }
  .profile-audio-container {
    display: flex;
    align-items: center;
    background-color: #f5f5f5;
    color: #000;
    padding: 6px 12px;
    border-radius: 12px;
    margin-top: 8px;
    max-width: 100%;
  }
  
  .play-button {
    background-color: #f5f5f5;
    color: #000;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    cursor: pointer;
  }
  
  .waveform-track {
    background-color: rgba(255, 255, 255, 0.3);
    height: 10px;
    width: 100%;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
  }
  
  .waveform-progress {
    background-color: #f44360;
    height: 100%;
    width: 40%; /* simulate a progress bar */
    transition: width 0.2s ease-in-out;
  }
  
