*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: white;
    font-family: 'Gilroy', sans-serif;
}
html, body{
    height: 100%;
    width: 100%;
}
#main {
    height: 85%;
    width: 100%;
    background: linear-gradient(135deg, #1A1A2E, #16213E);
    display: flex;
    padding: 5vw 10vw;
}
#left{
    height: 100%;
    width: 45%;
    background-color: #0F3460;
    background-image: url("song2.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
#right{
    height: 100%;
    width: 55%;
    background-color: #1A1A2E;
    padding: 0 3vw;
}
#right h3{
    font-size: 40px; 
    color: #E94560;
}
#all-songs {
    color: #f5f5f5;
    background-color: #16213E;
    height: 70%;
    margin-top: 30px;
    overflow-y: auto;
    border-radius: 12px;
    box-shadow: inset 0 0 8px rgba(0,0,0,0.4);
}
#all-songs::-webkit-scrollbar {
  width: 6px;
}
#all-songs::-webkit-scrollbar-thumb {
  background: #e4b1b9;
  border-radius: 10px;
}
#all-songs::-webkit-scrollbar-track {
  background: #e4b1b9;
}
.song-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #5a5a5a;
    padding: 18px 15px;
    transition: background 0.3s ease;
}
.song-card:last-child {
    border-bottom: 1px solid #5a5a5a;
}
.song-card img{
    height:55px;
    width:55px;
    margin-right: 20px;
    transition: transform 0.3s ease;
}
.song-card:hover{
    background-color: #2A3A5A;
    transform: scale(1.05); 
}
.song-card .part1{
    display: flex;
    align-items: center;
     pointer-events: none;
}
.song-card h2{
    font-size: 22px;
    font-weight: 600;
    color: #F5F5F5;
}
.song-card h6{
    font-size: 16px;
    font-weight: 500;
    color: #B0B0B0;
}
#player{
    height: 15%;
    width: 100%;
    background: linear-gradient(135deg, #181838, #16213E);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
#player h3 {
  background: linear-gradient(135deg, #E94560, #FF6A3D);
  padding: 12px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  overflow: hidden;
}

#player h3:hover {
  transform: scale(1.1);
  box-shadow: 0 0 16px rgba(233, 69, 96, 0.7); 
}

#player h3:active {
  transform: scale(0.93);
}

#progress-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60%; 
  gap: 8px;
}

#progress-bar span {
  font-size: 13px;
  color: #D0D0D0;
  width: 40px;
  text-align: center;
}

#seek {
  flex: 1;
  cursor: pointer;
  appearance: none;
  height: 8px;
  border-radius: 50px;      
  background: #555;          
  accent-color: #E94560;     
}

#seek::-webkit-slider-thumb {
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #E94560;
  margin-top: -4px;          
}

#controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

