body {
    background-color: #121212;
    color: #fff;
    font-family: 'Helvetica Neue', sans-serif;
  }
a{
    text-decoration: none;
    color: #fff;
}
  .playlist-header {
    background: 
      linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 1)), /* Overlay hitam transparan */
      url('img/imgmain.jpg'); /* Ganti dengan URL gambar kamu */
    background-size: cover;
    background-position: center;

    padding: 100px 20px 20px 20px;
    border-bottom: 1px solid #333;
    height: 300px;
  }
  .playlist-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 120%;
  }
  .playlist-desc {
    font-size: 14px;
    color: #b3b3b3;
  }
  .song-item {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    border-bottom: 1px solid #1f1f1f;
  }
  .song-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 5px;
    margin-right: 15px;
  }
  .song-title {
    font-size: 14px;
    font-weight: 500;
  }
  .song-artist {
    font-size: 12px;
    color: #aaa;
  }
  .bottom-nav {
    background-color: #000;
    padding: 10px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
    border-top: 1px solid #1f1f1f;
    font-size: small;
  }
  .bottom-nav i {
    font-size: 24px;
    color: #b3b3b3;
  }
  .bottom-nav a{
    color: #b3b3b3;
    text-decoration: none;
    text-align: center;
  }
  .bottom-nav .active , .bottom-nav .active i, .text-green,  .bottom-nav .active a {
    color: #1db954;
  }
  .play-button {
    background-color: #1db954;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  div.scrollmenu {
    overflow: auto;
    white-space: nowrap;
    border-bottom: 1px solid #333;
  }

  div.scrollmenu a {
    display: inline-block;
    color: #666;
    text-align: center;
    padding: 14px;
    text-decoration: none;
  }

  div.scrollmenu a:hover {
    background-color: #777;
  }
  div.scrollmenu a b.text-green {
    color: #1db954;
    font-size: 18px
  }


  .card{
    background: none;
    color: #fff;
  }

  .menu_image{
    width: 200px;
    height: 100px;
  }
  .menu_image img{
    max-width: 100%;
  }
  .text-sm{
    font-size: 12px;
  }
  .text-ccc{
    color: #ccc;
  }

  .border-dark{
    border: 1px solid #999;
  }