*{
    @import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
    font-family: "Inter", serif;
    margin: 0;
    padding: 0;
    background: #070707;
    color: #eee;
}
h2{
    font-size: 18px;
}
header{
    height: 6vh;
    background: #070707;
    border-bottom: 1px solid #eeeeee25;
    color: #eee;
    display: flex;
    align-items: center;
    filter: drop-shadow(0px 4px 10px #000000);
    
}
header img{
    height: 58px;
    border-radius: 50%;
}

header a{
    color: #eee;
    text-decoration: none;
    margin-left: 6vw;
    font-size: 14px;
}
header a:hover{
    text-decoration: underline;
}
#create{
    padding-top:2vh;
}

.wrap{
    width: 65%;
    margin: 0 auto;
    padding-left: 2vw;
    padding-right: 2vw;
    border-left: 1px solid #eeeeee25;
    border-right: 1px solid #eeeeee25;
}
.headwrap{
    width: 65%;
    margin: 0 auto;
    display: flex;
    align-items: center;
}
label.poolupload{
    background: #269CEB;
    color: #070707;
    font-weight: bold;
    padding: 10px 20px;
    text-align: center;
    border-radius: 4px;
    font-size: 14px;
    margin-left: 5vw;
}
label.poolupload:hover{
    cursor: pointer;
}
button[type=submit]{
    border: none;
    outline: none;
    margin-left: 0.5vw;
}
i{
    background: #23CC37;
    font-size: 16px;
    color: #070707;
    padding: 10px 20px;
    text-align: center;
    border-radius: 4px;
}
i:hover{
    cursor: pointer;
}
form.settings{
    display: flex;
    text-align: center;
}
.settingBox{
    display: flex;
    align-items: center;
    margin-top: 2vh;
    margin-bottom: 2vh;
}
.settingBox .poolName{
    background: #101010;
    color: #eeeeee75;
    border: none;
    outline: none;
    border-radius: 4px;
    padding: 10px 20px 10px 1vw;
}
select.playlistSelect1{
    margin-left: 1vw;
    background: #101010;
    padding: 10px 1vw;
    border: none;
    outline: none;
    color: #eeeeee75;
    border-radius: 4px;
}
select:focus{
    border:none;
    outline:none;
}
button.playlistSelect2{
    background: #23CC37;
    font-size: 14px;
    font-weight: bold;
    color: #070707;
    padding: 10px 20px;
    text-align: center;
    border-radius: 4px;
    margin: 0;
    margin-left: 0.25vw;
}
button.playlistSelect2:hover{
    cursor: pointer;
}

.songTable {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2vh;
}

.songTable th, .songTable td {
    padding: 1vh 0.25vw;
    text-align: left;
    font-size: 14px;
    border-bottom: 1px solid #eeeeee25;
}


.songTable img {
    width: 50px;
    border-radius: 6px;
}

select {
    padding: 6px;
    border-radius: 6px;
}
