  
  
  
  body {
    transition: padding-bottom 0.3s ease;
  }

  #fullQueue{
  position: relative;
  top: -6px;
}

  .player-controls-area {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }


  .playerInfo {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.4;
    text-align: center;
    overflow: hidden;
    font-size: 28px;
  }

   .playerInfoSmall {
    display: flex;
    flex-direction: row;
    justify-content: center;
    line-height: 1.4;
    text-align: center;
    overflow: hidden;
    font-size: 28px;
    gap: 10px;
    margin-left: 10px;
  }



  #sticky-player-podcast-title {
    text-align: center;
  }

  #sticky-player-episode-title {
    padding-bottom: 10px;
    padding-top: 10px;
  }

  #expandPlayerButton{
    position: relative;
    top: 3px;
  }

  .buttonAndTimeline {
    margin-bottom: 0;
  }

  .player-buttons {
    display: flex;
    justify-content: space-around;
  }

  .queueItemArtistDiv{
    width: fit-content;
    text-align: center;
    margin: 0 auto;
  }

  .player-timeline {
    display: flex;
    gap: 10px;
    align-items: center;
    opacity: 0;

  }



  #sticky-player-current-time,
  #sticky-player-duration {
      width: 70px;
      text-align: center;
  }

  .control-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
  }

  .audioControls {
    width: 40px;
    height: 40px;
  }

  #sticky-player-seek-bar {
    -webkit-appearance: none;
    appearance: none; 
    width: 100%;
    background: transparent;
    cursor: pointer;
    outline: none;
  }

  #sticky-player-seek-bar::-webkit-slider-runnable-track {
    width: 100%;
    height: 8px;
    background: #444;
    border-radius: 4px;
    border: 1px solid #222;
  }

  #sticky-player-seek-bar::-moz-range-track {
    width: 100%;
    height: 8px;
    background: #444;
    border-radius: 4px;
    border: 1px solid #222;
  }

  #sticky-player-seek-bar::-webkit-slider-thumb {
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
}
#sticky-player-seek-bar::-moz-range-thumb {
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
}

#sticky-player-seek-bar.thumb-visible::-webkit-slider-thumb {
    opacity: 1;
}
#sticky-player-seek-bar.thumb-visible::-moz-range-thumb {
    opacity: 1;
}

  #sticky-player-seek-bar::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    margin-top: -9px;
    width: 25px;
    height: 25px;
    background: #570049;
    border-radius: 50%;
  }

  #sticky-player-seek-bar.past-halfway::-webkit-slider-thumb {
    margin-left: 0;
  }

  #sticky-player-seek-bar::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: #570049;
    border: 2px solid #333;
    border-radius: 50%;
    cursor: pointer;
  }

  #sticky-player-seek-bar:focus::-webkit-slider-thumb {
    box-shadow: 0 0 0 3px rgba(87, 0, 73, 0.5);
  }

  #sticky-player-seek-bar:focus::-moz-range-thumb {
    box-shadow: 0 0 0 3px rgba(87, 0, 73, 0.5);
  }


#queueAndAudioPlayer {
  position: sticky;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 100;
  pointer-events: none;
}

#audioPlayer, #queueBox {
  width: 768px; 
  pointer-events: auto;
  box-sizing: border-box;
}

#audioPlayer {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0px 18px 10px;
  box-sizing: border-box;
  border: 2px solid black;
  border-bottom: none;
  background-color: #ffffff;
  background-image: url("/obrazekTla");
  border-radius: 60px 60px 0 0;
}


.queueBox {
  flex-direction: column;
  padding: 0px 0px 10px;
  box-sizing: border-box;
  border: 2px solid black;
  background-color: #ffffff;
  background-image: url("/obrazekTla");
  border-radius: 60px;
  overflow-y: auto;
  overflow-x: hidden;
}

.queueBoxSmall{

  max-height: 375px;
  display: none;

}

  #queueBox::-webkit-scrollbar {
    background-color: transparent;
    width: 8px;
    border-radius: 6px;
  }

  #queueBox::-webkit-scrollbar-thumb {
    background-color: rgb(0, 0, 0);
    border-radius: 6px;
  }

  #queueBox::-webkit-scrollbar-track {
    margin-block: 50px;
  }

  .queue-item {
    display: flex;
    flex-direction: column;
    padding: 8px 12px;
    border-bottom: 1px solid #ccc;
  }
  .queue-item:last-child {
    border-bottom: none;
  }

  .queue-item-info {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
  }

  .queueTitleAndAuthor {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }

  .queue-item-title {
      font-weight: bold;
      font-size: 20px;
  }

  .queue-item-artist {
      font-size: 20px;
  }

  .queue-item.dragging {
      opacity: 0.5;
      background: #e0e0e0;
  }

  .queue-item.drag-over {
      border-top: 3px solid #570049; 
      padding-top: 10px;
      margin-top: -1px;
  }

  .queue-item.drag-over-bottom {
      border-bottom: 3px solid #570049; 
      padding-bottom: 10px;
      margin-bottom: -1px;
  }

  .additionalControlsPanel {    
    display: none;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 10px 0;
  }

  .authorAndThumbnailPodcast {
    text-align: center;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
    margin: 0 auto;

  }

  .podcastPlayerSvg {
    width: 50px;
  }

  .queueButtonsInside{
    display: flex;
    gap: 10px;
  }

  .pickPodcastPlayer {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: row-reverse;
      gap: 15px;
      margin-bottom: 5px;
  }

  .twoQueueButtons {
    display: inline-flex;
    gap: 25px;
    margin-bottom: 30px;
    margin-top: 15px;
  }

  .buttonAndTimelineSimple{
    display: flex;
    align-items: center;
  }

  .simplePlayerCurrentTime{
    opacity: 0;
  }

   .playerControlsAreaSimple{
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 2px;
    margin-top: 2px;
  }

  #queueShowButton{
    min-width: 132px;
  }

  #podcastPlayer{

position: sticky;
bottom: -1px;
left: 0;
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
z-index: 100;
pointer-events: none
  }

  #expandPlayerSVG{

            font-size: 12vw;
  }

  .widthFitM0{
    width: fit-content;
    margin: 0 auto;
  }

  @media (max-width: 768px) {

      #fullQueue{
  top: -2px;
}
  
      #queueShowButton{
    min-width: 115px;
  }

    #audioPlayer {
  width: 100vw;
  border-radius: 35px 35px 0 0;

}
 #queueBox {
  width: 100vw;
  border-radius: 35px;

}

.queue-item{

  padding: 8px 2px;

}
.queueButtonsInside{

  gap: 5px;

}

  .queue-item-title {

      font-size: 16px;
  }

    .queue-item-artist {
      font-size: 14px;
  }


#queueBox {

  padding: 0px 0px 10px;
}


#audioPlayer {
  padding: 0px 5px 10px;
}

  .playerInfo {

    font-size: 20px;
  }

  


  }

