/* /Components/Fasting/FastingTrackerStatisticsTab.razor.rz.scp.css */
/* Statistics Wrapper */
.statistics-wrapper[b-uor3c5r3ac] {
    min-height: 100vh;
    background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 50%, #f8fafc 100%);
    padding: 1rem;
    transition: all 0.3s ease;
}

.statistics-wrapper.statistics-wrapper.theme-dark[b-uor3c5r3ac] {
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
}

.statistics-content[b-uor3c5r3ac] {
    max-width: 500px;
    margin: 0 auto;
    padding: 1rem;
}

/* Light Theme (default) */
.period-selector[b-uor3c5r3ac] {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    background: #f3f4f6;
    padding: 0.25rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.statistics-wrapper.statistics-wrapper.theme-dark .period-selector[b-uor3c5r3ac] {
    background: rgba(255, 255, 255, 0.08);
}

.period-btn[b-uor3c5r3ac] {
    padding: 0.5rem 1rem;
    border: none;
    background: transparent;
    border-radius: 10px;
    cursor: pointer;
    font-size: 0.875rem;
    color: #6b7280;
    transition: all 0.2s ease;
}

.period-btn:hover[b-uor3c5r3ac] {
    color: #374151;
}

.statistics-wrapper.theme-dark .period-btn[b-uor3c5r3ac] {
    color: #9ca3af;
}

.statistics-wrapper.theme-dark .period-btn:hover[b-uor3c5r3ac] {
    color: #e0e7ff;
}

.period-btn.active[b-uor3c5r3ac] {
    background: #10b981;
    color: white;
    font-weight: 500;
}

.dev-notice[b-uor3c5r3ac] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    color: #166534;
}

.statistics-wrapper.theme-dark .dev-notice[b-uor3c5r3ac] {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.3);
    color: #6ee7b7;
}

.notice-icon[b-uor3c5r3ac] {
    font-size: 1.25rem;
}

