body {
    font-family: "Montserrat", sans-serif;
    margin: 0; 
    background-color: #000;
    color: #fff;
    overflow: hidden;
}

.main{
    display: flex;
    height: 100vh;
    padding: 0.5rem;
}

.sidebar{
    margin-top: 100px;
    background-color: #121212;
    width: 22vw;
    border-radius: 1rem;
    margin-right: 0.5rem;
    margin-top: 50px;
}

.main_content{
    background-color: #121212;
    flex: 1;
    border-radius: 1rem;
    padding:0 0.5rem;
    overflow: auto;
    scrollbar-width: none;
    margin-top: 50px;
    margin-bottom: 4rem;
}

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

.nav{
    border-radius: 1rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0.5rem 0.75rem;
    gap: 15px;
}

.nav_option{
    display: flex;
    line-height: 2.5rem;
    opacity: 0.7;
    align-items: center;
    gap: 10px;
}

.nav_option:hover{
    opacity: 1;
}

.nav_option i{
    font-size: 1.25rem;
}

.nav_option a{
    font-size: 1rem;
    margin-left: 1rem;
} 

.library{
    background-color: #121212;
    border-radius: 1rem;
    height: 100%;
    margin: 0.5rem 0;
    padding: 0.5rem 0.75rem;
}  

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

.lib_option img{
    width: 1.25rem;
    height: 1.25rem;
}

.icons{
    font-size: 1.25rem;
    display: flex;
}

.icons i{
    opacity: 0.7;
    margin-right: 1rem;
}

.icons i:hover{
    opacity: 1;
}

.box{
    background-color: #232323;
    border-radius: 0.75rem;
    margin: 0.5rem 0 0.5rem 0;
    padding: 1rem 1.25rem;
}

.box-p1{
    font-size: 1.25rem;
    font-weight: 500;
}
.box-p2{
    font-size: 0.875rem;
    opacity: 0.7;
    margin-top: 0.25rem;
}

.badge{
    background-color: #fff;
    color: #000; 
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    width: fit-content;
}

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

.sticky-nav{
    width: 100%;
    height: 50px;
    position: fixed;
    top: 0;
    background-color: #000;
    border-radius: 0 0 1rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
}


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

.nav-item{
    opacity: 0.8;
    font-weight: 500;
}

.nav-item:hover{
    opacity: 1;
}

hr{
    height: 20px;
}

.right-nav{
    margin-right: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

#logo{
    filter: grayscale(1) contrast(100);
    width: 35px;
}

.searchbar{
    background: #121212;
    padding: 0.8rem;
    border-radius: 20px;
}

.searchbar:hover{
    background-color: #232323;
}

.searchbar:active{
    border: 1px solid white;
}

.search-box{
    background-color: transparent;
    border: none;
    outline: none;
}

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

.card{
    width: 150px;
    border-radius: 0.5rem;
    padding: 0.75rem;
    margin-left: 1.5rem;
}

.card:hover{
    background-color: #232323;
}

.card-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.8;
}

.music_player{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background-color: black;
    position: fixed;
    bottom: 0;
    padding: 15px;
    width: 100%;
    height: 4rem;
}
.mp-left-controls{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

.mp-left-controls img{
    height: 100%;
    width: 100px;
}

.song-info{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.song-title , .artist-name{
    margin: 0px;
}

.song-title{
    font-size: 16px;
    font-weight: 600;
}

.artist-name{
    font-size: 14px;
    opacity: 0.8;
}

.mp-center-controls{
    opacity: 0.7;
    padding: 10px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.music-player-controls{
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 20px;
    font-size: 15px;
}

.music-bar{
  display: flex;
  align-items: center;
  gap: 10px;
}

.progress-bar{
    width: 300px;
    height: 5px;
    background-color: #232323;
    border-radius: 5px;
    position: relative;
}

.mp-right-controls{
    display: flex;
    flex-direction: row;
    gap: 15px;
    align-items: center;
    margin-right: 2rem;
    opacity: 0.7;
}

.volume-bar{
    width: 100px;
    height: 5px;
    border-radius: 5px;
}