* {
    margin: 0px;
    padding: 0px;
    font-family: 'Montserrat', sans-serif;
}

html, body {
    background-color: #121212;
    color: #fafafa;
}

h2 { margin: 10px 0px;}
a { text-decoration: none; }

/* UI COMPONENTS */
.profile-img {
    height: 35px; 
    border-radius: 30px; 
    border: 3px solid white; 
    margin-right: 10px;
}

/* FORM COMPONENTS */
label {
    margin-bottom: 10px;
}

select {
    border: 2px solid white;
    background-color: black;
    color: white;
    border-radius: 20px;
    padding: 10px;
    margin-bottom: 20px;
}

header {
    background-color: #000000;
    display: flex; 
    justify-content: space-between; 
    height: 70px; 
    align-items: center; 
    width: 100%; 
    padding: 10px; 
    box-sizing: border-box;
}

main {
    padding: 10px;
}

/* BUTTONS */
.button-green {
    width: auto;
    border-radius: 50px; 
    width:200px; 
    padding: 15px; 
    text-align: center;
    background-color: #1DB954; 
    color: white; 
    font-weight: bold;
    cursor: pointer;
}

/* JOBS UI */
.job-line {
    background-color: #000000; 
    border-radius: 50px; 
    margin: 10px 10px; 
    padding: 10px 20px;

    display: flex;
    align-items: center;
}

    .playlist-desc {
        display: flex;
        align-items: center;
    }

    .playlist-img {
        height: 35px;
        margin-right: 10px;
    }

/* OVERLAY */
.overlay {
    width: 100vw; 
    height: 100vh; 
    position: absolute; 
    top: 0px; 
    left: 0px;
    display: flex; 
    justify-content: center; 
    align-items: center;
    background-color: rgba(0,0,0,0.8);
}

    .overlay .card {
        background-color: #282828; 
        padding: 20px; 
        border-radius: 20px; 
        width: 800px; 
        max-width: 100%; 
        display: flex; 
        flex-direction: column;
    }

[v-cloak] {
    display: none;
}