body{
    background-color: black;
    color: white;
    overflow: hidden;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    height: 1000px;
}

.spotify-structure{
    display: flex;
    flex-direction: row;
}


.playlist-structure{
    flex: 3;
    height: 600px;
    display: flex;
    flex-direction: column;
    background-color: rgb(20, 20, 20);
    border-radius: 10px;
    overflow: auto;
    margin-right: 20px;
}


.playlist-details{
    display: flex;
    flex-direction: row;
    background: linear-gradient(rgb(0, 155, 160),rgb(0, 100, 103)) ;
}
.playlist-image{
    padding-top:25px;
    padding-left: 10px;
    
}
.image-in-playlist-detail{
    width: 150px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
}
.playlist-info{
    padding-top: 50px;
    padding-left: 20px;
}
.playlist-type{
    margin-bottom:10px;
}
.playlist-name{
    font-size: 60px;
    font-weight:bold;
    margin-bottom: 20px;
}
.user-info-container{
    display: flex;
    flex-direction: row;
}
.user-info{
    font-weight: bolder;
    font-size: 14px;
    margin-bottom:10px ;
    margin-right: 5px;
}
.songlist-info{
    font-size: 14px;
    margin-bottom:10px ;
    color: rgb(85, 200, 220);
}

.play-Options{
    
    background:linear-gradient(to bottom,rgb(0, 79, 79),rgb(0, 52, 63));
}
.play-button{
    margin-top: 20px;
    margin-left: 20px;
    background: rgb(11, 167, 87);
    border: none;
    padding: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    margin-bottom: 20px;
}
.play-button .play-pause-icon{
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 18px solid black;
    margin-left: 2px;
}

.songs-info-storage{
    padding-left: 20px ;
    padding-right: 20px;
    font-size:15px ;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background:linear-gradient(to bottom,rgb(0, 52, 63),rgb(20, 20, 20));
    padding-bottom: 20px;
    
}
.border-between{
    color: rgb(129,129,129);
}
.hashtag{
    flex: 1;
    padding-bottom: 10px;
    border-bottom:1px solid rgb(129, 129, 129) ;
}
.title{
    flex: 10;
    border-bottom:1px solid rgb(129, 129, 129) ;
}
.album{
    flex: 10;
    border-bottom:1px solid rgb(129, 129, 129) ;
}
.duration{
    flex:2;
    border-bottom:1px solid rgb(129, 129, 129) ;
}


.songs{
    display: flex;
    flex-direction: column;
    padding-top:10px ;
    background-color: rgb(20, 20, 20);
    padding-left: 20px ;
    padding-right: 20px;
    cursor:pointer;
   
}
.song{
    display:flex;
    flex-direction:row;
    padding-bottom: 5px ;
    padding-top: 5px;
    align-items: center;
    justify-content: center;
}
.index-number{
    flex:1;
}
.song-title{
    display: flex;
    flex-direction: row;
    flex: 10;
    align-items: center;
}
.logo-image{
    flex:1;
    width: 50px;
    padding-top: 4px;
    border-radius: 5px;
}
.song-name{
    flex: 2;
    padding-left: 10px;
}
.song-album{
    flex:10;
}
.song-duration{
    flex:1;
}
.song:hover{
    border-radius:5px;
    background-color: rgb(51, 51, 51);
}
