/* /Components/Dialogs/AboutDialog.razor.rz.scp.css */
.info-dialog-text[b-e0ziacscen] {
    color: #475569;
    font-size: 13px;
    line-height: 1.45;
}

.about-grid[b-e0ziacscen] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.about-item[b-e0ziacscen] {
    padding: 10px 12px;
    border: 1px solid #dbe3ee;
    border-radius: 8px;
    background: #ffffff;
}

.about-label[b-e0ziacscen] {
    margin-bottom: 4px;
    color: #64748b;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .02em;
}

.about-value[b-e0ziacscen] {
    color: #0f172a;
    font-size: 13px;
    line-height: 1.35;
    font-weight: 600;
    word-break: break-word;
    overflow-wrap: anywhere;
}

@media (max-width: 640px) {
    .about-grid[b-e0ziacscen] {
        grid-template-columns: minmax(0, 1fr);
    }
}
/* /Components/Dialogs/HelpDialog.razor.rz.scp.css */
.info-dialog-text[b-zxg579z1t8] {
    color: #475569;
}
/* /Components/Shared/BusyIndicator.razor.rz.scp.css */
.busy-indicator[b-h8yoc6zo4u] {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 10px 12px;
    border: 1px solid #dbe3ee;
    border-radius: 10px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.busy-indicator-header[b-h8yoc6zo4u] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-width: 0;
}

.busy-indicator-text[b-h8yoc6zo4u] {
    min-width: 0;
    color: #334155;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.busy-indicator-percent[b-h8yoc6zo4u] {
    flex-shrink: 0;
    color: #1d4ed8;
    font-size: 12px;
    font-weight: 700;
}

.busy-indicator-track[b-h8yoc6zo4u] {
    overflow: hidden;
    height: 8px;
    border-radius: 999px;
    background: #e2e8f0;
}

.busy-indicator-fill[b-h8yoc6zo4u] {
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #60a5fa 0%, #2563eb 100%);
    transition: width 0.12s ease-out;
}

.busy-indicator-track.is-indeterminate .busy-indicator-fill[b-h8yoc6zo4u] {
    width: 35%;
    animation: busy-indicator-slide-b-h8yoc6zo4u 1s ease-in-out infinite;
}

@keyframes busy-indicator-slide-b-h8yoc6zo4u {
    from {
        transform: translateX(-110%);
    }

    to {
        transform: translateX(300%);
    }
}
