
body{
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  background-color: black;
  color: white;
  overflow: hidden;
}
.main{
  display: flex;
  /* flex-direction: column; */
  height: 100vh;
  padding: 0.2rem;
}
.sidebar{
    background-color: black;
    width: 300px;
    border-radius: 1rem;
}
.main-content{
    background-color: #121212;
    flex:1;
    border-radius: 1rem;
    overflow: auto;
    padding: 0 1.5rem 0 1.5rem;
}
a{
    text-decoration: none;
    color: white;
}
.nav{
    background-color: #121212;
    border-radius: 1rem;
    display:flex;
    flex-direction: column;
    justify-content: center;
    height: 100px;
    padding: 0.5rem 0.75rem;
    margin: .75rem;
}
.nav-option{
    line-height: 2.5rem;
    opacity: 0.7;
    padding: 0.5rem 0.75rem;
}
.nav-option:hover{
    opacity: 1;
}
.nav-option i{
    font-size: 1.25rem;
}
.nav-option a{
    font-size: 1rem;
}
.library{
    display: flex;
    flex-direction: column;
    padding: 0.5rem 0.75rem;
    background-color: #121212;
    border-radius: 1rem;
    height: 100%;
    margin: 0.75rem;
}
.options{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.library-option img{
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
}
.library-option{
    line-height: 2.5rem;
    padding: 0.5rem 0.75rem;
}
.library-option a{
    font-size: 0.9rem;
}
.icons{
    font-size: 1.25rem;
    opacity: 0.7;
    margin-right: 1rem  ;
}
.icons:hover{
    opacity: 1;
}
.box{
    height:auto;
    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.7;
}
.badge{
    border:none;
    background-color: white;
    border-radius: 100px;
    font-weight: 700;
    padding: 0.25rem 1rem;
    height: 2rem;
    width: fit-content;
}
.sticky-nav{
    position: sticky;
    top: 0;
    z-index: 10;
    background-color: #121212;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0 1rem 0;
}
.sticky-nav-icons{
    margin: 0.75rem ;
}
.sticky-nav-options{
    display: flex;
    justify-content: center ;
    align-items: center;
}
.nav-item{
    margin-right: 1rem;
}
.dark-badge{
    background-color: #232323;
    color: white;
}
@media (max-width:1000px) {
    .hide{
        display: none  ;
    }
}
.card{
    background-color: #232323;
    width: 150px;
    border-radius: 0.75rem;
    padding: 0.75rem;
    margin-right: 1.5rem;
}
.cards-container{
    display: flex;
    flex-wrap: wrap;
}
.card-img{
    width: 100%;
    height: 150px;
    border-radius: 0.75rem;
}
.card-title{
    font-weight: 600;
}
.card-info{
    font-size: 0.75rem;
    opacity: 0.5;
}
.footer{
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.line{
    width:90%;
    height: 30%;
    border-top: 1px solid white;
    opacity: 0.1;
}

.main-player{
    background-color: black;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
    box-sizing: border-box;
    z-index: 20;
}

.album{
    width: 25%;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.album-cover{
    width: 3.2rem;
    height: 3.2rem;
    border-radius: 0.3rem;
}

.album-info{
    line-height: 1.2;
}

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

.artist-name{
    margin: 0;
    font-size: 0.72rem;
    opacity: 0.7;
}

.player{
    width: 50%;
    background-color: transparent;
    position: static;
    bottom: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.player-control{
    display: flex;
    align-items: center;
    gap: 1.4rem;
}

.player-control-icon{
    height: 1rem;
    opacity: 0.7;
    cursor: pointer;
}

.player-control-icon:hover{
    opacity: 1;
}

.play-icon{
    height: 2rem;
    opacity: 1;
}

.playback-bar{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 0.35rem;
}

.curr-time,.total-time{
    font-size: 0.75rem;
    opacity: 0.7;
}

.progress-bar{
    width: 70%;
    cursor: pointer;
}

.controls{
    width: 25%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.8rem;
    font-size: 0.9rem;
    opacity: 0.85;
}

.volume-bar{
    width: 6rem;
    cursor: pointer;
}