.stats-card[b-uor3c5r3ac] {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.statistics-wrapper.theme-dark .stats-card[b-uor3c5r3ac] {
    background: rgba(45, 40, 60, 0.6);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: none;
}

.card-label[b-uor3c5r3ac] {
    font-size: 0.875rem;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.statistics-wrapper.theme-dark .card-label[b-uor3c5r3ac] {
    color: #9ca3af;
}

.label-icon[b-uor3c5r3ac] {
    font-size: 1rem;
}

.total-hours-card[b-uor3c5r3ac] {
    text-align: center;
}

.total-hours-card .card-label[b-uor3c5r3ac] {
    justify-content: center;
    margin-bottom: 0.5rem;
}

.big-number[b-uor3c5r3ac] {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.big-number .number-value[b-uor3c5r3ac] {
    font-size: 3.5rem;
    font-weight: 300;
    color: #10b981;
}

.big-number .number-unit[b-uor3c5r3ac] {
    font-size: 1.5rem;
    color: #6b7280;
}

.statistics-wrapper.theme-dark .big-number .number-unit[b-uor3c5r3ac] {
    color: #9ca3af;
}

.current-fasting-card .card-header-row[b-uor3c5r3ac] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.current-hours-badge[b-uor3c5r3ac] {
    background: #10b981;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.progress-container[b-uor3c5r3ac] {
    margin-bottom: 0.75rem;
}

.progress-bar[b-uor3c5r3ac] {
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
}

.statistics-wrapper.theme-dark .progress-bar[b-uor3c5r3ac] {
    background: rgba(255, 255, 255, 0.1);
}

.progress-fill[b-uor3c5r3ac] {
    height: 100%;
    background: linear-gradient(90deg, #10b981, #34d399);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.progress-labels[b-uor3c5r3ac] {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: #9ca3af;
}

.target-label[b-uor3c5r3ac] {
    color: #10b981;
    font-weight: 500;
}

.fasting-window[b-uor3c5r3ac] {
    text-align: center;
    font-size: 1rem;
    color: #374151;
}

.statistics-wrapper.theme-dark .fasting-window[b-uor3c5r3ac] {
    color: #d1d5db;
}

.stats-row[b-uor3c5r3ac] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.mini-card[b-uor3c5r3ac] {
    padding: 1rem;
}

.mini-card .card-label[b-uor3c5r3ac] {
    margin-bottom: 0.5rem;
}

.mini-value[b-uor3c5r3ac] {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.mini-value .value-number[b-uor3c5r3ac] {
    font-size: 2rem;
    font-weight: 600;
    color: #1f2937;
}

.statistics-wrapper.theme-dark .mini-value .value-number[b-uor3c5r3ac] {
    color: #f3f4f6;
}

.mini-value .value-unit[b-uor3c5r3ac] {
    font-size: 1rem;
    color: #6b7280;
}

.statistics-wrapper.theme-dark .mini-value .value-unit[b-uor3c5r3ac] {
    color: #9ca3af;
}

.circle-card[b-uor3c5r3ac] {
    text-align: center;
}

.circle-container[b-uor3c5r3ac] {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto 1.5rem;
}

.progress-ring[b-uor3c5r3ac] {
    transform: rotate(-90deg);
    width: 100%;
    height: 100%;
}

.progress-ring-bg[b-uor3c5r3ac] {
    fill: none;
    stroke: #e5e7eb;
    stroke-width: 10;
}

.statistics-wrapper.theme-dark .progress-ring-bg[b-uor3c5r3ac] {
    stroke: rgba(255, 255, 255, 0.1);
}

.progress-ring-fill[b-uor3c5r3ac] {
    fill: none;
    stroke: #10b981;
    stroke-width: 10;
    stroke-linecap: round;
    transition: stroke-dashoffset 0.5s ease;
}

.circle-content[b-uor3c5r3ac] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.circle-percentage[b-uor3c5r3ac] {
    display: block;
    font-size: 1.75rem;
    font-weight: 600;
    color: #1f2937;
}

.statistics-wrapper.theme-dark .circle-percentage[b-uor3c5r3ac] {
    color: #f3f4f6;
}

.circle-label[b-uor3c5r3ac] {
    display: block;
    font-size: 0.75rem;
    color: #6b7280;
}

.statistics-wrapper.theme-dark .circle-label[b-uor3c5r3ac] {
    color: #9ca3af;
}

.circle-stats[b-uor3c5r3ac] {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.circle-stat[b-uor3c5r3ac] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stat-dot[b-uor3c5r3ac] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.stat-dot.green[b-uor3c5r3ac] { background: #10b981; }
.stat-dot.orange[b-uor3c5r3ac] { background: #f59e0b; }
.stat-dot.red[b-uor3c5r3ac] { background: #ef4444; }

.stat-info[b-uor3c5r3ac] {
    text-align: left;
}

.stat-value[b-uor3c5r3ac] {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1f2937;
}

.statistics-wrapper.theme-dark .stat-value[b-uor3c5r3ac] {
    color: #f3f4f6;
}

.stat-label[b-uor3c5r3ac] {
    display: block;
    font-size: 0.7rem;
    color: #6b7280;
}

.statistics-wrapper.theme-dark .stat-label[b-uor3c5r3ac] {
    color: #9ca3af;
}

/* Highlight cards */
.highlight-card[b-uor3c5r3ac] {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.statistics-wrapper.theme-dark .highlight-card[b-uor3c5r3ac] {
    background: linear-gradient(135deg, rgba(45, 40, 60, 0.8) 0%, rgba(45, 40, 60, 0.6) 100%);
}

/* Milestones Card */
.milestones-card[b-uor3c5r3ac] {
    padding: 1.25rem;
}

.milestones-title[b-uor3c5r3ac] {
    margin-bottom: 1rem;
    font-weight: 500;
}

.milestones-grid[b-uor3c5r3ac] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.milestone-item[b-uor3c5r3ac] {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
}

.statistics-wrapper.theme-dark .milestone-item[b-uor3c5r3ac] {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.milestone-icon[b-uor3c5r3ac] {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    opacity: 0.7;
}

.milestone-count[b-uor3c5r3ac] {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1f2937;
}

.statistics-wrapper.theme-dark .milestone-count[b-uor3c5r3ac] {
    color: #f3f4f6;
}

.milestone-label[b-uor3c5r3ac] {
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 0.25rem;
}

.statistics-wrapper.theme-dark .milestone-label[b-uor3c5r3ac] {
    color: #9ca3af;
}

/* Pattern Card */
.pattern-card[b-uor3c5r3ac] {
    padding: 1.25rem;
}

.pattern-title[b-uor3c5r3ac] {
    margin-bottom: 1rem;
    font-weight: 500;
}

.pattern-row[b-uor3c5r3ac] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.pattern-item[b-uor3c5r3ac] {
    padding: 0.875rem;
    border-radius: 10px;
}

.pattern-item.best-day[b-uor3c5r3ac] {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.statistics-wrapper.theme-dark .pattern-item.best-day[b-uor3c5r3ac] {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2) 0%, rgba(251, 191, 36, 0.1) 100%);
}

.pattern-item.regularity[b-uor3c5r3ac] {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
}

.statistics-wrapper.theme-dark .pattern-item.regularity[b-uor3c5r3ac] {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.pattern-item-label[b-uor3c5r3ac] {
    font-size: 0.75rem;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 0.25rem;
}

.statistics-wrapper.theme-dark .pattern-item-label[b-uor3c5r3ac] {
    color: #9ca3af;
}

.pattern-item-value[b-uor3c5r3ac] {
    font-size: 1.125rem;
    font-weight: 600;
    color: #b45309;
}

.statistics-wrapper.theme-dark .pattern-item-value[b-uor3c5r3ac] {
    color: #fbbf24;
}

.regularity-value[b-uor3c5r3ac] {
    color: #dc2626;
}

.statistics-wrapper.theme-dark .regularity-value[b-uor3c5r3ac] {
    color: #f87171;
}

.pattern-banner[b-uor3c5r3ac] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-radius: 8px;
    font-size: 0.8rem;
    color: #475569;
}

.statistics-wrapper.theme-dark .pattern-banner[b-uor3c5r3ac] {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    color: #d1d5db;
}

.banner-icon[b-uor3c5r3ac] {
    font-size: 1rem;
}

/* Phase Card */
.phase-card[b-uor3c5r3ac] {
    text-align: center;
    padding: 1.5rem;
}

.phase-title[b-uor3c5r3ac] {
    justify-content: flex-start;
    font-weight: 600;
    font-size: 1rem;
    color: #1f2937;
    margin-bottom: 1rem;
}

.statistics-wrapper.theme-dark .phase-title[b-uor3c5r3ac] {
    color: #f3f4f6;
}

.phase-circle-container[b-uor3c5r3ac] {
    position: relative;
    width: 160px;
    height: 160px;
    margin: 0 auto 1.5rem;
}

.phase-ring[b-uor3c5r3ac] {
    transform: rotate(-90deg);
    width: 100%;
    height: 100%;
}

.phase-ring-bg[b-uor3c5r3ac] {
    fill: none;
    stroke: #e5e7eb;
    stroke-width: 12;
}

.statistics-wrapper.theme-dark .phase-ring-bg[b-uor3c5r3ac] {
    stroke: rgba(255, 255, 255, 0.1);
}

.phase-ring-segment[b-uor3c5r3ac] {
    fill: none;
    stroke-width: 12;
    stroke-linecap: round;
    transition: stroke-dashoffset 0.5s ease;
}

.phase-ring-segment.green-segment[b-uor3c5r3ac] { stroke: #10b981; }
.phase-ring-segment.orange-segment[b-uor3c5r3ac] { stroke: #f59e0b; }
.phase-ring-segment.red-segment[b-uor3c5r3ac] { stroke: #ef4444; }

.phase-circle-content[b-uor3c5r3ac] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.phase-total-value[b-uor3c5r3ac] {
    display: block;
    font-size: 2rem;
    font-weight: 600;
    color: #1f2937;
}

.statistics-wrapper.theme-dark .phase-total-value[b-uor3c5r3ac] {
    color: #f3f4f6;
}

.phase-total-label[b-uor3c5r3ac] {
    display: block;
    font-size: 0.8rem;
    color: #6b7280;
}

.statistics-wrapper.theme-dark .phase-total-label[b-uor3c5r3ac] {
    color: #9ca3af;
}

.phase-legend[b-uor3c5r3ac] {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.phase-legend-item[b-uor3c5r3ac] {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.legend-dot[b-uor3c5r3ac] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.legend-dot.green[b-uor3c5r3ac] { background: #10b981; }
.legend-dot.orange[b-uor3c5r3ac] { background: #f59e0b; }
.legend-dot.red[b-uor3c5r3ac] { background: #ef4444; }

.legend-label[b-uor3c5r3ac] {
    font-size: 0.75rem;
    color: #6b7280;
}

.statistics-wrapper.theme-dark .legend-label[b-uor3c5r3ac] {
    color: #9ca3af;
}

/* Phase Breakdown */
.phase-breakdown[b-uor3c5r3ac] {
    text-align: left;
    border-top: 1px solid #e5e7eb;
    padding-top: 1.5rem;
}

.statistics-wrapper.theme-dark .phase-breakdown[b-uor3c5r3ac] {
    border-top-color: rgba(255, 255, 255, 0.1);
}

.phase-section[b-uor3c5r3ac] {
    margin-bottom: 1.5rem;
}

.phase-section-header[b-uor3c5r3ac] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #f3f4f6;
}

.statistics-wrapper.theme-dark .phase-section-header[b-uor3c5r3ac] {
    border-bottom-color: rgba(255, 255, 255, 0.05);
}

.phase-section-title[b-uor3c5r3ac] {
    font-weight: 600;
    color: #374151;
    font-size: 0.9rem;
}

.statistics-wrapper.theme-dark .phase-section-title[b-uor3c5r3ac] {
    color: #d1d5db;
}

.phase-section-time[b-uor3c5r3ac] {
    font-size: 0.8rem;
    color: #6b7280;
}

.statistics-wrapper.theme-dark .phase-section-time[b-uor3c5r3ac] {
    color: #9ca3af;
}

.phase-item[b-uor3c5r3ac] {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    gap: 0.75rem;
}

.phase-dot[b-uor3c5r3ac] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.phase-item-name[b-uor3c5r3ac] {
    flex: 1;
    font-size: 0.85rem;
    color: #4b5563;
}

.statistics-wrapper.theme-dark .phase-item-name[b-uor3c5r3ac] {
    color: #d1d5db;
}

.phase-item-time[b-uor3c5r3ac] {
    font-size: 0.8rem;
    color: #9ca3af;
    text-align: right;
}

.phase-progress-line[b-uor3c5r3ac] {
    height: 3px;
    border-radius: 2px;
    margin-top: 0.5rem;
    opacity: 0.3;
}

.phase-progress-line.red-line[b-uor3c5r3ac] { background: #ef4444; }
.phase-progress-line.orange-line[b-uor3c5r3ac] { background: #f59e0b; }
.phase-progress-line.green-line[b-uor3c5r3ac] { background: #10b981; }
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-3gsfh17trw] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-3gsfh17trw] {
    flex: 1;
}

.sidebar[b-3gsfh17trw] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-3gsfh17trw] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-3gsfh17trw]  a, .top-row[b-3gsfh17trw]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-3gsfh17trw]  a:hover, .top-row[b-3gsfh17trw]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-3gsfh17trw]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-3gsfh17trw] {
        justify-content: space-between;
    }

    .top-row[b-3gsfh17trw]  a, .top-row[b-3gsfh17trw]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-3gsfh17trw] {
        flex-direction: row;
    }

    .sidebar[b-3gsfh17trw] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-3gsfh17trw] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-3gsfh17trw]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-3gsfh17trw], article[b-3gsfh17trw] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-3gsfh17trw] {
    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-3gsfh17trw] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-1k062b5v1a] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1);
}

.navbar-toggler:checked[b-1k062b5v1a] {
    background-color: rgba(255, 255, 255, 0.5);
}

.top-row[b-1k062b5v1a] {
    min-height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-1k062b5v1a] {
    font-size: 1.1rem;
}

.bi[b-1k062b5v1a] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-1k062b5v1a] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-1k062b5v1a] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-1k062b5v1a] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.nav-item[b-1k062b5v1a] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-1k062b5v1a] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-1k062b5v1a] {
        padding-bottom: 1rem;
    }

    .nav-item[b-1k062b5v1a]  .nav-link {
        color: #d7d7d7;
        background: none;
        border: none;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        width: 100%;
    }

