.sidebar{
    background-color: #0f0f0f;
    position: fixed;
    top: 70px;
    left: 10px;
    bottom: 60px;
    width: 400px;
    border-radius: 8px;
}

.top{
    display: flex;
    position: sticky;
    background-color: #0f0f0f;
    flex: 1;
    border-radius: 8px;
    justify-content: space-between;
    align-items: center; 
}

.librarytext{
    color: white;
    font-size: 15px;
    font-weight: 700;
    margin-left: 20px;
}

.plusbtn{
    background-color: #0f0f0f;
    border: none;
    color: #727171;
    border-radius: 20px;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 30px;
    font-weight: 100;
    margin-right: 10px;
}

.plusbtn:hover{
    background-color: #1f1f1f;
}

.playlistandpodcast{
    background-color: #0f0f0f;
    height: 300px;
    overflow-y: hidden;
}

.playlistandpodcast:hover{
    overflow-y: overlay;
}

/* Set width of the vertical scrollbar */
.playlistandpodcast::-webkit-scrollbar {
  width: 15px;
}

/* Scrollbar track (background) */
.playlistandpodcast::-webkit-scrollbar-track {
  background: transparent;
}

/* Scrollbar thumb (the scroll handle) */
.playlistandpodcast::-webkit-scrollbar-thumb {
  background-color: rgba(200, 200, 200, 0.4); /* light gray & translucent */
}


.main, .main2{
    background-color: #272727;
    margin: 10px 10px 20px 10px;
    height: 135px;
    border-radius: 8px;
}

.main2{
    margin-bottom: 160px;
}

.t1{
    padding: 20px 10px 0px 15px;
    margin: 0px;
    font-weight:700;
    font-size: 15px;
}

.t2{
    padding: 10px 10px 10px 15px;
    margin: 0px;
    font-size: 12px;
    font-weight: 600;
}

.createbtn{
    background-color: white;
    color: black;
    font-weight: 700;
    font-size: 15px;
    margin: 10px;
    border: none;
    margin-left: 15px;
    padding: 8px 12px 8px 12px;
    border-radius: 20px; 
    cursor: pointer;
    transition:background-color 0.2s, transform 0.2s;
}

.createbtn:hover{
    background-color: rgb(190, 188, 188);
    transform: scale(1.03);
}

.footer{
 position: absolute;
 background-color: 0f0f0f;
 height: 250px;
 left: 0;
 right: 0;
 bottom: 0;
 border-radius: 0px 0px 8px 8px;
}

.l{
    display: inline-block;
    padding: 10px;
    font-size: 12px;
    opacity: 0.6;
}

.cookies{
    display: block;
    font-size: 12px;
    padding: 0px 0px 10px 10px;
}

.languagebtn{
    border: 1px solid white;
    color: white;
    background-color: #0f0f0f;
    padding: 5px 10px;
    border-radius: 20px;
    margin-left: 20px;
}