﻿html, body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #e9ecef;
    overflow: hidden;
    background-color: black;
    background-image: url(/images/bg.png);
}

.max-height {
    height: 100vh;
}

.select-btn-margin {
    margin: 0px 0px 5px 0px;
}

.search-btn-margin {
    margin: 5px;
}

.margin10 {
    margin: 10px;
}

.btn-next {
    min-width: 25%;
}

.loader {
    border: 16px solid #e9ecef; /* Light grey */
    border-top: 16px solid #007bff; /* Blue */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
}

.optionText {
    display:block;
    font-size: large;
}
.optionSubtext {
    display: block;
    font-size: smaller;
    opacity: 0.8;
}

.bottom {
    position: fixed;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 0%);
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.btn-artist-image {
    max-height: 60px;
    width: 60px;
    border-radius: 6px;
    float: left;
    margin-right: 12px;
}

.search-row {
    height: 80px;
    text-align: left;
}

.answer-row {
    flex: 0 0 auto!important;
    text-align: center;
}

.scrollable {
    overflow-y: auto;
}

a {
    color: inherit;
    border-radius: 4px;
    height: 3rem;
    display: flex;
    align-items: center;
    line-height: 3rem;
}

    a.active {
        color: darkgray;
    }

    a:hover {
        color: darkgray;
    }

#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }