
@import url('https://fonts.googleapis.com/css2?family=Bitcount+Grid+Double:wght@100..900&display=swap');


*{
    margin:0;
    padding: 0%;
     font-family: "Bitcount Grid Double", system-ui;  /*change afterwards */
}

body{
    background-color: black;
    color: white;
}


.left{
    width: 21vw;
    padding: 10px;
}

.right{
    width: 75vw;
}

.home{
    padding: 3px;
}
.home ul li {
    list-style: none;
    width: 14px;
    display: flex;
    gap: 15px;
    padding-top: 15px;
    cursor: pointer; /* Makes it clickable */
    transition: background-color 0.2s, color 0.2s;
    padding: 10px;
    border-radius: 6px;
}

.home ul li img {
    width: 20px;      /* Lock icon width */
    height: 20px;     /* Lock icon height */
    transition: filter 0.2s ease;
}

.home ul li p {
    margin: 0;
    font-size: 14px;
    transition: color 0.2s ease;

}

.home ul li:hover {
    background-color: #1a1a1a;
    border-radius: 6px;
}

.home ul li:hover p {
    color: white;
}

.home ul li:hover img {
    filter: brightness(1.4);
}


.library {
    padding: 3px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: 200;
    gap: 15px;
    min-height: 60vh;
    position: relative;
}

.library h1 {
    font-size: 16px;
    font-weight: 400;
    margin: 0;
    color: #b3b3b3;
}

.footer{
   display: flex;
   font-size: 12px;
   gap: 15px;
   position: absolute;
   bottom: 0;
}
.footer a{
    color: gray;
}
.navigation {
    padding: 10px 20px;
    display: flex;
    justify-content: flex-end;
}

.navigation ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.navigation ul li a {
    text-decoration: none;
    color: whitesmoke;
    padding: 8px 12px;
    display: inline-block;
    border-radius: 6px;
    transition: background-color 0.2s ease, color 0.2s ease;
}


.navigation ul li a:hover {
    background-color: #1a1a1a;
    border: 1px solid white;
    color: white;
}
.playlist{
    padding: 7px;
    margin: 0px;
}
.card img{
    width: 150px;
    height: 150px;
}



