.audio-player-container .card-body {
    padding: 1rem; /* İç boşluk */
}

/* Özel İlerleme Çubuğu Konteyneri */
.custom-progress-bar {
    position: relative; /* İçindeki absolute elementler için */
    height: 12px; /* SVG yüksekliğiyle eşleşmeli veya ayarlanmalı */
    flex-grow: 1; /* Esnek genişlik */
    border-radius: 6px;
    cursor: pointer;
    overflow: hidden; /* Köşe yuvarlaklığı için önemli */
}

/* Wavelet Desenli Track */
.progress-track {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* SVG Data URI ile arka plan */
    background-image: url("data:image/svg+xml;utf8,<svg width='20' height='12' xmlns='http://www.w3.org/2000/svg'><rect x='1' y='3' width='2' height='6' fill='%23cccccc'/><rect x='5' y='1' width='2' height='10' fill='%23cccccc'/><rect x='9' y='4' width='2' height='4' fill='%23cccccc'/><rect x='13' y='0' width='2' height='12' fill='%23cccccc'/><rect x='17' y='2' width='2' height='8' fill='%23cccccc'/></svg>");
    background-repeat: repeat-x;
    background-size: auto 100%; /* Yüksekliği koru, yatayda tekrarla */
    border-radius: 6px; /* Konteyner ile aynı */
}

/* Kırmızı Dolgu Katmanı (Blend Mode ile) */
.progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%; /* JS ile güncellenecek */
    background-color: #dc3545; /* Bootstrap danger rengi (Kırmızı) veya istediğiniz renk */
    border-radius: 6px; /* Konteyner ile aynı */
    /* --- BLEND MODE --- */
    mix-blend-mode: color; /* 'multiply', 'screen', 'overlay', 'hue' gibi modları deneyin */
                          /* 'color' modu genellikle iyi çalışır */
    /* --- --- */
    transition: width 0.1s linear; /* Yumuşak genişlik geçişi (isteğe bağlı) */
    pointer-events: none; /* Altındaki track'e tıklamayı engellememesi için */
}

/* Zaman Göstergeleri (Değişiklik yok) */
.time-display {
    font-size: 0.85rem;
    color: #6c757d;
    min-width: 35px;
    text-align: center;
}


/* Ses Kontrolü */
.volume-slider {
    width: 80px; /* Ses çubuğu genişliği */
    height: 4px; /* Daha ince bir çubuk */
}
/* Ses çubuğu track/thumb stilleri de progressBar gibi özelleştirilebilir */
.volume-slider::-webkit-slider-runnable-track { height: 4px; }
.volume-slider::-webkit-slider-thumb { width: 10px; height: 10px; margin-top: -3px; }
.volume-slider::-moz-range-track { height: 4px; }
.volume-slider::-moz-range-thumb { width: 10px; height: 10px; }


/* İkon Butonları */
.btn-icon {
    padding: 0.3rem 0.5rem;
    line-height: 1; /* İkonu dikeyde ortala */
}