
body {
    background-color: #ffffff;
    color: #333;
    font-family: 'Trebuchet MS', sans-serif;
}

.container {
    max-width: 1200px;
    margin: auto;
}

:root {
    --primary-color: #880a0a;
    --text-color: #333;
  }
  
/* Ajustes para que o player ocupe completamente a coluna */
.player {
    width: 100%; /* Ajuste para ocupar toda a largura da coluna */
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1); /* Sombra leve para destaque */
}
  
  .player .icon-pause {
    display: none;
  }
  
  .player.playing .icon-pause {
    display: inline-block;
  }
  
  .player.playing .icon-play {
    display: none;
  }
  
  /* HEADER */
  header {
    text-align: center;
    margin-bottom: 10px;
  }
  
  header h4 {
    color: var(--primary-color);
    font-size: 12px;
  }
  
  header h2 {
    color: var(--text-color);
    font-size: 20px;
  }
  
  /* CD */
  .cd {
    display: flex;
    margin: auto;
    width: 200px;
  }
  
  .cd-thumb {
    width: 100%;
    padding-top: 100%;
    border-radius: 50%;
    background-color: #333;
    background-size: cover;
    margin: auto;
  }
  
  /* CONTROL */
  .control {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 20px 20px 15px 0;
}
  
.btn {
    font-size: 18px;
    color: #666;
    background: none;
    border: none;
    cursor: pointer;
}

.control .btn {
  color: #020202;
  padding: 18px;
  font-size: 18px;
}

.control .btn.active {
  color: var(--primary-color);
}
  
.control .btn-toggle-play {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    font-size: 24px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
}

.btn-stop i {
  color: #a0a0a0; 
}

.btn-stop:hover i {
  color: #c9302c; 
}

.volume-control {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 20px; 
}

#volume-icon {
    font-size: 20px;
    cursor: pointer;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease; 
}

#volume-slider {
    position: absolute;
    bottom: 30px; 
    left: 50%;
    transform: translateX(-50%) translateY(20px); 
    width: 4px;
    height: 100px;
    cursor: pointer;
    background: #d3d3d3;
    outline: none;
    border-radius: 5px;
    writing-mode: bt-lr;
    -webkit-appearance: slider-vertical;
    appearance: slider-vertical;
    opacity: 0; 
    transition: opacity 0.3s ease, transform 0.3s ease; 
    pointer-events: auto; 
}

.volume-control:hover #volume-slider {
    opacity: 1; 
    transform: translateX(-50%) translateY(0); 
    pointer-events: auto; 
}

.volume-control:hover #volume-icon {
    transform: scale(1.1); 
}

#volume-slider::-webkit-slider-thumb {
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
    -webkit-appearance: none;
    appearance: none;
}

  .progress {
    width: 100%;
    height: 6px;
    background: #d3d3d3;
    outline: none;
    opacity: 0.7;
    -webkit-transition: 0.2s;
    transition: opacity 0.2s;
  }
  
  .progress::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 6px;
    background-color: var(--primary-color);
    cursor: pointer;
  }
  
/* Estilização da playlist na segunda coluna */
.playlist {
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
  
  .song {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    background-color: #fff;
    padding: 8px 16px;
    border-radius: 5px;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
  }
  
  .song.active {
    background-color: var(--primary-color);
  }
  
  .song:active {
    opacity: 0.8;
  }
  
.song.active .option,
.song.active .author,
.song.active .title {
    color: #fff;
  }
  
.song .thumb {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-size: cover;
    margin: 0 8px;
  }
  
.song .body {
    flex: 1;
    padding: 0 16px;
  }
  
.song .title {
    font-size: 18px;
    color: var(--text-color);
  }
  
.song .author {
    font-size: 12px;
    color: #999;
  }

.time-info {
    margin-top: 5px;
    font-size: 14px;
    text-align: center;
    margin-bottom: 5px;
    color: #666;
}

.option {
    position: relative;
    display: inline-block;
}
  
.song .option {
    padding: 16px 8px;
    color: #999;
    font-size: 18px;
  }
  
.dropdown-menu {
    display: none; /* Oculto por padrão */
    position: absolute;
    top: 20px;
    right: 0;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 4px;
}

.dropdown-item {
    color: black;
    padding: 5px 5px;
    font-size:small ;
    text-decoration: none;
    display: block;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.dropdown-item:hover {
    background-color: #ddd;
}

.option:hover .dropdown-menu {
    display: block; /* Mostra o menu suspenso ao passar o mouse */
}