/* /Components/Layout/MainLayout.razor.rz.scp.css */
.main-layout[b-a894ydf4dt] {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main-content[b-a894ydf4dt] {
    flex: 1;
    padding: 20px 0;
}

.navbar-brand[b-a894ydf4dt] {
    font-weight: bold;
}

.dropdown-menu[b-a894ydf4dt] {
    right: 0;
    left: auto;
}

#blazor-error-ui[b-a894ydf4dt] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-a894ydf4dt] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Shared/DownloadsChart.razor.rz.scp.css */
/* The dashboard is light-only Bootstrap, so the chart commits to the white card surface
   rather than carrying a dark palette that nothing here would ever switch on. The bar
   colour clears 3:1 against that surface; the chrome is Bootstrap's own gray scale, so
   the axis and gridlines sit in the same neutrals as the rest of the page. */

.dlc[b-grhzazaovv] {
    --dlc-series: #2a78d6;
    --dlc-series-hover: #1c5cab;
    --dlc-gridline: #dee2e6;
    --dlc-baseline: #adb5bd;
    --dlc-muted: #6c757d;
    --dlc-secondary: #495057;
    --dlc-ink: #212529;
}

.dlc-head[b-grhzazaovv] {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.dlc-title[b-grhzazaovv] {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--dlc-secondary);
}

.dlc-summary[b-grhzazaovv] {
    font-size: 0.8125rem;
    color: var(--dlc-muted);
}

.dlc-summary strong[b-grhzazaovv] {
    color: var(--dlc-ink);
}

.dlc-dot[b-grhzazaovv] {
    margin: 0 0.25rem;
}

/* A gutter for the axis ticks, then the plot; the day labels sit under the plot only. */
.dlc-grid[b-grhzazaovv] {
    display: grid;
    grid-template-columns: 2rem 1fr;
    column-gap: 0.5rem;
}

.dlc-axis[b-grhzazaovv] {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    height: 180px;
    font-size: 0.6875rem;
    font-variant-numeric: tabular-nums;
    color: var(--dlc-muted);
}

/* The tick sits on its gridline rather than above it. */
.dlc-axis span[b-grhzazaovv] {
    line-height: 1;
    transform: translateY(-0.34em);
}

.dlc-axis span:last-child[b-grhzazaovv] {
    transform: translateY(0.34em);
}

.dlc-cols[b-grhzazaovv] {
    position: relative;
    display: flex;
    align-items: flex-end;
    height: 180px;
}

.dlc-gridline[b-grhzazaovv] {
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
}

.dlc-gridline-top[b-grhzazaovv] {
    top: 0;
    background-color: var(--dlc-gridline);
}

.dlc-gridline-base[b-grhzazaovv] {
    bottom: 0;
    background-color: var(--dlc-baseline);
}

.dlc-col[b-grhzazaovv] {
    position: relative;
    flex: 1 1 0;
    min-width: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

/* The 2px the bar gives up is the gap that separates it from its neighbours - no border. */
.dlc-bar[b-grhzazaovv] {
    width: calc(100% - 2px);
    max-width: 24px;
    min-height: 2px;
    margin: 0 auto;
    background-color: var(--dlc-series);
    border-radius: 4px 4px 0 0;
    transition: background-color 0.15s ease;
}

.dlc-col:hover .dlc-bar[b-grhzazaovv] {
    background-color: var(--dlc-series-hover);
}

.dlc-tip[b-grhzazaovv] {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    padding: 0.3rem 0.5rem;
    border-radius: 6px;
    background-color: rgba(33, 37, 41, 0.94);
    color: #fff;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.12s ease;
}

.dlc-tip-start[b-grhzazaovv] {
    left: 0;
    transform: none;
}

.dlc-tip-end[b-grhzazaovv] {
    left: auto;
    right: 0;
    transform: none;
}

.dlc-col:hover .dlc-tip[b-grhzazaovv] {
    opacity: 1;
}

.dlc-tip-value[b-grhzazaovv] {
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.2;
}

.dlc-tip-label[b-grhzazaovv] {
    font-size: 0.6875rem;
    color: #ced4da;
    line-height: 1.2;
}

.dlc-empty[b-grhzazaovv] {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    font-size: 0.875rem;
    color: var(--dlc-muted);
}

.dlc-xaxis[b-grhzazaovv] {
    grid-column: 2;
    display: flex;
    margin-top: 0.375rem;
}

/* Each day keeps a cell so the labels stay under the bars they belong to, even though
   only every seventh one is named. */
.dlc-xcell[b-grhzazaovv] {
    position: relative;
    flex: 1 1 0;
    min-width: 0;
    height: 0.875rem;
}

.dlc-xcell span[b-grhzazaovv] {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.6875rem;
    line-height: 0.875rem;
    white-space: nowrap;
    color: var(--dlc-muted);
}

.dlc-details[b-grhzazaovv] {
    margin-top: 0.75rem;
}

.dlc-details summary[b-grhzazaovv] {
    font-size: 0.8125rem;
    color: var(--dlc-muted);
    cursor: pointer;
}

.dlc-details summary:hover[b-grhzazaovv] {
    color: var(--dlc-ink);
}

.dlc-table-scroll[b-grhzazaovv] {
    max-height: 15rem;
    overflow-y: auto;
    margin-top: 0.5rem;
}

.dlc-table-scroll table[b-grhzazaovv] {
    font-size: 0.8125rem;
    font-variant-numeric: tabular-nums;
}
