.podcast-player {
    width: 100%;
    display:flex;
   justify-content: center;
  }
  .podcast-wrapper {
    width: 90%;
    border-radius: 12px;
    padding: 16px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    direction: rtl;
    margin:25px 0px;
  }
  
  .podcast-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
  }
  
  .podcast-cover {
    width: 80px;
    height: 80px;
    object-fit: cover;      
    object-position: center;  
    display: block;         
    border-radius: 0;  
    border-radius: 8px;
    margin-left: 12px;
   
  }
  
  .podcast-info {
    flex: 1;
  }
  
  .podcast-label {
    font-size: 14px;
    color: #888;
  }
  
  .podcast-title {
    font-size: 16px;
    margin: 4px 0 0;
    font-weight: bold;
  }
  
  .controls {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .play-btn,
  .mute-btn {
    border: none;
    background: none;
    color: #fff;
    padding: 8px 12px;
    border-radius: 50%;
    cursor: pointer;
    display: flex
;
  }
  .progress {
    -webkit-appearance: none; /* حذف استایل پیش‌فرض در کروم/سافاری */
    appearance: none;
    width: 100%;
    height: 4px;
    background: #ddd;
    border-radius:4px;
    cursor: pointer;
  }
  
.progress::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 0px !important;
    background: #b87333;  
    cursor: pointer;
    border: none;
    margin-top: 0px;  
  }
  
  .progress::-moz-range-thumb {
    width: 14px;
    height: 14px;
    border-radius: 0px !important;
    background: #b87333;
    cursor: pointer;
    border: none;
  }
  