body {
    font-family: 'Montserrat', sans-serif;
    font-family: 'Poppins', sans-serif;
    margin: 0;

    background-color: black;
    color: white;
    overflow: hidden;
}

/* Main */
.main {
    display: flex;
    height: 100vh;
    padding: 0.5rem;
}

/* Side Bar */
.sidebar {
    background-color: #000000;
    width: 340px;
    border-radius: 1rem;
    margin-right: 0.5rem;
}

a {
    text-decoration: none;
    color: white;
}

/* Navigation */
.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;
    opacity: 0.5;
    padding: 0.5rem 0.75rem;
}

.nav-option:hover {
    opacity: 1;
}

.nav-option i {
    font-size: 1.25rem;
}

.nav-option a {
    font-size: 1rem;
    margin-left: 1rem;
}

/* Library */
.library {
    background-color: #121212;
    border-radius: 1rem;
    height: 100%;
    margin-top: 0.5rem;
    padding: 0.5rem 0.75rem;

}

.options {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lib-option img {
    height: 1.25rem;
    width: 1.25rem;

}

.lib-option:hover {
    opacity: 1;
}

/* For Plus ans Arrow  */
.icon {
    font-size: 1.30rem;
    display: flex;
}

.icons i {
    opacity: 0.7;
    margin-right: 1rem;
}

.icons i:hover {
    opacity: 1;
}

.box {
    height: 8rem;
    background-color: #232323;
    border-radius: 0.75rem;
    margin: 0.75rem 0 0.75rem 0;
    padding: 0.75rem 1rem;
}

.box-1 {
    font-size: 1rem;
    font-weight: 700;
}

.box-2 {
    font-size: 0.75rem;
    opacity: 0.75;
}

.badge {
    background-color: white;
    border-radius: 100px;
    border: none;
    font-weight: 700;
    font-size: 0.80rem;
    width: fit-content;
}

.dark-badge {
    background-color: black;
    color: white;
}

/* Main Content  */
.main-content {
    background-color: #121212;
    flex: 1;
    border-radius: 1rem;
    overflow: auto;
    padding: 0 1.5rem 0 1.5rem;
}

.main-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;
}

.nav-icon {
    margin-left: 0.75rem;
}

.sticky-nav-icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-item {
    margin-right: 1.5rem;
}

@media (max-width: 1000px) {
    .hide {
        display: none;
    }
}

/* Cards */
.card {
    background-color: #232323;
    width: 150px;
    border-radius: 0.5rem;
    padding: 1rem;
    margin-left: 1.5rem;
    margin-top: 1rem;
}

.card-container {
    display: flex;
    flex-wrap: wrap;
}

.card-img {
    width: 100%;
    border-radius: 0.5rem;
}

.card-title {
    font-weight: 700;
}

.card-info {
    font-size: 0.77rem;
    opacity: 0.5;
}

.footer {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.line {
    width: 90%;
    height: 30%;
    border-top: 1px solid white;
    opacity: 0.4;
}

/* Music Player */
.music-player {
    background-color: rgb(0, 0, 0);
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 75px;

}

.music-player {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.album {
    width: 25%;
    background-color: black;
}

.player{
    width: 50%;
    background-color: black;
}

.controls{
    width: 25%;
    background-color: black;
}

.player-control {
    display: flex;
    justify-content: center;
    align-items: center;
}

.player-icon {
    height: 1rem;
    margin-right: 1.5rem;
    opacity: 0.7;
}

.player-icon:hover {
    opacity: 1;
}

.playback-bar {
    display: flex;
    justify-content: center;
    align-items: center;
}


.progress-bar{
    width: 70%;
    appearance: none;
    background-color: white;
    cursor: pointer;
}


.progress-bar::-webkit-slider-thumb{
    appearance: none;
    height: 1rem;
    width: 1rem;
    background-color: #1bd760;
    border-radius: 50%;
    margin-top: -6.5px;
}

.progress-bar::-webkit-slider-runnable-track{
    background-color: #ddd;
    background-color: 100px;
    height: 0.2rem;
}

.control-bar{
    display: flex;
    justify-content: center;
    align-items: center;
}

.control-icon{
    height: 1rem;
    margin-right: 1rem;
    opacity: 0.7;
}

.control-icon:hover{
    opacity: 1;
}

.progress-bar-control{
    width: 25%;
    appearance: none;
    background-color: white;
    cursor: pointer;
    margin-left: 0.5rem;
}

.progress-bar-control::-webkit-slider-thumb{
    appearance: none;
    height: 1rem;
    width: 1rem;
    background-color: #4d1bd7;
    border-radius: 50%;
    margin-top: -6.5px;
}

.progress-bar-control::-webkit-slider-runnable-track{
    background-color: #ddd;
    background-color: 100px;
    height: 0.2rem;
}

.album{
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.album-pic{
    display: flex;
    justify-content: center;
    
}

.album-image{
    height: 20px;
    padding-top: 0.5rem;
    padding-right: 1rem;
  
}

.album-icon{
    display: flex;
    justify-content: center;
    align-self:center;
}

.album-icon-pic-1{
     height: 1rem;
    margin-right: 0.5rem;
    opacity: 0.7;
}

.album-icon-pic-1:hover{opacity: 1;}

.album-icon-pic-2{
    height: 1rem;
   margin-right: 1rem;
   opacity: 0.7;
}

.album-icon-pic-2:hover{opacity: 1;}

.album-icon:hover{
    opacity: 1;
}

.album-text{
padding-bottom: 0.5rem;    
}