﻿#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;
    }

:root {
    /* Define initial background colors */
    --bg-color-start: #65b1cc; /*Light blue */
    --bg-color-end: #a1d3e4;

    /*Darker blue */
}

html {
    /* Apply a base gradient */
    background: linear-gradient(to bottom, var(--bg-color-start), var(--bg-color-end));
    background-repeat: no-repeat;
    background-attachment: fixed;
}

@media (max-width: 1023px) {
    .showArtwork {
        height: 100px;
        width: 100px;
        box-shadow: 0 10px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19) !important;
    }

    .episodeArtwork {
        height: 80px;
        width: 80px;
        border-radius: 10%;
    }


    .navMobile {
        position: absolute;
        top: 10px;
        right: 10px;
    }

    .titleColumn {
        padding-bottom: 0px;
    }


}

@media (min-width: 1023px) {

    .showArtwork {
        height: 200px;
        width: 200px;
        top: 40px;
        left: 25px;
        box-shadow: 0 10px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19) !important;
    }

    .episodeArtwork {
        height: 150px;
        width: 150px;
        border-radius: 10%;
    }

    .imageColumn {
        padding-top: 0px
    }

    .titleColumn {
        margin-left: 2em;
        align-self: flex-end
    }
}