/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Body styling */
  body {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    color: #333;
  }
  
  /* Music Player Container */
  .music-player {
    background-color: #ffffff;
    padding: 30px;
    width: 350px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
  }
  
  .music-player:hover {
    transform: scale(1.02);
  }
  
  /* Cover Art */
  .cover-art {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
  }
  
  /* Song Title */
  .song-title {
    font-size: 1.4em;
    font-weight: bold;
    margin-top: 10px;
  }
  
  /* Song Author */
  .song-author {
    font-size: 1em;
    color: #666;
    margin-bottom: 20px;
  }
  
  /* Control Buttons */
  .controls {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
  }
  
  .control-btn {
    font-size: 1.5em;
    cursor: pointer;
    background-color: transparent;
    border: none;
    color: #333;
  }
  
  .control-btn:hover {
    color: #1db954;
  }
  
  /* Progress Bar */
  .progress-container {
    background-color: #e0e0e0;
    border-radius: 5px;
    height: 8px;
    margin: 15px 0;
    width: 100%;
    position: relative;
  }
  
  .progress-bar {
    background-color: #1db954;
    height: 100%;
    width: 0%;
    border-radius: 5px;
    transition: width 0.2s;
  }
  
  /* Time Display */
  .time-display {
    font-size: 0.9em;
    color: #666;
  }

  