.nav-item[b-1k062b5v1a]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-1k062b5v1a]  .nav-link:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

.nav-scrollable[b-1k062b5v1a] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-1k062b5v1a] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-1k062b5v1a] {
        display: none;
    }

    .nav-scrollable[b-1k062b5v1a] {
        /* Never collapse the sidebar for wide screens */
        display: block;

        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-6e6vlf5mq9],
.components-reconnect-repeated-attempt-visible[b-6e6vlf5mq9],
.components-reconnect-failed-visible[b-6e6vlf5mq9],
.components-pause-visible[b-6e6vlf5mq9],
.components-resume-failed-visible[b-6e6vlf5mq9],
.components-rejoining-animation[b-6e6vlf5mq9] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-6e6vlf5mq9],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-6e6vlf5mq9],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-6e6vlf5mq9],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-6e6vlf5mq9],
#components-reconnect-modal.components-reconnect-retrying[b-6e6vlf5mq9],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-6e6vlf5mq9],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-6e6vlf5mq9],
#components-reconnect-modal.components-reconnect-failed[b-6e6vlf5mq9],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-6e6vlf5mq9] {
    display: block;
}


#components-reconnect-modal[b-6e6vlf5mq9] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-6e6vlf5mq9 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-6e6vlf5mq9 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-6e6vlf5mq9 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-6e6vlf5mq9]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-6e6vlf5mq9 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-6e6vlf5mq9 {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-6e6vlf5mq9 {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-6e6vlf5mq9 {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-6e6vlf5mq9] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-6e6vlf5mq9] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-6e6vlf5mq9] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-6e6vlf5mq9] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-6e6vlf5mq9] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-6e6vlf5mq9] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-6e6vlf5mq9] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-6e6vlf5mq9 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-6e6vlf5mq9] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-6e6vlf5mq9 {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
