body{
    
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  margin: 0;
  background-color: #121212;
  color:#FFFFFF;
  overflow: hidden;
}

.main{
    display:flex;
    height:100vh;
    padding:0.5rem;
}
.sidebar{
    background-color:black;
    width:340px;
    border-radius: 1rem;  /* 1rem =16px */
    /* margin-right: 0.5rem; */
}
.main-content{
    background-color:#121212;
    flex:1;
     border-radius: 1rem;
     overflow: auto;
     padding:0 1.5rem 0 1.5rem;
     /* padding-bottom: 100px; */
}

.music-player{
    background-color:black;
    position:fixed;
    bottom:0;
    width:100%;
    height:72px;
    display: flex;
}

a{
    text-decoration: none;
    color:#FFFFFF;
}

.nav{
    background-color: #121212;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100px;
    padding:0.5rem 0.75rem;
}

.nav-option{
    line-height: 2.5rem; /* 2.5rem = 40px */
    opacity:0.7;
    padding:0.5rem 0.75rem; /* 0.5rem = 8px, 0.75rem = 12px */
}

.nav-option:hover{
    opacity:1;
}
.nav-option i{
    font-size:1.25rem; /* 1.25rem = 20px */
}

.nav-option a{
    font-size:1rem; /* 1rem = 16px */
    margin-left: 1rem; /* 1rem = 16px */;
}

.library{
    background-color: #121212;
    border-radius: 1rem;
    height:100%;
    margin-top: 0.5rem;
    margin-right: 0.25rem;
    padding:0.5rem 0.75rem; /* 0.5rem = 8px, 0.75rem = 12px */
}

.options{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lib-option img{
    width:1rem;
    height:1rem;
}

.icons i{
    padding:0.5rem;
    opacity: 0.7;
    
}

.icons{
    font-size: 1.25rem; /* 1.25rem = 20px */
  
}

.icons i:hover{
    opacity:1;
}

.box{
    height: 8rem; /* 10rem = 160px */
    background-color: #232323;
    border-radius: 0.75rem;
    margin:0.75rem 0 1.75rem 0;
    padding:0.75rem 1rem;
}

.box-p1{
    font-size: 1rem;
    font-weight: 500;
}

.box-p2{
    font-size: 0.85rem;
    opacity:0.75;
}

.badge{
    background-color: white;
    border: none;
    border-radius: 100px;
    padding:0.25rem 1rem;
    font-weight: 600;
    margin-top: 0.5rem;
    height: 2rem;
    width: fit-content;
}

.box2{
    
    height: 9rem; /* 10rem = 160px */
    background-color: #232323;
    border-radius: 0.75rem;
    margin:0.75rem 0 1.75rem 0;
    padding:0.75rem 1rem;

}

.sticky-nav{
    position: sticky;
    top: 0;
    background-color: #121212;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding:1rem 0 1rem 0;
    z-index: 10;
}

.sticky-nav-icons {
 margin-left:0.75rem;
}

.sticky-nav-options{
    display:flex;
    justify-content: center;
    align-items: center;
}

.nav-item{
    margin-right: 1rem;
}

.dark-badge{
    background-color: #000;
    color: white;
}

@media (max-width:1000px){
    .hide{
        display:none;
    }
}

.card{
    background-color: #232323;
    width:150px;
    border-radius: 0.5rem;
    padding:1rem;
    margin-left: 1rem;
    margin-top: 0.6rem;
}

.cards-container{
    display:flex;
    flex-wrap: wrap;
    
}

.card-img{
    width:100%;
    border-radius: 0.5rem;
}

.card-title{
    font-weight: 600;
}

.card-info{
    font-size: 0.85rem;
    opacity: 0.75;
}

.footer{
height: 300px;
display: flex;
align-items: center;
justify-content: center;
}

.line{
width: 90%;
height:50%;
border-top:1px solid white;
opacity: 0.4;
}
.left-play{
    display: flex;
    width: 25%;
    /* border: 1px solid white; */
}
.album-art{
    width: 3.5rem;
    height: 3.5rem;
    padding: 0.5rem;
}

.play-info{
    
    width: 50%;
}

.song-name{
    font-weight: 600;
    font-size: 0.9rem;
}

.artist-name{
    font-size: 0.8rem;
    opacity: 0.75;
    padding-bottom: 1rem;
}

.pla-icon{
    margin-top: 1rem;
}

.pla-icon i{
    opacity:0.7;
    padding: 0.5rem;
}

.center-play{
    width:50%;
}

.player-controls img{
    width: 1.4rem;
    height: 1.4rem;
    padding: 0.5rem;
    margin-top: 0.4rem;
}

.player-controls{
    display: flex;
    justify-content: center;
}

.playback-bar{
    display: flex;
    align-items: center;
    justify-content: center;
    
}

.progress-bar{
    width: 300px;      /* Change width */
  height: 10px;      /* This changes thumb area; see below for track */
  accent-color: grey; /* Optional: changes the slider color in modern browsers */
}

.controlls{
    width:25%;
    display:flex;
    justify-content: center;
    align-items: center;
}

.controlls i{
    padding: 0.5rem;
    opacity: 0.7;
}

.miniplayer{
    width:1.5rem;
    height:1.5rem;
}