* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}


body {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  
}


/* Background video with black overlay */
.background-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    z-index: -1;
  }
  
  .background-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  /* Apply black hover */
  .background-video::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(39, 38, 38, 0.862); 
  }


/* navigation bar */
::selection {
    color: #fff;
    background: #11101d;
}

.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 95px;
    background: #11101d;
    padding: 6px 14px;
    z-index: 99;
    transition: all 0.5s ease;
}

.sidebar.active {
    width: 270px;
}

.sidebar .logo_content .logo {
    color: #fff;
    display: flex;
    height: 50px;
    width: 100%;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s ease;
}

.sidebar.active .logo_content .logo {
    opacity: 1;
    pointer-events: none;
}

.logo_content .logo i {
    font-size: 28px;
    margin-right: 5px;
}

.logo_content .logo .logo_name {
    font-size: 20px;
    font-weight: 400;
}

.sidebar #btn {
    position: absolute;
    color: #fff;
    top: 6px;
    left: 50%;
    font-size: 22px;
    height: 50px;
    width: 50px;
    text-align: center;
    line-height: 50px;
    transform: translateX(-50%);
}

.sidebar.active #btn {
    left: 90%;
}

.sidebar ul {
    margin-top: 20px;
    padding-left: 28%;
    /* padding-right: 50%; */
}

.nav_list ul {
    margin-right: 20%;
}

.sidebar ul li {
    position: relative;
    height: 50px;
    width: 100%;
    margin: 0 5px;
    list-style: none;
    line-height: 50px;
    margin: 5px 0;

}


.sidebar ul li .tooltip {
    position: absolute;
    left: 125px;
    top: 0;
    transform: translate(-50%, -50%);
    border-radius: 6px;
    height: 35px;
    width: 130px;
    background: #fff;
    line-height: 35px;
    text-align: center;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    transition: 0s;
    opacity: 0;
    pointer-events: none;
    display: block;

}

.sidebar.active ul li .tooltip {
    display: none;
}

.sidebar ul li:hover .tooltip {
    transition: all 0.5s ease;
    opacity: 1;
    top: 50%
}

.sidebar ul li input {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    border-radius: 12px;
    outline: none;
    border: none;
    background: #1d1b3100;
    padding-left: 50px;
    font-size: 18px;
    color: #fff;
}

.sidebar ul li .bx-search {
    position: absolute;
    z-index: 99;
    color: #fff;
    font-size: 22px;
    transition: all 0.5s ease;
}

.sidebar ul li .bx-search:hover {
    background: #fff;
    color: #1d1b31;
}

.sidebar ul li a {
    color: #fff;
    display: flex;
    align-items: center;
    text-decoration: none;
    border-radius: 12px;
    white-space: nowrap;
    transition: all 0.4s ease;
}

.sidebar ul li a:hover {
    color: #11101d;
    background: #fff;
}

.sidebar ul li i {
    font-size: 18px;
    font-weight: 400;
    height: 50px;
    min-width: 30px;
    border-radius: 12px;
    line-height: 50px;
    text-align: center;
}

.sidebar .links_name {
    font-size: 15px;
    font-weight: 400;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.sidebar.active .links_name {
    transition: 0s;
    opacity: 1;
    pointer-events: auto
}





.sidebar.active~.home_content {
    width: calc(100% - 240px);
    left: 240px;
}





.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    padding-top: 3%;
  }
  
  .album-cover {
    width: 200px;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    margin-top: -34%;
     margin-right: 10%;
  }
  
  .album-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
   
  }
  
  .album-info {
    flex: 1;
    margin-left: 20px;
    color: white;
  }
  
  .album-title {
    font-size: 24px;
    margin-bottom: 10px;
    color: white;
  }
  
  .album-details {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
  }
  
  .album-details i {
    font-size: 18px;
    margin-right: 5px;
    color: white;
  }
  
  .album-details span {
    font-size: 16px;
  }
  
  .song-list {
    margin-top: 55px;
   
  }
  
  .song-list table {
    width: 100%;
    border-collapse: collapse;
  }
  
  .song-list th, .song-list td {
    text-align: left;
    padding: 10px;
  }
  
  .song-list th {
    background-color: #0a0a0aeb;
    color: white;
  }
  
  .song-list tbody tr[data-index]:hover {
    border: 2px solid rgba(255, 255, 255, 0.612); 
    border-radius: 5px;
}
  .song-list td a {
    color: white;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 18px;
    text-decoration: none; 
    display: inline-block;
    padding: 5px 10px; 
  }
  
  .song-list tr:hover {
    border: 2px solid rgba(255, 255, 255, 0.612); 
    border-radius: 5px;
  }
  
  .song-list td:nth-child(1) {
    width: 5%;
  }
  
  .song-list td:nth-child(2) {
    width: 30%;
  }
  
  .song-list td:nth-child(3) {
    width: 30%;
  }
  
  .song-list td:nth-child(4) {
    width: 15%;
  }
  
  .song-list td:nth-child(5) {
    width: 10%;
  }
  
  .song-list td:nth-child(6) {
    width: 10%;
  }
  
  .song-list a {
    color: #fff;
    text-decoration: none;
  }
  
  .song-list a:hover {
    text-decoration: underline;
  }
  
  .play-button {
    background-color: #f44336;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .play-button:hover {
    background-color: #d32f2f;
  }

  .center-it {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
    margin-right: 2%;
    
  }
  
  .player-container {
    position: fixed;
    top:93%;
    left:53%;
    transform: translate(-50%,-50%);
    z-index: 9;
    
  }
  
  .player-container i {
    font-size: 17px;
  }
  
  .player-box {
    display: flex;
    color: rgba(255, 255, 255, 0.5);
    height: 80px;
    background-color: rgba(38, 39, 41, 0.9);
    width: 1590px; 
    margin: 1em auto 0 auto;
    border-radius: 5px;
    border: rgba(255, 255, 255, 0.5) 1px solid;
    font-size: 14px;
    border-bottom: 0;
    padding-bottom: 0.5em;
    
  }
  
  .player-artist,
  .player-controller,
  .player-settings {
    height: 80px;
  }
  
  .song__Time {
    padding-right: 20px;
  }
  
  .artist-img {
    height: 45px;
    width: 45px;
    background-color: white;
    margin-right: 10px;
    margin-left: 15px;
    border-radius: 5px;
  }
  
  .song-info h3 {
    color: white;
    font-weight: 500;
    font-size: 17px;
  }
  
  .player-controller button,
  .player-settings button {
    padding: 5px;
    background-color: transparent;
    color: rgba(255, 255, 255, 0.5);
    border: none;
    outline: none;
    cursor: pointer;
  }
  
  .shuffle-icon,
  .repeat-icon {
    margin: 2em;
    width: 25px;
  }
  
  .play-song-icon i {
    background-color: red;
    padding: 1em;
    border-radius: 50%;
  }
  
  .player-controller button:hover,
  .player-settings .playList-icon:hover {
    color: white;
    transition: 0.4s;
  }
  
  .player-controller .play-song-icon i:hover {
    background-color: rgba(255, 0, 0, 0.7);
    transition: 0.3s;
  }
  
  .player-controller .play-song-icon i:hover .verticalSlider-container {
    display: none;
  }
  
  .player-controller {
    flex: 1;
  }
  
  .player-controller .play-song-icon {
    color: white;
  }
  
  .player-settings {
    position: relative;
    width: 250px;
    display: flex;
    justify-content: space-evenly;
  }
  
  .player-settings .auto {
    color: red;
    border: 1px red solid;
    padding: 5px 10px;
    border-radius: 5px;
    width: 50px;
  }
  
  .player-settings .volume-icon {
    color: red;
    height: 50px;
    width: 50px;
  }
  .artist-img {
    width: 70px; /* Adjust size as needed */
    height: 50px; /* Adjust size as needed */
    overflow: hidden; /* Ensures roundness doesn't get distorted */
}

.artist-img img {
    width: 100%; /* Ensures image fills container */
    height: 100%; /* Ensures image fills container */
    object-fit: cover; /* Ensures the image covers the entire space */
}

.heart-icon {
  color:white;
  cursor: pointer;
  transition: color 0.3s ease;
}

.heart-icon.liked {
  color: red;
}