body {
  font-family: Arial, sans-serif;
  background-color: #faf7f7;
}

header {

  padding: 3px;
  border-bottom: .01px solid red;
/*  box-shadow: #111 0px 0.01px 5px;*/
}

header h3{
  color: rgb(53, 53, 53);
}

     /* Define the styles for the sidebar */
     .sidebar {
      position: fixed;
      left: 0;
      top: 0;
      bottom: 0;
      width: 230px;
      background-color: #f1f1f1;
      padding: 20px;
    }

    .quickMenu{
      font-weight: 600;
      color: #333;
      list-style: none;
    }

    .Trending{
      padding: 3px;
    }

    .Trending li{
      font-size: small;
      padding: 2px;
      list-style: none;
      display: block;
      overflow:hidden;
    }

    .Trending p{
      text-align: center;
      font-size: 14px;
    }

    .quickMenu li{
      padding: 3px;;
    }

    /* Define the styles for the main content */
    .main-content {
      margin-left: 230px;
      padding: 5px;
    }


.logoTitle img{
  width: 100%;
  height: 70px;
}


.fa{
  padding:1px;
}

.unselectable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
  font-style: none;
  color: #353333;
  display: flex;
  align-items: center;
}
a:hover{
  font-style: none;
  text-decoration: none;
}



.controls {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 20px;
}

.progress-container {
  width: 100%;
  margin-top: 20px;
}

.progress {
  -webkit-appearance: none;
  width: 100%;
  height: 10px;
  border-radius: 5px;
  background: #ddd;
  outline: none;
  opacity: 0.7;
  -webkit-transition: .2s;
  transition: opacity .2s;
}




/*******************MUSIC DISPLAY*********************/

.headerBar{
  padding: 5px;;
  display: flex;
  justify-content: space-between;
}


.thumbnail {
  display: inline-block;
  width: 160px;
  height: 160px;
  overflow: hidden;
  border-radius: 5px;
}

.thumbnailOverlay{
  color: #333;
}

.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}




/***************PLAYER***********************/
.player {
  width: 400px;
  height: 40px;
  border: #757575 solid 0.1px;
  background-color: #f4f4f4;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px;

  margin: 0 auto;
}
.player-thumbnail{
  height: 100%;
  overflow: hidden;
  width: 40px;
}

.player-thumbnail img{
width: 100%;
}
.controls {
  display: flex;
  align-items: center;
  margin-top: 20px;
  justify-content: space-between;
  width: 150px;
}

.control-btn {
  width: 30px;
  height: 30px;
  border-radius: 20px;
  background-color: #757575;
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.play-btn:hover, .pause-btn:hover, .next-btn:hover, .prev-btn:hover {
  background-color: #4b4a4a;
}

.fa-play{
  font-size: 9px;
}



.fa-music{
  font-size: 18px;
  transform:perspective(90deg);
  color: rgb(255, 136, 0);
}

.seek-bar{
  width: 400px;
  background-color: #757575;
  padding: 1px;
  margin: 0 auto;
}

.seeker{
  width: 2px;
  background-color:red;
  padding: 1px;
}

.song-info {
  color: #333;
  font-size: 14px;
  margin-right: 20px;
}

/*************************SEARCH**********************/
.search-container {
  display: flex;
  align-items: center;
  height: 40px;
  width: 300px;
  padding: 10px;
  border-radius: 5px;
  background-color: #F1F1F1;
}



.search-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  margin-right: 10px;
  font-size: 20px;
}

.search-input {
  width: 100%;
  height: 100%;
  padding: 10px;
  border: none;
  font-size: 14px;
  outline: none;
}

/******ALL MUSIC************/

.all-music{
  padding: 10px;
}





/**************NEW MUSIC***************/
.new-music{
  padding: 10px;
}



/***********NEWS*************/
.row{
  margin:0;
  padding: 10px;
}

.news-header{
  padding: 10px;
}

.news-box{
  padding: 10px;
}

.news-thumbnail{
  height: 100px;
  overflow: hidden;
  border: solid red;
}

.news-thumbnail img{
  width: 100%;
  height: 100%;
}



footer{
  background-color: #333;
  padding: 10px;
  color:#fff;
}

footer p{
  color: #FFF;
}