@import url(https://cdn.fullmoon.dev/fonts/outfit/stylesheet.css);
body {
    font-family: 'Outfit-Variable', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #0f0f0f;
    color: #fff;
  }
  
  .app-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
  }
  
  .left-menu {
    width: 20%;
    padding-right: 20px;
  }
  
  .left-menu h2 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  
  select {
    width: 100%;
    padding: 8px;
    font-size: 16px;
    border-radius: 5px;
    border: none;
    background-color: #1db954;
    color: #fff;
  }
  
  .main-content {
    flex-grow: 1;
  }
  
  .player-container {
    text-align: center;
  }
  
  h1 {
    font-size: 28px;
  }
  
  audio {
    width: 100%;
    margin-top: 20px;
  }
  
  .song-title-container {
    margin-top: 10px;
  }
  
  .song-title {
    font-size: 18px;
    font-weight: bold;
    margin: 0;
  }
  
  .playlist-container {
    background-color: #333;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    height: 600px; /* Set a fixed height */
    overflow-y: auto; /* Enable vertical scrollbar */
  }
  
  ul {
    list-style: none;
    padding: 0;
    margin: 0; /* Remove default margin for <ul> */
  }
  
  li {
    padding: 10px;
    cursor: pointer;
  }
  
  li:hover {
    background-color: #555;
  }

/* Styling for button container */
.controls {
    display: flex; /* Use flexbox to align buttons in a row */
    justify-content: center; /* Center buttons horizontally */
    flex-wrap: wrap; /* Allow buttons to wrap to the next line if they overflow */
  }
  
  /* Styling for Material Icons in buttons */
  .controls button {
    border: none;
    background-color: #1db954;
    color: #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5px;
    transition: background-color 0.3s ease;
  }
  
  .controls button:hover {
    background-color: #147f4f;
  }
  
  /* Styling for Material Icons in buttons */
  .controls button i {
    font-size: 24px;
  }