.trl-wrapper {
    background-color: darkorange;
    padding: .3rem;
}

.trl-wrapper-alert {
    background-color: rgb(255, 0, 0);
}

.trl-element {
    background-color: beige;
    padding: .1rem;
    border: .1rem solid #000000;
    margin-left: .1rem;
    min-height: 13rem;
}

.trl-mty {
    background: repeating-linear-gradient(-55deg,
            #f4f4f4,
            #f4f4f4 10px,
            #ffffff 10px,
            #ffffff 20px);
}

.trl-full {
    background-color: rgb(183, 255, 183);
}

.trl-skipped {
    background: repeating-linear-gradient(-55deg,
            #e1e0e0,
            #e1e0e0 10px,
            #d2d2d2 10px,
            #d2d2d2 20px);
}

.trl-bg-img {
    background-image: url("/img/trailer-bk-01.png");
    background-size: contain;
    background-repeat: no-repeat;
}


.trl-element-wrapper {
    background-color: rgb(253, 253, 253);
    padding: .3rem;
    margin: .7rem .7rem .2rem .6rem;
}

.trl-element-wrapper-alert {
    background-color: rgb(255, 0, 0);
}

.statsTop {
    font-size: 24px;
    font-weight: bold;
}

.statsBottom {
    font-size: 18px;
}

.statsCol {
    text-align: center;
}



.quickgrid[theme=adenaqg] {
    min-width: 100%;
}

.quickgrid[theme=adenaqg] table {
    min-width: 100%;
    border-collapse: inherit;
}

.quickgrid[theme=adenaqg] thead {
    background-color: rgb(230, 230, 230);
}

.quickgrid[theme=adenaqg] .col-title {
    gap: 0.4rem;
    /* Separate the sort indicator from title text */
    font-weight: bold;
    background-color: rgb(230, 230, 230);
}

.quickgrid[theme=adenaqg] .sort-indicator {
    color: blue;
}

.quickgrid[theme=adenaqg] button.col-title {
    border: none;
}

.quickgrid[theme=adenaqg] button.col-title:hover,
.quickgrid[theme=adenaqg] .col-options-button:hover {
    background-color: rgb(198, 198, 198);
}

.quickgrid[theme=adenaqg] button.col-title:active,
.quickgrid[theme=adenaqg] .col-options-button:active {
    background-color: yellow;
}


.loading-progress {
    position: relative;
    display: block;
    width: 8rem;
    height: 8rem;
    margin: 20vh auto 1rem auto;
}

.loading-progress circle {
    fill: none;
    stroke: #e0e0e0;
    stroke-width: 0.6rem;
    transform-origin: 50% 50%;
    transform: rotate(-90deg);
}

.loading-progress circle:last-child {
    stroke: #1b6ec2;
    stroke-dasharray:
        calc(3.141 * var(--blazor-load-percentage, 0%) * 0.8),
        500%;
    transition: stroke-dasharray 0.05s ease-in-out;
}

.loading-progress-text {
    position: relative;
    text-align: center;
    font-weight: bold;
    top: -90px;
}

.loading-progress-text:after {
    content: var(--blazor-load-percentage-text, "Loading");
}



.lg-view {
    display: inline-block;
}

.sm-view {
    display: none;
}

@media screen and (max-width: 500px) {
    .lg-view {
        display: none;
    }

    .sm-view {
        display: inline-block;
    }
}