body{
    margin:0;
    padding:0;
    font-family: Arial, Helvetica, sans-serif;
    background-color:#181818;
    background-image: url('../img/bg.webp');
    background-size: cover;
    background-repeat: no-repeat;
    color:#fff;
    height: 100vh;
}

a{
    color:#00c851;
    text-decoration:none;
}

a:hover{
    text-decoration:underline;
}

.nav{
    display:flex;
    justify-content:space-around;
    align-items:center;
    padding:15px 40px;
    background:#101010;
    border-bottom:1px solid #333;
}

.nav h1{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:22px;
}

li{
    list-style:none;
}
.nav img{
    height:35px;
}

.nav-auth{
    display:flex;
    justify-content:flex-end;
    align-items:center;
    gap:20px;
    padding:15px 40px;
    background:#141414;
    border-bottom:1px solid #333;
}

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

input[type=text],
input[type=password],
input[type=file]{
    padding:8px 10px;
    border:none;
    border-radius:4px;
    background:#2c2c2c;
    color:white;
}

input[type=submit]{
    padding:8px 16px;
    border:none;
    border-radius:4px;
    background:#00c851;
    color:white;
    cursor:pointer;
    transition:0.2s;
}

input[type=submit]:hover{
    background:#009e3f;
}

.links{
    display:flex;
    list-style:none;
    gap:25px;
    padding:0;
    margin:0;
}

.link{
    cursor:pointer;
}

.container{
    display:flex;
    gap:40px;
    padding:30px 40px;
}

.playlist{
    flex:3;
    background:#1f1f1f;
    padding:20px;
    border-radius:6px;
    overflow: scroll;
    height: 600px;
    overflow-x: auto;
    scrollbar-color: #00c851 #1f1f1f;
}

.playlist h2{
    margin-top:0;
}

table{
    width:100%;
    border-collapse:collapse;
}

th{
    background:#101010;
    padding:12px;
}

td{
    padding:10px;
    text-align: center;
}

tr:nth-child(even){
    background:#2a2a2a;
}

tr:nth-child(odd){
    background:#222;
}

tr:hover{
    background:#333;
}

.material-symbols-outlined{
    cursor:pointer;
}

.upload{
    flex:1;
    background:#1f1f1f;
    padding:20px;
    border-radius:6px;
    height: 200px;
}

.upload h2{
    margin-top:0;
}

.modal{
    display:none;
    position:fixed;
    z-index:100;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.7);
    backdrop-filter:blur(5px);
}

.modal-content{
    display:flex;
    gap:40px;
    background:#202020;
    padding:30px;
    margin:10% auto;
    width:70%;
    border-radius:8px;
}

/* .modal-img img{
    max-width:400px;
} */

.instructions{
    max-width:500px;
}

@media(max-width:1000px){

.container{
    flex-direction:column;
}

.nav{
    flex-direction:column;
    gap:10px;
}

.nav-auth{
    flex-direction:column;
    align-items:flex-start;
}

}