.eventId {
    font-size: 14px;
    opacity: 0.75;
    margin-top: -24px;
    font-style: italic;
}

.categories {
    display: flex;
    justify-content: space-evenly;
}
.category label {
    display: flex;
}

.addSongs input[type="checkbox"] {
    display: inline;
    width: 28px;
    height: 28px;
    margin: 0 8px 0 0;
}

.addSongs {
    margin-bottom: 48px;
}

.addSongs .error {
    background-color: red;
}

.addSongs .results{
    margin: 48px 0;
}

.addSongs .results.loading {
    pointer-events: none;
    opacity: 0.5;
}

.addSongs .result {
    display: flex;
    flex-direction: column;
}
.addSongs .result.inactive {
    pointer-events: none;
    text-decoration: line-through;
}

.addSongs .result .image {
    width: 100%;
}
.addSongs .result .image img {
    width: 100%;
}

.addSongs .result .text {
    flex: 1;
    text-align: left;
    padding: 24px 0;
}
.addSongs .result .actions button {
    margin: 0;
}

.clearUrl {
    text-align: right;
    margin: 0 12 -32 0;
    font-family: 'Helvetica';
}

.instructions {
    font-weight: bold;
    margin: 64px 0 12px 0;
}

.instructions small {
    font-size: 12px;
    font-style: italic;
}

[name="url"] {
    font-size: 14px;
    padding: 6px;
}

/* extra rules for large screens */
@media (min-width: 800px) {
    [name="url"] {
        font-size: unset;
        padding: revert;
    }

    .addSongs .result {
        display: flex;
        flex-direction: row;
    }    
    .addSongs .result .image {
        width: 25%;
    }

    .addSongs .result .text {
        flex: 1;
        text-align: left;
        padding: 0 32px;
    }
} 


