@charset "utf-8";
/* CSS Document */


  .audioplayer-player {margin-bottom: 24px;
    background: #fff;
    padding: 10px 15px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    width: 100%;
   /* max-width: 650px;*/
    transition: box-shadow 0.3s;
  }
  .audioplayer-player:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  }

  .audioplayer-cover {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .audioplayer-player.playing .audioplayer-cover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(74,144,226,0.5);
  }
  .audioplayer-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .audioplayer-track-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: flex-start;
  }

  .audioplayer-track-name {
    font:17px 'Epilogue-Medium';
    color: #064b39;
  }

  .audioplayer-time {
    font-size: 12px;
    color: #666;
  }

  .audioplayer-controls {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .audioplayer-controls button {
    background: linear-gradient(145deg, #eee, #ddd);
    border: none;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    color: #064b39;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .audioplayer-controls button:hover {
    transform: scale(1.1);
    background: #064b39;
    color: #dc9c34;
  }

  .audioplayer-volume {
    display: flex;
    align-items: center; color: #DC9E30;
    gap: 5px;
    cursor: pointer;
  }
  .audioplayer-volume-slider {
    width: 80px; color: #DC9E30; 
  }
 
 
	
  .audioplayer-progress-container {
    position: relative;
    width: 130px;
    height: 6px;
    background: #eee;
    border-radius: 5px;
    cursor: pointer;
  }
  .audioplayer-progress {
    height: 100%;
    width: 0%;
    border-radius: 5px;
    background: #DC9E30;
    transition: width 0.1s linear;
  }
  .audioplayer-progress-tooltip {
    position: absolute;
    top: -25px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 2px 6px;
    font-size: 10px;
    border-radius: 3px;
    display: none;
    transform: translateX(-50%);
    pointer-events: none;
	  
	  
	  
  }
.audioplayer-volume-slider {
  -webkit-appearance: none;
 
  height: 4px;
  background: red;
  border-radius: 2px;
  outline: none;
}

/* Çizgi */
.audioplayer-volume-slider::-webkit-slider-runnable-track {
  background:#dc9e30  ;
  height: 4px;
  border-radius: 2px;
}

/* Daire (thumb) */
.audioplayer-volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #dc9e30; /* <--- BURAYI DEĞİŞTİR (daire rengi) */
  cursor: pointer;
  margin-top: -5px; /* çizgiye hizalama */
  border: none;
  box-shadow: 0 0 3px rgba(0,0,0,0.3); /* İsteğe bağlı gölge */
}

/* Firefox için */
.audioplayer-volume-slider::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #dc9e30; /* Aynı renk */
  cursor: pointer;
  border: none;
}


  @media (max-width: 600px){
    .audioplayer-player {
      flex-direction: column;
      align-items: center;
      margin: 0 auto 36px;
    }
    .audioplayer-track-info {
      align-items: center;
      text-align: center;
    }
    .audioplayer-controls {
      order: 3;
    }
    .audioplayer-progress-container {
      width: 100%;
      margin: 5px 0;
    }
    .audioplayer-volume {
      order: 4;
    }
  }