/* _content/CSPMigrationProject.Web/Components/Layout/LoginDisplay.razor.rz.scp.css */
/* Login Display Styles */

.user-menu[b-4i7s06l7y8] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-info[b-4i7s06l7y8] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
}

.user-icon[b-4i7s06l7y8] {
    width: 24px;
    height: 24px;
    color: #fff;
}

.user-name[b-4i7s06l7y8] {
    color: #fff;
    font-weight: 500;
    font-size: 0.95rem;
}

.btn[b-4i7s06l7y8] {
    padding: 0.625rem 1.25rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s;
    border: 2px solid transparent;
    display: inline-block;
}

.btn-login[b-4i7s06l7y8] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #fff;
    color: #0078d4;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s;
}

.btn-login:hover[b-4i7s06l7y8] {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-primary[b-4i7s06l7y8] {
    background: #fff;
    color: #0078d4;
}

.btn-primary:hover[b-4i7s06l7y8] {
    background: #f0f0f0;
    transform: translateY(-1px);
}

.btn-secondary[b-4i7s06l7y8] {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover[b-4i7s06l7y8] {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-1px);
}

.btn-outline[b-4i7s06l7y8] {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline:hover[b-4i7s06l7y8] {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

.btn-admin[b-4i7s06l7y8] {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background: #fbbf24;
    color: #78350f;
    border: none;
}

.btn-admin:hover[b-4i7s06l7y8] {
    background: #f59e0b;
    transform: translateY(-1px);
}

.btn-admin svg[b-4i7s06l7y8] {
    width: 16px;
    height: 16px;
}

.btn-report[b-4i7s06l7y8] {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background: #14b8a6;
    color: #fff;
    border: none;
}

.btn-report:hover[b-4i7s06l7y8] {
    background: #0d9488;
    transform: translateY(-1px);
}

.btn-report svg[b-4i7s06l7y8] {
    width: 16px;
    height: 16px;
}

.btn-switch-migration[b-4i7s06l7y8] {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.625rem 1rem;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-switch-migration:hover[b-4i7s06l7y8] {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-1px);
}

.btn-switch-migration svg[b-4i7s06l7y8] {
    width: 16px;
    height: 16px;
}

.login-actions[b-4i7s06l7y8] {
    display: flex;
    gap: 1rem;
}

.login-icon[b-4i7s06l7y8] {
    width: 20px;
    height: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .user-menu[b-4i7s06l7y8] {
        flex-direction: column;
        align-items: stretch;
    }

    .user-info[b-4i7s06l7y8] {
        justify-content: center;
    }

    .btn[b-4i7s06l7y8] {
        text-align: center;
    }
}

@media (max-width: 640px) {
    .user-menu[b-4i7s06l7y8] {
        flex-direction: column;
        gap: 0.5rem;
    }

    .btn[b-4i7s06l7y8] {
        padding: 0.625rem 1.25rem;
        font-size: 0.9rem;
    }
}
/* _content/CSPMigrationProject.Web/Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-cw6y2kj1q8] {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.app-header[b-cw6y2kj1q8] {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(135deg, #0078d4 0%, #1565c0 100%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header-content[b-cw6y2kj1q8] {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo[b-cw6y2kj1q8] {
    display: flex;
    align-items: center;
}

.logo-text[b-cw6y2kj1q8] {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    letter-spacing: -0.02em;
}

main[b-cw6y2kj1q8] {
    flex: 1;
}

.content-full[b-cw6y2kj1q8] {
    padding: 0;
    margin: 0;
    width: 100%;
}

#blazor-error-ui[b-cw6y2kj1q8] {
    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[b-cw6y2kj1q8] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

@media (max-width: 768px) {
    .header-content[b-cw6y2kj1q8] {
        padding: 1rem 1.5rem;
        flex-direction: column;
        gap: 1rem;
    }

    .logo-text[b-cw6y2kj1q8] {
        font-size: 1.125rem;
    }
}
/* _content/CSPMigrationProject.Web/Components/Pages/Admin/AdminDashboard.razor.rz.scp.css */
.admin-container[b-acl8dxnn8f] {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.admin-header[b-acl8dxnn8f] {
    text-align: center;
    margin-bottom: 2rem;
}

.admin-header h1[b-acl8dxnn8f] {
    font-size: 2rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.admin-header .subtitle[b-acl8dxnn8f] {
    color: #666;
    font-size: 1rem;
}

.loading-container[b-acl8dxnn8f] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.spinner[b-acl8dxnn8f] {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #0078d4;
    border-radius: 50%;
    animation: spin-b-acl8dxnn8f 1s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin-b-acl8dxnn8f {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.access-denied[b-acl8dxnn8f] {
    text-align: center;
    padding: 3rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    margin: 0 auto;
}

.access-denied-icon[b-acl8dxnn8f] {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: #fee2e2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.access-denied-icon svg[b-acl8dxnn8f] {
    width: 40px;
    height: 40px;
    color: #dc2626;
}

.access-denied h2[b-acl8dxnn8f] {
    font-size: 1.5rem;
    color: #dc2626;
    margin-bottom: 1rem;
}

.access-denied p[b-acl8dxnn8f] {
    color: #666;
    margin-bottom: 0.5rem;
}

.debug-info[b-acl8dxnn8f] {
    font-size: 0.875rem;
    color: #999;
    margin-top: 1rem;
}

/* Tabs */
.admin-tabs[b-acl8dxnn8f] {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 0;
}

.tab-button[b-acl8dxnn8f] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    background: none;
    color: #666;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: all 0.2s ease;
}

.tab-button svg[b-acl8dxnn8f] {
    width: 18px;
    height: 18px;
}

.tab-button:hover[b-acl8dxnn8f] {
    color: #0078d4;
    background: #f3f4f6;
}

.tab-button.active[b-acl8dxnn8f] {
    color: #0078d4;
    border-bottom-color: #0078d4;
}

.tab-content[b-acl8dxnn8f] {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    padding: 1.5rem;
}

.form-help[b-acl8dxnn8f] {
    font-size: 0.875rem;
    color: #666;
    margin-top: 0.25rem;
}

.checkbox-group[b-acl8dxnn8f] {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.5rem;
}

.checkbox-item[b-acl8dxnn8f] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-item input[type="checkbox"][b-acl8dxnn8f] {
    width: 1.2rem;
    height: 1.2rem;
    cursor: pointer;
}

.checkbox-item label[b-acl8dxnn8f] {
    margin-bottom: 0;
    cursor: pointer;
    font-weight: 400;
}

/* Card styles */
.admin-card[b-acl8dxnn8f] {
    background: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border: 1px solid #e5e7eb;
}

.admin-card h3[b-acl8dxnn8f] {
    font-size: 1.1rem;
    color: #1a1a2e;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Form styles */
.form-group[b-acl8dxnn8f] {
    margin-bottom: 1rem;
}

.form-group label[b-acl8dxnn8f] {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.375rem;
}

.form-control[b-acl8dxnn8f] {
    width: 100%;
    padding: 0.625rem 0.875rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 0.95rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-control:focus[b-acl8dxnn8f] {
    outline: none;
    border-color: #0078d4;
    box-shadow: 0 0 0 3px rgba(0, 120, 212, 0.1);
}

.form-control.is-invalid[b-acl8dxnn8f] {
    border-color: #dc2626;
}

.form-row[b-acl8dxnn8f] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

/* Button styles */
.btn[b-acl8dxnn8f] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn svg[b-acl8dxnn8f] {
    width: 16px;
    height: 16px;
}

.btn-primary[b-acl8dxnn8f] {
    background: #0078d4;
    color: #fff;
}

.btn-primary:hover[b-acl8dxnn8f] {
    background: #0066b8;
}

.btn-primary:disabled[b-acl8dxnn8f] {
    background: #9ca3af;
    cursor: not-allowed;
}

.btn-secondary[b-acl8dxnn8f] {
    background: #f3f4f6;
    color: #374151;
    border: 1px solid #d1d5db;
}

.btn-secondary:hover[b-acl8dxnn8f] {
    background: #e5e7eb;
}

.btn-danger[b-acl8dxnn8f] {
    background: #dc2626;
    color: #fff;
}

.btn-danger:hover[b-acl8dxnn8f] {
    background: #b91c1c;
}

.btn-sm[b-acl8dxnn8f] {
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
}

.btn-icon[b-acl8dxnn8f] {
    padding: 0.375rem;
    background: transparent;
    border: none;
}

.btn-icon:hover[b-acl8dxnn8f] {
    background: #f3f4f6;
    border-radius: 4px;
}

/* Table styles */
.admin-table[b-acl8dxnn8f] {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

.admin-table th[b-acl8dxnn8f],
.admin-table td[b-acl8dxnn8f] {
    padding: 1rem 1.25rem;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.admin-table th[b-acl8dxnn8f] {
    background: #f9fafb;
    font-weight: 600;
    color: #374151;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.admin-table tbody tr:hover[b-acl8dxnn8f] {
    background: #f9fafb;
}

.admin-table .actions[b-acl8dxnn8f] {
    display: flex;
    gap: 0.5rem;
    justify-content: flex-end;
}

/* Responsive tables */
.table-responsive[b-acl8dxnn8f] {
    overflow-x: auto;
    margin-top: 1rem;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
}

.table-responsive .admin-table[b-acl8dxnn8f] {
    margin-top: 0;
    border-bottom: none;
}

/* Badge styles */
.badge[b-acl8dxnn8f] {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.625rem;
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 9999px;
}

.badge-success[b-acl8dxnn8f] {
    background: #dcfce7;
    color: #166534;
}

.badge-warning[b-acl8dxnn8f] {
    background: #fef3c7;
    color: #92400e;
}

.badge-danger[b-acl8dxnn8f] {
    background: #fee2e2;
    color: #991b1b;
}

.badge-info[b-acl8dxnn8f] {
    background: #dbeafe;
    color: #1e40af;
}

.badge-primary[b-acl8dxnn8f] {
    background: #e0f2fe;
    color: #0369a1;
}

/* Alert styles */
.alert[b-acl8dxnn8f] {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.alert-success[b-acl8dxnn8f] {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.alert-error[b-acl8dxnn8f] {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.alert-info[b-acl8dxnn8f] {
    background: #dbeafe;
    color: #1e40af;
    border: 1px solid #bfdbfe;
}

/* Modal overlay */
.modal-overlay[b-acl8dxnn8f] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-content[b-acl8dxnn8f] {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header[b-acl8dxnn8f] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.modal-header h3[b-acl8dxnn8f] {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0;
}

.modal-body[b-acl8dxnn8f] {
    margin-bottom: 1.5rem;
}

.modal-footer[b-acl8dxnn8f] {
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
}

/* Empty state */
.empty-state[b-acl8dxnn8f] {
    text-align: center;
    padding: 3rem 1rem;
    color: #6b7280;
}

.empty-state svg[b-acl8dxnn8f] {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.empty-state p[b-acl8dxnn8f] {
    margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .admin-container[b-acl8dxnn8f] {
        padding: 1rem;
    }
    
    .admin-tabs[b-acl8dxnn8f] {
        flex-wrap: wrap;
    }
    
    .tab-button[b-acl8dxnn8f] {
        flex: 1;
        justify-content: center;
        padding: 0.625rem 1rem;
        font-size: 0.875rem;
    }
    
    .admin-table[b-acl8dxnn8f] {
        font-size: 0.875rem;
    }
    
    .admin-table th[b-acl8dxnn8f],
    .admin-table td[b-acl8dxnn8f] {
        padding: 0.5rem;
    }
}
/* _content/CSPMigrationProject.Web/Components/Pages/Customers/CustomerMigrations.razor.rz.scp.css */
/* Page Layout */
.customer-migrations-page[b-olvmnz7aso] {
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.page-header[b-olvmnz7aso] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.header-content h1[b-olvmnz7aso] {
    margin: 0 0 0.5rem 0;
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
}

.subtitle[b-olvmnz7aso] {
    color: #6b7280;
    margin: 0;
}

.header-actions .btn[b-olvmnz7aso] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Config Banner */
.config-banner[b-olvmnz7aso] {
    background: linear-gradient(135deg, #dbeafe 0%, #ede9fe 100%);
    border: 1px solid #93c5fd;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    margin-bottom: 1.5rem;
}

.config-info[b-olvmnz7aso] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.config-label[b-olvmnz7aso] {
    color: #6b7280;
    font-size: 0.9rem;
}

/* Config Switcher */
.config-switcher[b-olvmnz7aso] {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.config-select[b-olvmnz7aso] {
    appearance: none;
    background: white;
    border: 1px solid #93c5fd;
    border-radius: 6px;
    padding: 0.375rem 2rem 0.375rem 0.75rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1f2937;
    cursor: pointer;
    min-width: 180px;
}

.config-select:focus[b-olvmnz7aso] {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.select-arrow[b-olvmnz7aso] {
    position: absolute;
    right: 0.5rem;
    pointer-events: none;
    color: #6b7280;
}

/* Content Card */
.content-card[b-olvmnz7aso] {
    background: white;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
}

/* Loading & Empty States */
.loading-container[b-olvmnz7aso] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    color: #6b7280;
}

.spinner[b-olvmnz7aso] {
    width: 40px;
    height: 40px;
    border: 3px solid #e5e7eb;
    border-top-color: #3b82f6;
    border-radius: 50%;
    animation: spin-b-olvmnz7aso 1s linear infinite;
}

@keyframes spin-b-olvmnz7aso {
    to {
        transform: rotate(360deg);
    }
}

.empty-state[b-olvmnz7aso] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    text-align: center;
    color: #6b7280;
}

.empty-state h3[b-olvmnz7aso] {
    margin: 1rem 0 0.5rem;
    color: #374151;
}

.empty-state p[b-olvmnz7aso] {
    margin-bottom: 1.5rem;
}

/* Stats Header */
.stats-header[b-olvmnz7aso] {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.completion-ring[b-olvmnz7aso] {
    position: relative;
    width: 80px;
    height: 80px;
}

.circular-chart[b-olvmnz7aso] {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.circle-bg[b-olvmnz7aso] {
    fill: none;
    stroke: #e5e7eb;
    stroke-width: 3;
}

.circle[b-olvmnz7aso] {
    fill: none;
    stroke: #0078d4;
    stroke-width: 3;
    stroke-linecap: round;
    transition: stroke-dasharray 0.5s ease;
}

.completion-ring .percentage[b-olvmnz7aso] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.1rem;
    font-weight: 700;
    color: #0078d4;
}

.stats-info[b-olvmnz7aso] {
    flex: 1;
}

.stats-info h3[b-olvmnz7aso] {
    margin: 0 0 0.25rem;
    font-size: 1.1rem;
    color: #1f2937;
}

.stats-info p[b-olvmnz7aso] {
    margin: 0;
    color: #6b7280;
    font-size: 0.9rem;
}

.last-sync[b-olvmnz7aso] {
    display: block;
    font-size: 0.8rem;
    color: #9ca3af;
    margin-top: 0.25rem;
}

/* Breakdown Circles Layout */
.breakdown-circles[b-olvmnz7aso] {
    display: flex;
    gap: 2rem;
    flex: 1;
}

.breakdown-circle-item[b-olvmnz7aso] {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.breakdown-circle-item .completion-ring[b-olvmnz7aso] {
    width: 70px;
    height: 70px;
    margin-bottom: 0.5rem;
}

.breakdown-circle-item .percentage[b-olvmnz7aso] {
    font-size: 1rem;
}

.circle-label h4[b-olvmnz7aso] {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: #374151;
}

.circle-label p[b-olvmnz7aso] {
    margin: 0.25rem 0 0;
    font-size: 0.75rem;
    color: #6b7280;
}

/* NCE Circle Color - Blue */
.nce-circle[b-olvmnz7aso] {
    stroke: #3b82f6;
}

.breakdown-circle-item.nce .percentage[b-olvmnz7aso] {
    color: #3b82f6;
}

/* Azure Circle Color - Cyan */
.azure-circle[b-olvmnz7aso] {
    stroke: #06b6d4;
}

.breakdown-circle-item.azure .percentage[b-olvmnz7aso] {
    color: #06b6d4;
}

/* CSP Circle Color - Purple */
.csp-circle[b-olvmnz7aso] {
    stroke: #8b5cf6;
}

.breakdown-circle-item.csp .percentage[b-olvmnz7aso] {
    color: #8b5cf6;
}

/* Stats Meta - Sync button and last synced */
.stats-meta[b-olvmnz7aso] {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

/* Status Breakdown */
.status-breakdown[b-olvmnz7aso] {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.breakdown-item[b-olvmnz7aso] {
    flex: 1;
    text-align: center;
    padding: 1rem 0.5rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid transparent;
    background: #f8fafc;
}

.breakdown-item:hover[b-olvmnz7aso] {
    transform: translateY(-2px);
}

.breakdown-item.active[b-olvmnz7aso] {
    border-width: 2px;
}

.breakdown-item.not-started[b-olvmnz7aso] {
    color: #6b7280;
}

.breakdown-item.not-started.active[b-olvmnz7aso],
.breakdown-item.not-started:hover[b-olvmnz7aso] {
    background: #f3f4f6;
    border-color: #6b7280;
}

.breakdown-item.in-progress[b-olvmnz7aso] {
    color: #d97706;
}

.breakdown-item.in-progress.active[b-olvmnz7aso],
.breakdown-item.in-progress:hover[b-olvmnz7aso] {
    background: #fef3c7;
    border-color: #d97706;
}

.breakdown-item.completed[b-olvmnz7aso] {
    color: #059669;
}

.breakdown-item.completed.active[b-olvmnz7aso],
.breakdown-item.completed:hover[b-olvmnz7aso] {
    background: #d1fae5;
    border-color: #059669;
}

.breakdown-item.total[b-olvmnz7aso] {
    color: #0078d4;
}

.breakdown-item.total.active[b-olvmnz7aso],
.breakdown-item.total:hover[b-olvmnz7aso] {
    background: #dbeafe;
    border-color: #0078d4;
}

.breakdown-count[b-olvmnz7aso] {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.2;
}

.breakdown-label[b-olvmnz7aso] {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.25rem;
    opacity: 0.8;
}

/* Filters */
.filters[b-olvmnz7aso] {
    margin-bottom: 1rem;
}

.filter-row[b-olvmnz7aso] {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-row .search-input[b-olvmnz7aso] {
    flex: 1;
    min-width: 200px;
}

.subscription-filters[b-olvmnz7aso] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-label[b-olvmnz7aso] {
    font-size: 0.85rem;
    font-weight: 600;
    color: #6b7280;
}

.filter-chip[b-olvmnz7aso] {
    padding: 0.375rem 0.75rem;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid #d1d5db;
    background: white;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s;
}

.filter-chip:hover[b-olvmnz7aso] {
    background: #f3f4f6;
}

.filter-chip.active[b-olvmnz7aso] {
    background: #dbeafe;
    border-color: #3b82f6;
    color: #1d4ed8;
}

.filter-chip.nce.active[b-olvmnz7aso] {
    background: #dbeafe;
    border-color: #3b82f6;
    color: #1d4ed8;
}

.filter-chip.azure.active[b-olvmnz7aso] {
    background: #d1fae5;
    border-color: #059669;
    color: #047857;
}

.filter-chip.csp-yes.active[b-olvmnz7aso] {
    background: #d1fae5;
    border-color: #059669;
    color: #047857;
}

.filter-chip.csp-no.active[b-olvmnz7aso] {
    background: #ffedd5;
    border-color: #ea580c;
    color: #c2410c;
}

.btn-clear-filters[b-olvmnz7aso] {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.375rem 0.75rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: #6b7280;
    background: #f9fafb;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-clear-filters:hover[b-olvmnz7aso] {
    color: #dc2626;
    border-color: #dc2626;
    background: #fef2f2;
}

.form-control[b-olvmnz7aso] {
    padding: 0.625rem 0.875rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-control:focus[b-olvmnz7aso] {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Table */
.table-container[b-olvmnz7aso] {
    overflow-x: auto;
}

.data-table[b-olvmnz7aso] {
    width: 100%;
    border-collapse: collapse;
}

.data-table th[b-olvmnz7aso],
.data-table td[b-olvmnz7aso] {
    padding: 0.875rem 1rem;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.data-table th[b-olvmnz7aso] {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #6b7280;
    background: #f9fafb;
}

.data-table tbody tr:hover[b-olvmnz7aso] {
    background: #f8fafc;
}

.customer-name[b-olvmnz7aso] {
    min-width: 200px;
}

.customer-name div[b-olvmnz7aso] {
    font-weight: 600;
    color: #1f2937;
}

.tenant-id-small[b-olvmnz7aso] {
    font-size: 0.75rem;
    color: #9ca3af;
    background: none;
    padding: 0;
}

/* Subscription Tags */
.sub-tags[b-olvmnz7aso] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
}

.sub-tag[b-olvmnz7aso] {
    padding: 0.25rem 0.5rem;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 4px;
}

.sub-tag.nce[b-olvmnz7aso] {
    background: #dbeafe;
    color: #1d4ed8;
}

.sub-tag.azure[b-olvmnz7aso] {
    background: #d1fae5;
    color: #047857;
}

.sub-tag.other[b-olvmnz7aso] {
    background: #f3f4f6;
    color: #6b7280;
}

.no-subs[b-olvmnz7aso] {
    color: #9ca3af;
    font-size: 0.85rem;
    font-style: italic;
}

/* Status Badge */
.status-badge[b-olvmnz7aso] {
    display: inline-block;
    padding: 0.25rem 0.625rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 20px;
}

.status-badge.not-started[b-olvmnz7aso] {
    background: #f3f4f6;
    color: #6b7280;
}

.status-badge.in-progress[b-olvmnz7aso] {
    background: #fef3c7;
    color: #d97706;
}

.status-badge.completed[b-olvmnz7aso] {
    background: #d1fae5;
    color: #059669;
}

.status-badge.failed[b-olvmnz7aso] {
    background: #fee2e2;
    color: #dc2626;
}

/* Progress */
.step-progress[b-olvmnz7aso] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.step-bar[b-olvmnz7aso] {
    flex: 1;
    height: 6px;
    background: #e5e7eb;
    border-radius: 3px;
    overflow: hidden;
}

.step-fill[b-olvmnz7aso] {
    height: 100%;
    background: #0078d4;
    transition: width 0.3s ease;
}

.step-text[b-olvmnz7aso] {
    font-size: 0.75rem;
    color: #6b7280;
    white-space: nowrap;
}

.progress-text[b-olvmnz7aso] {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.85rem;
}

.progress-text.na[b-olvmnz7aso] {
    color: #9ca3af;
}

.progress-text.complete[b-olvmnz7aso] {
    color: #059669;
    font-weight: 600;
}

/* Actions */
.action-text.muted[b-olvmnz7aso] {
    color: #9ca3af;
    font-size: 0.85rem;
}

.btn[b-olvmnz7aso] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.btn-primary[b-olvmnz7aso] {
    background: #0078d4;
    color: white;
}

.btn-primary:hover[b-olvmnz7aso] {
    background: #106ebe;
}

.btn-secondary[b-olvmnz7aso] {
    background: #f3f4f6;
    color: #374151;
    border: 1px solid #d1d5db;
}

.btn-secondary:hover[b-olvmnz7aso] {
    background: #e5e7eb;
}

.btn-sm[b-olvmnz7aso] {
    padding: 0.375rem 0.75rem;
    font-size: 0.8rem;
}

.btn-sync[b-olvmnz7aso] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-sync-sm[b-olvmnz7aso] {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 0.75rem;
    font-size: 0.8rem;
}

.sync-spinner[b-olvmnz7aso],
.sync-spinner-sm[b-olvmnz7aso] {
    display: inline-block;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin-b-olvmnz7aso 1s linear infinite;
}

.sync-spinner[b-olvmnz7aso] {
    width: 16px;
    height: 16px;
}

.sync-spinner-sm[b-olvmnz7aso] {
    width: 14px;
    height: 14px;
}

/* No Results */
.no-results[b-olvmnz7aso] {
    text-align: center;
    padding: 2rem;
    color: #6b7280;
}

/* Row States */
.completed-row[b-olvmnz7aso] {
    background: #f0fdf4;
}

.in-progress-row[b-olvmnz7aso] {
    background: #fffbeb;
}

/* Expand Column */
.expand-col[b-olvmnz7aso] {
    width: 40px;
    text-align: center;
}

.expand-btn[b-olvmnz7aso] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    padding: 0;
    border: none;
    background: #f3f4f6;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    color: #6b7280;
}

.expand-btn:hover[b-olvmnz7aso] {
    background: #e5e7eb;
}

.expand-btn svg[b-olvmnz7aso] {
    transition: transform 0.2s;
}

.expand-btn.open svg[b-olvmnz7aso] {
    transform: rotate(180deg);
}

.data-table tbody tr[b-olvmnz7aso] {
    cursor: pointer;
}

.data-table tbody tr.expanded[b-olvmnz7aso] {
    background: #f0f9ff;
}

/* Target Badge */
.target-badge[b-olvmnz7aso] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 0.85rem;
    font-weight: 700;
}

.target-badge.exists[b-olvmnz7aso] {
    background: #d1fae5;
    color: #059669;
}

.target-badge.not-exists[b-olvmnz7aso] {
    background: #fee2e2;
    color: #dc2626;
}

.target-badge.unknown[b-olvmnz7aso] {
    background: #f3f4f6;
    color: #9ca3af;
}

/* Detail Row */
.detail-row[b-olvmnz7aso] {
    cursor: default !important;
}

.detail-row td[b-olvmnz7aso] {
    background: #f8fafc;
    padding: 0 !important;
}

.subscription-detail-panel[b-olvmnz7aso] {
    padding: 1.25rem 1.5rem;
    border-left: 3px solid #0078d4;
}

.subscription-detail-panel h4[b-olvmnz7aso] {
    margin: 0 0 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #374151;
}

.no-subs-detail[b-olvmnz7aso] {
    color: #9ca3af;
    font-style: italic;
    margin: 0;
}

/* Subscription Grid */
.subscription-grid[b-olvmnz7aso] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 0.75rem;
}

.subscription-card[b-olvmnz7aso] {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: all 0.2s;
}

.subscription-card:hover[b-olvmnz7aso] {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.subscription-card.owner-source[b-olvmnz7aso] {
    border-left: 3px solid #3b82f6;
}

.subscription-card.owner-target[b-olvmnz7aso] {
    border-left: 3px solid #8b5cf6;
}

.subscription-card.owner-both[b-olvmnz7aso] {
    border-left: 3px solid #059669;
}

.sub-header[b-olvmnz7aso] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.sub-name[b-olvmnz7aso] {
    font-weight: 600;
    font-size: 0.85rem;
    color: #1f2937;
    line-height: 1.3;
}

.owner-badge[b-olvmnz7aso] {
    flex-shrink: 0;
    padding: 0.125rem 0.5rem;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
}

.owner-badge.owner-source[b-olvmnz7aso] {
    background: #dbeafe;
    color: #1d4ed8;
}

.owner-badge.owner-target[b-olvmnz7aso] {
    background: #ede9fe;
    color: #7c3aed;
}

.owner-badge.owner-both[b-olvmnz7aso] {
    background: #d1fae5;
    color: #059669;
}

.sub-details[b-olvmnz7aso] {
    display: flex;
    gap: 1rem;
    font-size: 0.75rem;
    color: #6b7280;
}

.sub-qty[b-olvmnz7aso] {
    font-weight: 500;
}

/* Pagination Controls */
.pagination-controls[b-olvmnz7aso] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    margin-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.pagination-info[b-olvmnz7aso] {
    font-size: 0.85rem;
    color: #6b7280;
}

.pagination-buttons[b-olvmnz7aso] {
    display: flex;
    gap: 0.25rem;
}

.pagination-buttons .btn[b-olvmnz7aso] {
    min-width: 32px;
    height: 32px;
    padding: 0 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e5e7eb;
    background: white;
    color: #374151;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pagination-buttons .btn:hover:not(:disabled)[b-olvmnz7aso] {
    background: #f3f4f6;
    border-color: #d1d5db;
}

.pagination-buttons .btn:disabled[b-olvmnz7aso] {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-buttons .btn.btn-primary[b-olvmnz7aso] {
    background: #3b82f6;
    border-color: #3b82f6;
    color: white;
}

.pagination-buttons .btn.btn-primary:hover[b-olvmnz7aso] {
    background: #2563eb;
}

/* Contact Information Section */
.contact-info-section[b-olvmnz7aso] {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.contact-info-section h4[b-olvmnz7aso] {
    margin: 0 0 0.75rem 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: #374151;
}

.contact-details-grid[b-olvmnz7aso] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 768px) {
    .contact-details-grid[b-olvmnz7aso] {
        grid-template-columns: 1fr;
    }
}

.contact-column[b-olvmnz7aso],
.address-column[b-olvmnz7aso] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-item[b-olvmnz7aso] {
    display: flex;
    gap: 0.5rem;
}

.contact-label[b-olvmnz7aso] {
    font-size: 0.8rem;
    font-weight: 500;
    color: #6b7280;
    min-width: 60px;
}

.contact-value[b-olvmnz7aso] {
    font-size: 0.85rem;
    color: #111827;
}

.address-value[b-olvmnz7aso] {
    line-height: 1.5;
}

.tenant-id[b-olvmnz7aso] {
    font-family: monospace;
    font-size: 0.8rem;
    word-break: break-all;
}

/* Tab Navigation */
.tab-navigation[b-olvmnz7aso] {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 0;
}

.tab-btn[b-olvmnz7aso] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: transparent;
    border: 1px solid transparent;
    border-bottom: 2px solid transparent;
    border-radius: 8px 8px 0 0;
    color: #6b7280;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: -1px;
}

.tab-btn:hover[b-olvmnz7aso] {
    color: #374151;
    background: #f9fafb;
}

.tab-btn.active[b-olvmnz7aso] {
    color: #2563eb;
    background: white;
    border-color: #e5e7eb #e5e7eb white #e5e7eb;
    border-bottom-color: white;
}

.tab-btn svg[b-olvmnz7aso] {
    width: 16px;
    height: 16px;
}

.tab-badge[b-olvmnz7aso] {
    background: #dbeafe;
    color: #1d4ed8;
    padding: 0.125rem 0.5rem;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 0.25rem;
}

.tab-btn.active .tab-badge[b-olvmnz7aso] {
    background: #2563eb;
    color: white;
}

/* Delete button styling */
.btn-danger[b-olvmnz7aso] {
    color: #dc2626 !important;
    border-color: #fecaca !important;
}

.btn-danger:hover[b-olvmnz7aso] {
    background: #fef2f2 !important;
    border-color: #dc2626 !important;
}

/* Create Transfer button styling */
.btn-transfer-action[b-olvmnz7aso] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-left: 1rem;
}

.btn-transfer-action:hover[b-olvmnz7aso] {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-transfer-action svg[b-olvmnz7aso] {
    width: 16px;
    height: 16px;
}

/* Config Type Badge */
.config-type-badge[b-olvmnz7aso] {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.25rem 0.625rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 4px;
    margin-left: 0.75rem;
}

.config-type-badge svg[b-olvmnz7aso] {
    width: 14px;
    height: 14px;
}

.config-type-badge.d2d[b-olvmnz7aso] {
    background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
    color: white;
}

.config-type-badge.r2r[b-olvmnz7aso] {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
}

/* Resellers Tab Content */
.resellers-tab[b-olvmnz7aso] {
    min-height: 400px;
}
/* _content/CSPMigrationProject.Web/Components/Pages/Dashboard.razor.rz.scp.css */
/* Dashboard Styles */

.dashboard-container[b-igrgbg1rpt] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.dashboard-header[b-igrgbg1rpt] {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.dashboard-header h1[b-igrgbg1rpt] {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.subtitle[b-igrgbg1rpt] {
    font-size: 1.125rem;
    color: #666;
}

.dashboard-content[b-igrgbg1rpt] {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Loading State */
.loading-container[b-igrgbg1rpt] {
    text-align: center;
    padding: 4rem 2rem;
}

.spinner[b-igrgbg1rpt] {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #0078d4;
    border-radius: 50%;
    animation: spin-b-igrgbg1rpt 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin-b-igrgbg1rpt {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loading-container p[b-igrgbg1rpt] {
    font-size: 1.125rem;
    color: #666;
}

/* Permission Banner */
.permission-banner[b-igrgbg1rpt] {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    border-left: 6px solid;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.permission-global[b-igrgbg1rpt] {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-left-color: #4caf50;
}

.permission-distributor[b-igrgbg1rpt] {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-left-color: #2196f3;
}

.permission-organization[b-igrgbg1rpt] {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    border-left-color: #ff9800;
}

.permission-none[b-igrgbg1rpt] {
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
    border-left-color: #f44336;
}

.permission-icon[b-igrgbg1rpt] {
    flex-shrink: 0;
}

.permission-icon svg[b-igrgbg1rpt] {
    width: 48px;
    height: 48px;
}

.permission-global .permission-icon svg[b-igrgbg1rpt] {
    color: #4caf50;
}

.permission-distributor .permission-icon svg[b-igrgbg1rpt] {
    color: #2196f3;
}

.permission-organization .permission-icon svg[b-igrgbg1rpt] {
    color: #ff9800;
}

.permission-none .permission-icon svg[b-igrgbg1rpt] {
    color: #f44336;
}

.permission-info h3[b-igrgbg1rpt] {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.permission-global .permission-info h3[b-igrgbg1rpt] {
    color: #2e7d32;
}

.permission-distributor .permission-info h3[b-igrgbg1rpt] {
    color: #1565c0;
}

.permission-organization .permission-info h3[b-igrgbg1rpt] {
    color: #e65100;
}

.permission-none .permission-info h3[b-igrgbg1rpt] {
    color: #c62828;
}

.permission-info p[b-igrgbg1rpt] {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

/* Access Denied */
.access-denied[b-igrgbg1rpt] {
    background: white;
    padding: 4rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.access-denied-icon[b-igrgbg1rpt] {
    margin-bottom: 1.5rem;
}

.access-denied-icon svg[b-igrgbg1rpt] {
    width: 64px;
    height: 64px;
    color: #f44336;
}

.access-denied h2[b-igrgbg1rpt] {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.access-denied p[b-igrgbg1rpt] {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 0.5rem;
}

/* Welcome Card */
.welcome-card[b-igrgbg1rpt] {
    background: linear-gradient(135deg, #0078d4 0%, #1565c0 100%);
    color: white;
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 120, 212, 0.2);
}

.welcome-icon[b-igrgbg1rpt] {
    margin-bottom: 1.5rem;
}

.welcome-icon svg[b-igrgbg1rpt] {
    width: 64px;
    height: 64px;
    color: white;
    opacity: 0.9;
}

.welcome-card h2[b-igrgbg1rpt] {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.welcome-card p[b-igrgbg1rpt] {
    font-size: 1.125rem;
    opacity: 0.9;
}

/* User Info Section */
.user-info-section[b-igrgbg1rpt] {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.user-info-section h3[b-igrgbg1rpt] {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.info-grid[b-igrgbg1rpt] {
    display: grid;
    gap: 1rem;
}

.info-item[b-igrgbg1rpt] {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.info-label[b-igrgbg1rpt] {
    font-weight: 600;
    color: #495057;
}

.info-value[b-igrgbg1rpt] {
    color: #1a1a1a;
    word-break: break-all;
}

/* Dashboard Tabs */
.dashboard-tabs[b-igrgbg1rpt] {
    display: flex;
    gap: 0.5rem;
    background: white;
    padding: 0.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 1.5rem;
}

.tab-button[b-igrgbg1rpt] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #6b7280;
    background: transparent;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tab-button:hover[b-igrgbg1rpt] {
    background: #f3f4f6;
    color: #374151;
}

.tab-button.active[b-igrgbg1rpt] {
    background: linear-gradient(135deg, #0078d4 0%, #1565c0 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(0, 120, 212, 0.25);
}

.tab-button svg[b-igrgbg1rpt] {
    flex-shrink: 0;
}

.tab-button.active svg[b-igrgbg1rpt] {
    color: white;
}

/* Organizations Card */
.organizations-card[b-igrgbg1rpt] {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.organizations-card h2[b-igrgbg1rpt] {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.organizations-card>p[b-igrgbg1rpt] {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
}

.organizations-grid[b-igrgbg1rpt] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

.organization-card[b-igrgbg1rpt] {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1.5rem;
    border-radius: 10px;
    border: 2px solid #dee2e6;
    transition: all 0.3s ease;
}

.organization-card:hover[b-igrgbg1rpt] {
    border-color: #ff9800;
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.15);
    transform: translateY(-2px);
}

.org-icon[b-igrgbg1rpt] {
    margin-bottom: 1rem;
}

.org-icon svg[b-igrgbg1rpt] {
    width: 40px;
    height: 40px;
    color: #ff9800;
}

.organization-card h3[b-igrgbg1rpt] {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.org-details[b-igrgbg1rpt] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.org-details p[b-igrgbg1rpt] {
    font-size: 0.9rem;
    color: #495057;
    margin: 0;
}

.org-details strong[b-igrgbg1rpt] {
    color: #1a1a1a;
    font-weight: 600;
}

.tenant-id[b-igrgbg1rpt] {
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    color: #0078d4;
    word-break: break-all;
}

/* Organization Migration Actions */
.org-actions[b-igrgbg1rpt] {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #dee2e6;
}

.btn-migration[b-igrgbg1rpt] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    background: linear-gradient(135deg, #0078d4 0%, #106ebe 100%);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-migration:hover[b-igrgbg1rpt] {
    background: linear-gradient(135deg, #106ebe 0%, #005a9e 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 120, 212, 0.25);
}

.btn-migration svg[b-igrgbg1rpt] {
    width: 16px;
    height: 16px;
}

/* Migration Status Badges */
.org-header[b-igrgbg1rpt] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.migration-status-badge[b-igrgbg1rpt] {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    white-space: nowrap;
}

.badge-initiated[b-igrgbg1rpt] {
    background: #e3f2fd;
    color: #1565c0;
    border: 1px solid #90caf9;
}

.badge-in-progress[b-igrgbg1rpt] {
    background: #fff3e0;
    color: #e65100;
    border: 1px solid #ffcc80;
}

.badge-completed[b-igrgbg1rpt] {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}

.badge-failed[b-igrgbg1rpt] {
    background: #ffebee;
    color: #c62828;
    border: 1px solid #ef9a9a;
}

.badge-cancelled[b-igrgbg1rpt] {
    background: #fafafa;
    color: #616161;
    border: 1px solid #bdbdbd;
}

.badge-unknown[b-igrgbg1rpt] {
    background: #f5f5f5;
    color: #757575;
    border: 1px solid #e0e0e0;
}

/* Migration Progress Bar */
.migration-progress[b-igrgbg1rpt] {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #dee2e6;
}

.progress-label[b-igrgbg1rpt] {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.progress-bar[b-igrgbg1rpt] {
    width: 100%;
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill[b-igrgbg1rpt] {
    height: 100%;
    background: linear-gradient(90deg, #0078d4, #40a9ff);
    border-radius: 4px;
    transition: width 0.3s ease;
}

/* Button Variants */
.btn-migration.btn-continue[b-igrgbg1rpt] {
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
}

.btn-migration.btn-continue:hover[b-igrgbg1rpt] {
    background: linear-gradient(135deg, #f57c00 0%, #e65100 100%);
    box-shadow: 0 4px 8px rgba(255, 152, 0, 0.25);
}

.btn-migration.btn-completed[b-igrgbg1rpt] {
    background: linear-gradient(135deg, #4caf50 0%, #388e3c 100%);
}

.btn-migration.btn-completed:hover[b-igrgbg1rpt] {
    background: linear-gradient(135deg, #388e3c 0%, #2e7d32 100%);
    box-shadow: 0 4px 8px rgba(76, 175, 80, 0.25);
}

.btn-migration.btn-failed[b-igrgbg1rpt] {
    background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%);
}

.btn-migration.btn-failed:hover[b-igrgbg1rpt] {
    background: linear-gradient(135deg, #d32f2f 0%, #c62828 100%);
    box-shadow: 0 4px 8px rgba(244, 67, 54, 0.25);
}

/* Admin Quick Access to Customer Organizations */
.admin-quick-access[b-igrgbg1rpt] {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-radius: 12px;
    padding: 2rem;
    border-left: 6px solid #4caf50;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.quick-access-content[b-igrgbg1rpt] {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.quick-access-icon[b-igrgbg1rpt] {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: rgba(76, 175, 80, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quick-access-icon svg[b-igrgbg1rpt] {
    width: 32px;
    height: 32px;
    color: #2e7d32;
}

.quick-access-info[b-igrgbg1rpt] {
    flex: 1;
}

.quick-access-info h3[b-igrgbg1rpt] {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2e7d32;
    margin-bottom: 0.5rem;
}

.quick-access-info p[b-igrgbg1rpt] {
    font-size: 0.95rem;
    color: #1b5e20;
    margin: 0;
}

.btn-view-customers[b-igrgbg1rpt] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #4caf50;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.btn-view-customers:hover[b-igrgbg1rpt] {
    background: #388e3c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.btn-view-customers svg[b-igrgbg1rpt] {
    width: 18px;
    height: 18px;
}

/* Unauthorized State */
.unauthorized[b-igrgbg1rpt] {
    text-align: center;
    padding: 4rem 2rem;
}

.unauthorized p[b-igrgbg1rpt] {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2rem;
}

.btn-login[b-igrgbg1rpt] {
    display: inline-block;
    padding: 1rem 2rem;
    background: #0078d4;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-login:hover[b-igrgbg1rpt] {
    background: #005a9e;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .dashboard-container[b-igrgbg1rpt] {
        padding: 1.5rem;
    }

    .dashboard-header h1[b-igrgbg1rpt] {
        font-size: 2rem;
    }

    .welcome-card[b-igrgbg1rpt] {
        padding: 2rem 1.5rem;
    }

    .welcome-card h2[b-igrgbg1rpt] {
        font-size: 1.5rem;
    }

    .user-info-section[b-igrgbg1rpt] {
        padding: 1.5rem;
    }

    .info-item[b-igrgbg1rpt] {
        flex-direction: column;
        gap: 0.5rem;
    }

    .permission-banner[b-igrgbg1rpt] {
        flex-direction: column;
        text-align: center;
    }

    .admin-quick-access .quick-access-content[b-igrgbg1rpt] {
        flex-direction: column;
        text-align: center;
    }

    .btn-view-customers[b-igrgbg1rpt] {
        width: 100%;
        justify-content: center;
    }
}
/* _content/CSPMigrationProject.Web/Components/Pages/Home.razor.rz.scp.css */
/* Landing Page Styles */

.landing-container[b-wcwiejttox] {
    max-width: 100%;
    margin: 0;
    padding: 0;
}

/* Hero Section */
.hero-section[b-wcwiejttox] {
    background: linear-gradient(135deg, #0078d4 0%, #1565c0 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content[b-wcwiejttox] {
    max-width: 800px;
    margin: 0 auto;
}

.logo-container[b-wcwiejttox] {
    margin-bottom: 2rem;
}

.hero-icon[b-wcwiejttox] {
    width: 80px;
    height: 80px;
    color: rgba(255, 255, 255, 0.9);
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.hero-title[b-wcwiejttox] {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.hero-subtitle[b-wcwiejttox] {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.hero-description[b-wcwiejttox] {
    font-size: 1.125rem;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

.hero-cta[b-wcwiejttox] {
    margin-top: 2rem;
}

.cta-button[b-wcwiejttox] {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-primary[b-wcwiejttox] {
    background: white;
    color: #0078d4;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.cta-primary:hover[b-wcwiejttox] {
    background: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.cta-icon[b-wcwiejttox] {
    width: 24px;
    height: 24px;
}

/* Features Section */
.features-section[b-wcwiejttox] {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.features-grid[b-wcwiejttox] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card[b-wcwiejttox] {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover[b-wcwiejttox] {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.feature-icon[b-wcwiejttox] {
    width: 48px;
    height: 48px;
    color: #0078d4;
    margin-bottom: 1.5rem;
}

.feature-card h3[b-wcwiejttox] {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.feature-card p[b-wcwiejttox] {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* Migration Types Section */
.migration-types-section[b-wcwiejttox] {
    padding: 5rem 2rem;
    background-color: white;
}

.section-title[b-wcwiejttox] {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.migration-types-grid[b-wcwiejttox] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.migration-type-card[b-wcwiejttox] {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #0078d4;
}

.migration-type-card h4[b-wcwiejttox] {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #0078d4;
}

.migration-type-card p[b-wcwiejttox] {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #495057;
    margin: 0;
}

/* Process Section */
.process-section[b-wcwiejttox] {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.process-steps[b-wcwiejttox] {
    max-width: 900px;
    margin: 0 auto;
}

.process-step[b-wcwiejttox] {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.process-step:not(:last-child)[b-wcwiejttox]::after {
    content: '';
    position: absolute;
    left: 27px;
    top: 60px;
    width: 2px;
    height: calc(100% + 2rem);
    background: linear-gradient(to bottom, #0078d4, #e9ecef);
}

.step-number[b-wcwiejttox] {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #0078d4, #1565c0);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 120, 212, 0.3);
    z-index: 1;
    position: relative;
}

.step-content[b-wcwiejttox] {
    flex: 1;
    padding-top: 0.5rem;
}

.step-content h4[b-wcwiejttox] {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.step-content p[b-wcwiejttox] {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* CTA Section */
.cta-section[b-wcwiejttox] {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #1565c0 0%, #0078d4 100%);
    color: white;
    text-align: center;
}

.cta-content[b-wcwiejttox] {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2[b-wcwiejttox] {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content > p[b-wcwiejttox] {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-info[b-wcwiejttox] {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 2rem;
    backdrop-filter: blur(10px);
}

.info-text[b-wcwiejttox] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1rem;
    margin: 0;
}

.info-icon[b-wcwiejttox] {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* Footer */
.landing-footer[b-wcwiejttox] {
    background-color: #1a1a1a;
    color: #999;
    padding: 2rem;
    text-align: center;
}

.footer-content[b-wcwiejttox] {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content p[b-wcwiejttox] {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-links[b-wcwiejttox] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-links a[b-wcwiejttox] {
    color: #999;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-links a:hover[b-wcwiejttox] {
    color: #0078d4;
}

.separator[b-wcwiejttox] {
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section[b-wcwiejttox] {
        padding: 3rem 1.5rem;
    }

    .hero-title[b-wcwiejttox] {
        font-size: 2.25rem;
    }

    .hero-subtitle[b-wcwiejttox] {
        font-size: 1.25rem;
    }

    .hero-description[b-wcwiejttox] {
        font-size: 1rem;
    }

    .cta-button[b-wcwiejttox] {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    .section-title[b-wcwiejttox] {
        font-size: 2rem;
    }

    .features-section[b-wcwiejttox],
    .migration-types-section[b-wcwiejttox],
    .process-section[b-wcwiejttox] {
        padding: 3rem 1.5rem;
    }

    .features-grid[b-wcwiejttox] {
        grid-template-columns: 1fr;
    }

    .migration-types-grid[b-wcwiejttox] {
        grid-template-columns: 1fr;
    }

    .process-step[b-wcwiejttox] {
        gap: 1rem;
    }

    .step-number[b-wcwiejttox] {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }

    .process-step:not(:last-child)[b-wcwiejttox]::after {
        left: 23px;
    }
}

@media (max-width: 480px) {
    .hero-title[b-wcwiejttox] {
        font-size: 2rem;
    }

    .hero-subtitle[b-wcwiejttox] {
        font-size: 1.125rem;
    }

    .hero-icon[b-wcwiejttox] {
        width: 60px;
        height: 60px;
    }

    .section-title[b-wcwiejttox] {
        font-size: 1.75rem;
    }
}
/* _content/CSPMigrationProject.Web/Components/Pages/Migration/ConfigurationMigrationList.razor.rz.scp.css */
.modal-overlay[b-1wzmgjg9w9] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 1rem;
}

.modal-content[b-1wzmgjg9w9] {
    background: white;
    border-radius: 12px;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.modal-large[b-1wzmgjg9w9] {
    width: 100%;
    max-width: 1000px;
}

.modal-header[b-1wzmgjg9w9] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    background: linear-gradient(135deg, #0078d4 0%, #1565c0 100%);
}

.modal-header h2[b-1wzmgjg9w9] {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
}

.btn-close[b-1wzmgjg9w9] {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    color: white;
    border-radius: 6px;
    transition: background 0.2s;
}

.btn-close:hover[b-1wzmgjg9w9] {
    background: rgba(255, 255, 255, 0.3);
}

.modal-body[b-1wzmgjg9w9] {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

/* Loading & Empty States */
.loading-container[b-1wzmgjg9w9] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    color: #6b7280;
}

.spinner[b-1wzmgjg9w9] {
    width: 40px;
    height: 40px;
    border: 3px solid #e5e7eb;
    border-top-color: #3b82f6;
    border-radius: 50%;
    animation: spin-b-1wzmgjg9w9 1s linear infinite;
}

@keyframes spin-b-1wzmgjg9w9 {
    to {
        transform: rotate(360deg);
    }
}

.empty-state[b-1wzmgjg9w9] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    text-align: center;
    color: #6b7280;
}

.empty-state svg[b-1wzmgjg9w9] {
    margin-bottom: 1.5rem;
    color: #9ca3af;
}

.empty-state h3[b-1wzmgjg9w9] {
    margin: 0 0 0.5rem 0;
    color: #374151;
    font-size: 1.25rem;
}

.empty-state p[b-1wzmgjg9w9] {
    margin: 0 0 1.5rem 0;
}

/* Stats Header */
.stats-header[b-1wzmgjg9w9] {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border: 1px solid #e2e8f0;
}

.completion-ring[b-1wzmgjg9w9] {
    position: relative;
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.circular-chart[b-1wzmgjg9w9] {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.circle-bg[b-1wzmgjg9w9] {
    fill: none;
    stroke: #e2e8f0;
    stroke-width: 3;
}

.circle[b-1wzmgjg9w9] {
    fill: none;
    stroke-width: 3;
    stroke-linecap: round;
    transition: stroke-dasharray 0.5s ease;
}

.circle.complete-high[b-1wzmgjg9w9] {
    stroke: #10b981;
}

.circle.complete-medium[b-1wzmgjg9w9] {
    stroke: #f59e0b;
}

.circle.complete-low[b-1wzmgjg9w9] {
    stroke: #3b82f6;
}

.percentage[b-1wzmgjg9w9] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
}

.stats-info[b-1wzmgjg9w9] {
    flex: 1;
}

.stats-info h3[b-1wzmgjg9w9] {
    margin: 0 0 0.25rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
}

.stats-info p[b-1wzmgjg9w9] {
    margin: 0;
    color: #64748b;
    font-size: 0.95rem;
}

.last-sync[b-1wzmgjg9w9] {
    font-size: 0.8rem;
    color: #94a3b8;
}

/* Sync Buttons */
.btn-sync[b-1wzmgjg9w9] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
}

.btn-sync-sm[b-1wzmgjg9w9] {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 0.75rem;
    font-size: 0.8rem;
}

.sync-spinner[b-1wzmgjg9w9],
.sync-spinner-sm[b-1wzmgjg9w9] {
    display: inline-block;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin-b-1wzmgjg9w9 1s linear infinite;
}

.sync-spinner[b-1wzmgjg9w9] {
    width: 16px;
    height: 16px;
}

.sync-spinner-sm[b-1wzmgjg9w9] {
    width: 14px;
    height: 14px;
}

/* Status Breakdown */
.status-breakdown[b-1wzmgjg9w9] {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.breakdown-item[b-1wzmgjg9w9] {
    flex: 1;
    text-align: center;
    padding: 1rem 0.5rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid transparent;
    background: #f8fafc;
}

.breakdown-item:hover[b-1wzmgjg9w9] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.breakdown-item.active[b-1wzmgjg9w9] {
    border-color: currentColor;
}

.breakdown-item.not-started[b-1wzmgjg9w9] {
    color: #6b7280;
}

.breakdown-item.not-started.active[b-1wzmgjg9w9],
.breakdown-item.not-started:hover[b-1wzmgjg9w9] {
    background: #f3f4f6;
    border-color: #6b7280;
}

.breakdown-item.in-progress[b-1wzmgjg9w9] {
    color: #d97706;
}

.breakdown-item.in-progress.active[b-1wzmgjg9w9],
.breakdown-item.in-progress:hover[b-1wzmgjg9w9] {
    background: #fef3c7;
    border-color: #d97706;
}

.breakdown-item.completed[b-1wzmgjg9w9] {
    color: #059669;
}

.breakdown-item.completed.active[b-1wzmgjg9w9],
.breakdown-item.completed:hover[b-1wzmgjg9w9] {
    background: #d1fae5;
    border-color: #059669;
}

.breakdown-item.total[b-1wzmgjg9w9] {
    color: #0078d4;
}

.breakdown-item.total.active[b-1wzmgjg9w9],
.breakdown-item.total:hover[b-1wzmgjg9w9] {
    background: #dbeafe;
    border-color: #0078d4;
}

.breakdown-count[b-1wzmgjg9w9] {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.2;
}

.breakdown-label[b-1wzmgjg9w9] {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.25rem;
    opacity: 0.8;
}

/* Filters */
.filters[b-1wzmgjg9w9] {
    margin-bottom: 1rem;
}

.filter-row[b-1wzmgjg9w9] {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-row .search-input[b-1wzmgjg9w9] {
    flex: 1;
    min-width: 200px;
}

.subscription-filters[b-1wzmgjg9w9] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-label[b-1wzmgjg9w9] {
    font-size: 0.85rem;
    font-weight: 600;
    color: #6b7280;
}

.filter-chip[b-1wzmgjg9w9] {
    padding: 0.375rem 0.75rem;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid #d1d5db;
    background: white;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s;
}

.filter-chip:hover[b-1wzmgjg9w9] {
    background: #f3f4f6;
}

.filter-chip.active[b-1wzmgjg9w9] {
    background: #dbeafe;
    border-color: #3b82f6;
    color: #1d4ed8;
}

.filter-chip.nce.active[b-1wzmgjg9w9] {
    background: #dbeafe;
    border-color: #3b82f6;
    color: #1d4ed8;
}

.filter-chip.azure.active[b-1wzmgjg9w9] {
    background: #d1fae5;
    border-color: #059669;
    color: #047857;
}

.btn-clear-filters[b-1wzmgjg9w9] {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.375rem 0.75rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: #6b7280;
    background: #f9fafb;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-clear-filters:hover[b-1wzmgjg9w9] {
    color: #dc2626;
    border-color: #dc2626;
    background: #fef2f2;
}

.form-control[b-1wzmgjg9w9] {
    width: 100%;
    padding: 0.625rem 0.875rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-control:focus[b-1wzmgjg9w9] {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Table */
.table-container[b-1wzmgjg9w9] {
    overflow-x: auto;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
}

.data-table[b-1wzmgjg9w9] {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.data-table th[b-1wzmgjg9w9] {
    text-align: left;
    padding: 0.875rem 1rem;
    background: #f9fafb;
    border-bottom: 2px solid #e5e7eb;
    font-weight: 600;
    color: #374151;
    white-space: nowrap;
}

.data-table td[b-1wzmgjg9w9] {
    padding: 0.875rem 1rem;
    border-bottom: 1px solid #e5e7eb;
    color: #374151;
    vertical-align: middle;
}

.data-table tbody tr:hover[b-1wzmgjg9w9] {
    background: #f9fafb;
}

.data-table tbody tr:last-child td[b-1wzmgjg9w9] {
    border-bottom: none;
}

.row-completed[b-1wzmgjg9w9] {
    background: #f0fdf4;
}

.row-in-progress[b-1wzmgjg9w9] {
    background: #fffbeb;
}

.customer-name[b-1wzmgjg9w9] {
    font-weight: 500;
    color: #111827;
}

.tenant-id code[b-1wzmgjg9w9] {
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 0.8rem;
    background: #f3f4f6;
    padding: 0.125rem 0.375rem;
    border-radius: 4px;
    color: #6b7280;
}

/* Status Badges */
.status-badge[b-1wzmgjg9w9] {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.status-not-started[b-1wzmgjg9w9] {
    background: #f3f4f6;
    color: #6b7280;
}

.status-in-progress[b-1wzmgjg9w9] {
    background: #fef3c7;
    color: #92400e;
}

.status-completed[b-1wzmgjg9w9] {
    background: #dcfce7;
    color: #166534;
}

/* Progress */
.progress-text[b-1wzmgjg9w9] {
    font-size: 0.85rem;
}

.progress-text.na[b-1wzmgjg9w9] {
    color: #9ca3af;
}

.progress-text.complete[b-1wzmgjg9w9] {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    color: #059669;
    font-weight: 500;
}

.step-progress[b-1wzmgjg9w9] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.step-bar[b-1wzmgjg9w9] {
    flex: 1;
    height: 6px;
    background: #e5e7eb;
    border-radius: 3px;
    overflow: hidden;
    min-width: 60px;
}

.step-fill[b-1wzmgjg9w9] {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6, #2563eb);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.step-text[b-1wzmgjg9w9] {
    font-size: 0.8rem;
    color: #6b7280;
    white-space: nowrap;
}

/* Action Buttons */
.btn[b-1wzmgjg9w9] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.btn-sm[b-1wzmgjg9w9] {
    padding: 0.375rem 0.75rem;
    font-size: 0.8rem;
}

.btn-primary[b-1wzmgjg9w9] {
    background: linear-gradient(135deg, #0078d4 0%, #1565c0 100%);
    color: white;
}

.btn-primary:hover[b-1wzmgjg9w9] {
    background: linear-gradient(135deg, #006cbd 0%, #1255a1 100%);
    box-shadow: 0 2px 8px rgba(0, 120, 212, 0.25);
}

.btn-secondary[b-1wzmgjg9w9] {
    background: white;
    color: #374151;
    border: 1px solid #d1d5db;
}

.btn-secondary:hover[b-1wzmgjg9w9] {
    background: #f9fafb;
    border-color: #9ca3af;
}

.btn:disabled[b-1wzmgjg9w9] {
    opacity: 0.6;
    cursor: not-allowed;
}

.na-action[b-1wzmgjg9w9] {
    font-size: 0.8rem;
    color: #9ca3af;
    font-style: italic;
}

/* Subscription Tags */
.tenant-id-small[b-1wzmgjg9w9] {
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 0.7rem;
    color: #9ca3af;
}

.subscriptions-cell[b-1wzmgjg9w9] {
    min-width: 120px;
}

.sub-tags[b-1wzmgjg9w9] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
}

.sub-tag[b-1wzmgjg9w9] {
    display: inline-block;
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
}

.sub-tag.pt-nce[b-1wzmgjg9w9] {
    background: #dbeafe;
    color: #1d4ed8;
}

.sub-tag.pt-azure[b-1wzmgjg9w9] {
    background: #dcfce7;
    color: #166534;
}

.sub-tag.pt-perpetual[b-1wzmgjg9w9] {
    background: #fef3c7;
    color: #92400e;
}

.sub-tag.pt-other[b-1wzmgjg9w9] {
    background: #f3f4f6;
    color: #6b7280;
}

.sub-tag.more[b-1wzmgjg9w9] {
    background: #e5e7eb;
    color: #4b5563;
}

.no-subs[b-1wzmgjg9w9] {
    font-size: 0.75rem;
    color: #9ca3af;
    font-style: italic;
}

.no-results[b-1wzmgjg9w9] {
    text-align: center;
    padding: 2rem;
    color: #6b7280;
}
/* _content/CSPMigrationProject.Web/Components/Pages/Migration/MigrationProgressView.razor.rz.scp.css */
.migration-progress-container[b-fegq4vgprr] {
    padding: 1rem 0;
}

.loading-container[b-fegq4vgprr] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    color: #6b7280;
}

.spinner[b-fegq4vgprr] {
    width: 40px;
    height: 40px;
    border: 3px solid #e5e7eb;
    border-top-color: #3b82f6;
    border-radius: 50%;
    animation: spin-b-fegq4vgprr 1s linear infinite;
}

@keyframes spin-b-fegq4vgprr {
    to { transform: rotate(360deg); }
}

.empty-state[b-fegq4vgprr] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    text-align: center;
    color: #6b7280;
    background: #f9fafb;
    border-radius: 12px;
    border: 2px dashed #e5e7eb;
}

.empty-state svg[b-fegq4vgprr] {
    margin-bottom: 1rem;
    color: #9ca3af;
}

.empty-state h3[b-fegq4vgprr] {
    margin: 0 0 0.5rem 0;
    color: #374151;
}

.empty-state p[b-fegq4vgprr] {
    margin: 0;
}

.progress-grid[b-fegq4vgprr] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 1.5rem;
}

.progress-card[b-fegq4vgprr] {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s;
}

.progress-card:hover[b-fegq4vgprr] {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.progress-card.inactive[b-fegq4vgprr] {
    opacity: 0.7;
}

.card-header[b-fegq4vgprr] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    background: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
}

.card-header h3[b-fegq4vgprr] {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #111827;
}

.badge[b-fegq4vgprr] {
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
}

.badge-success[b-fegq4vgprr] {
    background: #dcfce7;
    color: #166534;
}

.badge-secondary[b-fegq4vgprr] {
    background: #f3f4f6;
    color: #6b7280;
}

.card-partners[b-fegq4vgprr] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    background: #fafafa;
}

.partner[b-fegq4vgprr] {
    flex: 1;
    text-align: center;
}

.partner .label[b-fegq4vgprr] {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 0.25rem;
}

.partner .name[b-fegq4vgprr] {
    display: block;
    font-weight: 600;
    color: #111827;
    font-size: 0.9rem;
}

.partner .reseller[b-fegq4vgprr] {
    display: block;
    font-size: 0.8rem;
    color: #6b7280;
    margin-top: 0.125rem;
}

.partner.source[b-fegq4vgprr] {
    padding: 0.5rem;
    background: #dbeafe;
    border-radius: 8px;
}

.partner.target[b-fegq4vgprr] {
    padding: 0.5rem;
    background: #dcfce7;
    border-radius: 8px;
}

.arrow[b-fegq4vgprr] {
    flex-shrink: 0;
    padding: 0 1rem;
    color: #9ca3af;
}

.card-progress[b-fegq4vgprr] {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #e5e7eb;
}

.progress-header[b-fegq4vgprr] {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.progress-header .percentage[b-fegq4vgprr] {
    font-weight: 600;
    color: #111827;
}

.progress-header .count[b-fegq4vgprr] {
    font-size: 0.875rem;
    color: #6b7280;
}

.progress-bar[b-fegq4vgprr] {
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill[b-fegq4vgprr] {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6, #10b981);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.card-steps[b-fegq4vgprr] {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #e5e7eb;
}

.card-steps h4[b-fegq4vgprr] {
    margin: 0 0 0.75rem 0;
    font-size: 0.85rem;
    font-weight: 600;
    color: #374151;
}

.steps-grid[b-fegq4vgprr] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}

.step-column[b-fegq4vgprr] {
    background: #f9fafb;
    border-radius: 8px;
    padding: 0.5rem;
}

.step-header[b-fegq4vgprr] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.step-number[b-fegq4vgprr] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: #e5e7eb;
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 600;
    color: #374151;
}

.step-name[b-fegq4vgprr] {
    font-size: 0.75rem;
    font-weight: 500;
    color: #374151;
}

.optional-badge[b-fegq4vgprr] {
    font-size: 0.6rem;
    padding: 0.125rem 0.375rem;
    background: #fef3c7;
    color: #92400e;
    border-radius: 4px;
    font-weight: 500;
}

.step-stats[b-fegq4vgprr] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.step-stats .stat[b-fegq4vgprr] {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.7rem;
    padding: 0.125rem 0;
}

.step-stats .stat svg[b-fegq4vgprr] {
    flex-shrink: 0;
}

.step-stats .stat.completed[b-fegq4vgprr] {
    color: #16a34a;
}

.step-stats .stat.in-progress[b-fegq4vgprr] {
    color: #d97706;
}

.step-stats .stat.pending[b-fegq4vgprr] {
    color: #6b7280;
}

.step-stats .stat.skipped[b-fegq4vgprr] {
    color: #64748b;
}

.step-stats .stat.failed[b-fegq4vgprr] {
    color: #dc2626;
}

.card-summary[b-fegq4vgprr] {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #e5e7eb;
}

.summary-stats[b-fegq4vgprr] {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
}

.stat-item[b-fegq4vgprr] {
    flex: 1;
    text-align: center;
    padding: 0.5rem;
    border-radius: 6px;
    background: #f9fafb;
}

.stat-item .value[b-fegq4vgprr] {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
}

.stat-item .label[b-fegq4vgprr] {
    display: block;
    font-size: 0.65rem;
    text-transform: uppercase;
    font-weight: 500;
    margin-top: 0.125rem;
}

.stat-item.initiated .value[b-fegq4vgprr] {
    color: #3b82f6;
}

.stat-item.in-progress .value[b-fegq4vgprr] {
    color: #d97706;
}

.stat-item.completed .value[b-fegq4vgprr] {
    color: #16a34a;
}

.stat-item.failed .value[b-fegq4vgprr] {
    color: #dc2626;
}

.stat-item.cancelled .value[b-fegq4vgprr] {
    color: #6b7280;
}

.card-footer[b-fegq4vgprr] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1.25rem;
    background: #f9fafb;
}

.last-activity[b-fegq4vgprr] {
    font-size: 0.8rem;
    color: #6b7280;
}

.btn[b-fegq4vgprr] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-sm[b-fegq4vgprr] {
    padding: 0.375rem 0.75rem;
    font-size: 0.8rem;
}

.btn-secondary[b-fegq4vgprr] {
    background: #e5e7eb;
    color: #374151;
}

.btn-secondary:hover[b-fegq4vgprr] {
    background: #d1d5db;
}

.alert[b-fegq4vgprr] {
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.alert-error[b-fegq4vgprr] {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #dc2626;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .progress-grid[b-fegq4vgprr] {
        grid-template-columns: 1fr;
    }
    
    .steps-grid[b-fegq4vgprr] {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .summary-stats[b-fegq4vgprr] {
        flex-wrap: wrap;
    }
    
    .stat-item[b-fegq4vgprr] {
        flex: 0 0 calc(50% - 0.25rem);
        margin-bottom: 0.5rem;
    }
    
    .card-partners[b-fegq4vgprr] {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .arrow[b-fegq4vgprr] {
        transform: rotate(90deg);
        padding: 0.5rem 0;
    }
}
/* _content/CSPMigrationProject.Web/Components/Pages/Migration/MigrationWizard.razor.rz.scp.css */
.migration-wizard-container[b-360tz5xa05] {
    max-width: 900px;
    margin: 0 auto;
    padding: 1.5rem;
    background: #f8f9fa;
    min-height: 100vh;
}

/* Loading and Error States */
.loading-container[b-360tz5xa05],
.error-container[b-360tz5xa05] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    text-align: center;
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.spinner[b-360tz5xa05] {
    width: 40px;
    height: 40px;
    border: 3px solid #e9ecef;
    border-top-color: #0078d4;
    border-radius: 50%;
    animation: spin-b-360tz5xa05 1s linear infinite;
}

.spinner-small[b-360tz5xa05] {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin-b-360tz5xa05 1s linear infinite;
    margin-right: 6px;
}

@keyframes spin-b-360tz5xa05 {
    to { transform: rotate(360deg); }
}

.error-icon[b-360tz5xa05] {
    width: 48px;
    height: 48px;
    color: #dc3545;
    margin-bottom: 1rem;
}

.error-icon svg[b-360tz5xa05] {
    width: 100%;
    height: 100%;
}

/* Wizard Header */
.wizard-header[b-360tz5xa05] {
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.wizard-header h1[b-360tz5xa05] {
    font-size: 1.5rem;
    font-weight: 600;
    color: #212529;
    margin: 0 0 0.5rem 0;
}

.customer-info[b-360tz5xa05] {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    margin-bottom: 0.75rem;
}

.customer-name[b-360tz5xa05] {
    font-size: 1.1rem;
    font-weight: 500;
    color: #495057;
}

.customer-id[b-360tz5xa05] {
    font-size: 0.8rem;
    color: #6c757d;
    font-family: monospace;
}

.migration-info[b-360tz5xa05] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.badge[b-360tz5xa05] {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    border-radius: 9999px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-info[b-360tz5xa05] { background-color: #cfe2ff; color: #084298; }
.badge-warning[b-360tz5xa05] { background-color: #fff3cd; color: #664d03; }
.badge-success[b-360tz5xa05] { background-color: #d1e7dd; color: #0f5132; }
.badge-danger[b-360tz5xa05] { background-color: #f8d7da; color: #842029; }
.badge-secondary[b-360tz5xa05] { background-color: #e9ecef; color: #495057; }

.config-name[b-360tz5xa05] {
    font-size: 0.8rem;
    color: #6c757d;
}

/* Stepper */
.wizard-stepper[b-360tz5xa05] {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    overflow-x: auto;
}

.step[b-360tz5xa05] {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: opacity 0.2s;
}

.step:hover[b-360tz5xa05] {
    opacity: 0.8;
}

.step.pending[b-360tz5xa05] {
    opacity: 0.5;
}

.step-indicator[b-360tz5xa05] {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.8rem;
    transition: all 0.2s;
}

.step.pending .step-indicator[b-360tz5xa05] {
    background-color: #e9ecef;
    color: #6c757d;
}

.step.in-progress .step-indicator[b-360tz5xa05],
.step.active .step-indicator[b-360tz5xa05] {
    background-color: #0078d4;
    color: white;
}

.step.completed .step-indicator[b-360tz5xa05] {
    background-color: #28a745;
    color: white;
}

.step.failed .step-indicator[b-360tz5xa05] {
    background-color: #dc3545;
    color: white;
}

.step-indicator svg[b-360tz5xa05] {
    width: 16px;
    height: 16px;
}

.step-label[b-360tz5xa05] {
    margin-top: 0.375rem;
    font-size: 0.7rem;
    color: #6c757d;
    text-align: center;
    max-width: 80px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.step.active .step-label[b-360tz5xa05],
.step.completed .step-label[b-360tz5xa05] {
    color: #212529;
    font-weight: 500;
}

.step-connector[b-360tz5xa05] {
    width: 40px;
    height: 2px;
    background-color: #e9ecef;
    margin: 0 0.375rem;
    margin-bottom: 1.25rem;
}

.step-connector.completed[b-360tz5xa05] {
    background-color: #28a745;
}

/* Wizard Content */
.wizard-content[b-360tz5xa05] {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

.step-placeholder[b-360tz5xa05] {
    padding: 2rem;
    text-align: center;
    color: #6c757d;
}

/* Wizard Footer */
.wizard-footer[b-360tz5xa05] {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Buttons */
.btn-primary[b-360tz5xa05],
.btn-secondary[b-360tz5xa05],
.btn-success[b-360tz5xa05] {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    text-decoration: none;
}

.btn-primary[b-360tz5xa05] {
    background-color: #0078d4;
    color: white;
}

.btn-primary:hover:not(:disabled)[b-360tz5xa05] {
    background-color: #106ebe;
}

.btn-secondary[b-360tz5xa05] {
    background-color: #e9ecef;
    color: #495057;
}

.btn-secondary:hover:not(:disabled)[b-360tz5xa05] {
    background-color: #dee2e6;
}

.btn-success[b-360tz5xa05] {
    background-color: #28a745;
    color: white;
}

.btn-success:hover:not(:disabled)[b-360tz5xa05] {
    background-color: #218838;
}

.btn-large[b-360tz5xa05] {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
}

.btn-primary:disabled[b-360tz5xa05],
.btn-secondary:disabled[b-360tz5xa05],
.btn-success:disabled[b-360tz5xa05] {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-primary svg[b-360tz5xa05],
.btn-secondary svg[b-360tz5xa05],
.btn-success svg[b-360tz5xa05] {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.btn-link[b-360tz5xa05] {
    color: #0078d4;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
}

.btn-link:hover[b-360tz5xa05] {
    text-decoration: underline;
}

/* Step Content Styles */
.step-content[b-360tz5xa05] {
    padding: 1.5rem;
}

.step-header[b-360tz5xa05] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.step-icon[b-360tz5xa05] {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    color: #0078d4;
}

.step-icon svg[b-360tz5xa05] {
    width: 100%;
    height: 100%;
}

.step-title h2[b-360tz5xa05] {
    margin: 0 0 0.25rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #212529;
}

.step-title p[b-360tz5xa05] {
    margin: 0;
    color: #6c757d;
    font-size: 0.85rem;
}

.step-body[b-360tz5xa05] {
    padding: 0.5rem 0;
}

/* Loading Section */
.loading-section[b-360tz5xa05] {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    color: #6c757d;
}

.loading-section .spinner[b-360tz5xa05] {
    margin-bottom: 0.75rem;
}

/* Instruction Cards */
.instruction-card[b-360tz5xa05] {
    background-color: #f8f9fa;
    border-radius: 6px;
    padding: 1.25rem;
    margin-bottom: 1rem;
}

.instruction-card.info[b-360tz5xa05] {
    background-color: #e7f1ff;
    border-left: 3px solid #0078d4;
}

.instruction-card h3[b-360tz5xa05] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 0.75rem 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: #212529;
}

.instruction-card h4[b-360tz5xa05] {
    margin: 0 0 0.5rem 0;
    font-size: 0.8rem;
    font-weight: 600;
    color: #0078d4;
}

.instruction-card p[b-360tz5xa05] {
    margin: 0 0 0.75rem 0;
    color: #495057;
    line-height: 1.5;
    font-size: 0.85rem;
}

.instruction-card ul[b-360tz5xa05] {
    margin: 0;
    padding-left: 1.25rem;
    color: #495057;
    font-size: 0.85rem;
}

.instruction-card li[b-360tz5xa05] {
    margin-bottom: 0.375rem;
}

.instruction-number[b-360tz5xa05] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background-color: #0078d4;
    color: white;
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 600;
    flex-shrink: 0;
}

/* Partnership Link Section */
.partnership-link-section[b-360tz5xa05] {
    background-color: white;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 1rem;
}

.link-type-badge[b-360tz5xa05] {
    display: inline-block;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.link-type-badge.direct[b-360tz5xa05] {
    background-color: #d1e7dd;
    color: #0f5132;
}

.link-type-badge.indirect[b-360tz5xa05] {
    background-color: #cff4fc;
    color: #055160;
}

.partner-info[b-360tz5xa05] {
    margin-bottom: 0.75rem;
    font-size: 0.8rem;
}

.partner-info .label[b-360tz5xa05] {
    color: #6c757d;
    margin-right: 0.375rem;
}

.partner-info .value[b-360tz5xa05] {
    font-weight: 500;
    color: #212529;
}

.link-actions[b-360tz5xa05] {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.copy-success[b-360tz5xa05] {
    margin-top: 0.5rem;
    padding: 0.375rem;
    background-color: #d1e7dd;
    color: #0f5132;
    border-radius: 4px;
    font-size: 0.8rem;
    text-align: center;
}

/* Validation Section */
.validation-section[b-360tz5xa05] {
    margin-top: 0.75rem;
}

.validation-result[b-360tz5xa05],
.mca-result[b-360tz5xa05] {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 6px;
    margin-bottom: 0.75rem;
}

.validation-result.success[b-360tz5xa05],
.mca-result.success[b-360tz5xa05] {
    background-color: #d1e7dd;
}

.validation-result.pending[b-360tz5xa05],
.mca-result.warning[b-360tz5xa05] {
    background-color: #fff3cd;
}

.mca-result.error[b-360tz5xa05] {
    background-color: #f8d7da;
}

.result-icon[b-360tz5xa05] {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.result-icon svg[b-360tz5xa05] {
    width: 100%;
    height: 100%;
}

.result-icon.success[b-360tz5xa05] { color: #0f5132; }
.result-icon.warning[b-360tz5xa05] { color: #664d03; }
.result-icon.error[b-360tz5xa05] { color: #842029; }

.result-text strong[b-360tz5xa05] {
    display: block;
    margin-bottom: 0.125rem;
    font-size: 0.85rem;
}

.result-text p[b-360tz5xa05] {
    margin: 0;
    font-size: 0.8rem;
}

.validation-actions[b-360tz5xa05],
.mca-actions[b-360tz5xa05] {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 0.75rem;
}

/* Error Section */
.error-section[b-360tz5xa05] {
    text-align: center;
    padding: 1.5rem;
}

.error-section .error-icon[b-360tz5xa05] {
    width: 40px;
    height: 40px;
    color: #dc3545;
    margin: 0 auto 0.75rem;
}

.error-section h3[b-360tz5xa05] {
    margin: 0 0 0.375rem 0;
    color: #842029;
    font-size: 1rem;
}

.error-section p[b-360tz5xa05] {
    color: #6c757d;
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
}

/* MCA Status Section */
.mca-status-section[b-360tz5xa05] {
    background-color: white;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .migration-wizard-container[b-360tz5xa05] {
        padding: 1rem;
    }
    
    .wizard-stepper[b-360tz5xa05] {
        justify-content: flex-start;
    }
    
    .step-label[b-360tz5xa05] {
        display: none;
    }
    
    .step-connector[b-360tz5xa05] {
        width: 24px;
        margin-bottom: 0;
    }
    
    .wizard-footer[b-360tz5xa05] {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .wizard-footer button[b-360tz5xa05] {
        width: 100%;
        justify-content: center;
    }
    
    .link-actions[b-360tz5xa05] {
        flex-direction: column;
    }
    
    .link-actions .btn-primary[b-360tz5xa05],
    .link-actions .btn-secondary[b-360tz5xa05] {
        width: 100%;
        justify-content: center;
    }
    
    .step-content[b-360tz5xa05] {
        padding: 1rem;
    }
    
    .step-header[b-360tz5xa05] {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .step-icon[b-360tz5xa05] {
        width: 28px;
        height: 28px;
    }
}
/* _content/CSPMigrationProject.Web/Components/Pages/Migration/ResellerProgressTab.razor.rz.scp.css */
.reseller-progress-container[b-pon5aya4dt] {
    padding: 1rem;
}

.loading-spinner[b-pon5aya4dt] {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3rem;
    gap: 1rem;
}

.loading-spinner .spinner[b-pon5aya4dt] {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(99, 102, 241, 0.2);
    border-top-color: var(--primary-color, #6366f1);
    border-radius: 50%;
    animation: spin-b-pon5aya4dt 1s linear infinite;
}

@keyframes spin-b-pon5aya4dt {
    to {
        transform: rotate(360deg);
    }
}

/* Sync Progress Banner */
.sync-progress-banner[b-pon5aya4dt] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: 12px;
    border: 1px solid rgba(99, 102, 241, 0.2);
    margin-bottom: 1.5rem;
}

.sync-icon svg.spinning[b-pon5aya4dt] {
    animation: spin-b-pon5aya4dt 1.5s linear infinite;
}

.sync-info h4[b-pon5aya4dt] {
    margin: 0 0 0.5rem;
    color: var(--text-primary, #1f2937);
}

.sync-info p[b-pon5aya4dt] {
    margin: 0 0 0.75rem;
    color: var(--text-secondary, #6b7280);
    font-size: 0.9rem;
}

.sync-info .progress-bar[b-pon5aya4dt] {
    height: 6px;
    background: rgba(99, 102, 241, 0.2);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.sync-info .progress-fill[b-pon5aya4dt] {
    height: 100%;
    background: var(--primary-color, #6366f1);
    transition: width 0.3s ease;
}

.sync-info .progress-text[b-pon5aya4dt] {
    font-size: 0.85rem;
    color: var(--text-secondary, #6b7280);
}

/* Header with Summary Cards */
.reseller-header[b-pon5aya4dt] {
    margin-bottom: 1.5rem;
}

.reseller-header h3[b-pon5aya4dt] {
    margin: 0 0 1rem;
    font-size: 1.25rem;
    color: var(--text-primary, #1f2937);
}

.reseller-summary-cards[b-pon5aya4dt] {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.summary-card[b-pon5aya4dt] {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    background: var(--card-bg, #ffffff);
    border-radius: 12px;
    border: 1px solid var(--border-color, #e5e7eb);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    min-width: 160px;
}

/* Circular Progress */
.circular-progress[b-pon5aya4dt] {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: conic-gradient(var(--color, #6366f1) calc(var(--progress, 0) * 1%),
            rgba(99, 102, 241, 0.15) 0);
    display: flex;
    align-items: center;
    justify-content: center;
}

.circular-progress[b-pon5aya4dt]::before {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    background: var(--card-bg, #ffffff);
    border-radius: 50%;
}

.circular-progress .progress-value[b-pon5aya4dt] {
    position: relative;
    z-index: 1;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary, #1f2937);
}

.summary-label[b-pon5aya4dt] {
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: var(--text-secondary, #6b7280);
    font-weight: 500;
}

.summary-card.customer-distribution .stat-value[b-pon5aya4dt] {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary, #1f2937);
}

.summary-card.customer-distribution .stat-label[b-pon5aya4dt] {
    font-size: 0.85rem;
    color: var(--text-secondary, #6b7280);
    margin-top: 0.25rem;
}

.summary-card.customer-distribution .stat-breakdown[b-pon5aya4dt] {
    margin-top: 0.5rem;
}

.summary-card.customer-distribution .direct-count[b-pon5aya4dt] {
    font-size: 0.8rem;
    color: var(--primary-color, #6366f1);
    background: rgba(99, 102, 241, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

/* Empty State */
.empty-state[b-pon5aya4dt] {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3rem;
    text-align: center;
    background: var(--card-bg, #ffffff);
    border-radius: 12px;
    border: 1px dashed var(--border-color, #e5e7eb);
}

.empty-state svg[b-pon5aya4dt] {
    color: var(--text-secondary, #6b7280);
    margin-bottom: 1rem;
}

.empty-state h4[b-pon5aya4dt] {
    margin: 0 0 0.5rem;
    color: var(--text-primary, #1f2937);
}

.empty-state p[b-pon5aya4dt] {
    margin: 0 0 1.5rem;
    color: var(--text-secondary, #6b7280);
}

.btn-sync[b-pon5aya4dt] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary-color, #6366f1);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-sync:hover:not(:disabled)[b-pon5aya4dt] {
    background: var(--primary-hover, #4f46e5);
    transform: translateY(-1px);
}

.btn-sync:disabled[b-pon5aya4dt] {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Actions Bar */
.reseller-actions[b-pon5aya4dt] {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 1rem;
}

/* Reseller Table */
.reseller-table[b-pon5aya4dt] {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-bg, #ffffff);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.reseller-table th[b-pon5aya4dt],
.reseller-table td[b-pon5aya4dt] {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color, #e5e7eb);
}

.reseller-table th[b-pon5aya4dt] {
    background: var(--header-bg, #f9fafb);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-secondary, #6b7280);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.reseller-table tbody tr:hover[b-pon5aya4dt] {
    background: var(--hover-bg, #f9fafb);
}

.reseller-table .reseller-name[b-pon5aya4dt] {
    font-weight: 500;
    color: var(--text-primary, #1f2937);
}

.reseller-table .mpn-id[b-pon5aya4dt] {
    font-family: monospace;
    font-size: 0.9rem;
    color: var(--text-secondary, #6b7280);
}

.reseller-table .location[b-pon5aya4dt] {
    color: var(--text-secondary, #6b7280);
}

.reseller-table .customers .count[b-pon5aya4dt],
.reseller-table .subscriptions .count[b-pon5aya4dt] {
    font-weight: 600;
    color: var(--text-primary, #1f2937);
}

.reseller-table .completed[b-pon5aya4dt],
.reseller-table .transferred[b-pon5aya4dt] {
    font-size: 0.85rem;
    color: var(--success-color, #10b981);
    margin-left: 0.25rem;
}

/* Progress Cell */
.progress-cell[b-pon5aya4dt] {
    min-width: 120px;
}

.progress-cell .progress-bar[b-pon5aya4dt] {
    height: 6px;
    background: rgba(99, 102, 241, 0.15);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 0.25rem;
}

.progress-cell .progress-fill[b-pon5aya4dt] {
    height: 100%;
    background: var(--primary-color, #6366f1);
    transition: width 0.3s ease;
}

.progress-cell .progress-text[b-pon5aya4dt] {
    font-size: 0.8rem;
    color: var(--text-secondary, #6b7280);
}

/* Warning Row */
.warning-row[b-pon5aya4dt] {
    background: rgba(245, 158, 11, 0.05) !important;
}

/* Status Badges */
.status-badge[b-pon5aya4dt] {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
}

.status-badge.success[b-pon5aya4dt] {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
}

.status-badge.warning[b-pon5aya4dt] {
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
}

.status-badge.in-progress[b-pon5aya4dt] {
    background: rgba(99, 102, 241, 0.1);
    color: #4f46e5;
}

.status-badge.pending[b-pon5aya4dt] {
    background: rgba(107, 114, 128, 0.1);
    color: #6b7280;
}

/* Responsive */
@media (max-width: 768px) {
    .reseller-summary-cards[b-pon5aya4dt] {
        flex-direction: column;
    }

    .reseller-table[b-pon5aya4dt] {
        display: block;
        overflow-x: auto;
    }
}
/* _content/CSPMigrationProject.Web/Components/Pages/Migration/Step2McaValidation.razor.rz.scp.css */
/* Step 2 - MCA Validation Styles */

/* Info status result */
.mca-result.info[b-fq4plcibva] {
    background: #e7f3ff;
    border-color: #0078d4;
}

.result-icon.info[b-fq4plcibva] {
    color: #0078d4;
}

.attestation-card h3[b-fq4plcibva] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.attestation-card h3 svg[b-fq4plcibva] {
    color: #0078d4;
}

/* Attestation Form */
.attestation-form[b-fq4plcibva] {
    margin-top: 1.5rem;
}

.form-row[b-fq4plcibva] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group[b-fq4plcibva] {
    margin-bottom: 1rem;
}

.form-group label[b-fq4plcibva] {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input[b-fq4plcibva],
.form-group select[b-fq4plcibva] {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

.form-group input:focus[b-fq4plcibva],
.form-group select:focus[b-fq4plcibva] {
    outline: none;
    border-color: #0078d4;
    box-shadow: 0 0 0 3px rgba(0, 120, 212, 0.15);
}

.form-group input[b-fq4plcibva]::placeholder {
    color: #999;
}

/* Expiration Section */
.expiration-section[b-fq4plcibva] {
    margin: 1.5rem 0;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
}

.expiration-toggle[b-fq4plcibva] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: #f8f9fa;
    cursor: pointer;
    user-select: none;
    font-weight: 500;
    color: #495057;
    transition: background-color 0.2s;
}

.expiration-toggle:hover[b-fq4plcibva] {
    background: #e9ecef;
}

.expiration-toggle svg[b-fq4plcibva] {
    transition: transform 0.2s;
}

.expiration-toggle svg.rotated[b-fq4plcibva] {
    transform: rotate(90deg);
}

.expiration-options[b-fq4plcibva] {
    padding: 1rem;
    background: white;
    border-top: 1px solid #e9ecef;
}

.expiration-input-group[b-fq4plcibva] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.expiration-input-group input[b-fq4plcibva] {
    width: 120px;
    flex-shrink: 0;
}

.input-suffix[b-fq4plcibva] {
    color: #666;
    font-size: 0.9rem;
}

.form-hint[b-fq4plcibva] {
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.5rem;
}

.expiration-presets[b-fq4plcibva] {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.preset-btn[b-fq4plcibva] {
    padding: 0.5rem 1rem;
    border: 1px solid #ddd;
    border-radius: 20px;
    background: white;
    cursor: pointer;
    font-size: 0.85rem;
    color: #495057;
    transition: all 0.2s;
}

.preset-btn:hover[b-fq4plcibva] {
    border-color: #0078d4;
    color: #0078d4;
}

.preset-btn.active[b-fq4plcibva] {
    background: #0078d4;
    border-color: #0078d4;
    color: white;
}

/* Form Error */
.form-error[b-fq4plcibva] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: #fff5f5;
    border: 1px solid #fed7d7;
    border-radius: 6px;
    color: #c53030;
    margin-bottom: 1rem;
}

/* Form Actions */
.form-actions[b-fq4plcibva] {
    margin-top: 1.5rem;
}

.btn-large[b-fq4plcibva] {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
}

/* Attestation Success */
.attestation-success[b-fq4plcibva] {
    margin-top: 1.5rem;
}

.attestation-link-section[b-fq4plcibva] {
    margin-top: 1rem;
    padding: 1rem;
    background: #f0f9ff;
    border-radius: 8px;
}

.link-box[b-fq4plcibva] {
    display: flex;
    gap: 0.5rem;
}

.attestation-url[b-fq4plcibva] {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid #0078d4;
    border-radius: 6px;
    font-size: 0.9rem;
    background: white;
    color: #333;
}

.btn-copy[b-fq4plcibva] {
    padding: 0.75rem;
    border: 1px solid #0078d4;
    border-radius: 6px;
    background: white;
    color: #0078d4;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-copy:hover[b-fq4plcibva] {
    background: #0078d4;
    color: white;
}

.copy-success[b-fq4plcibva] {
    display: inline-block;
    margin-top: 0.5rem;
    color: #38a169;
    font-size: 0.9rem;
    font-weight: 500;
}

.expiry-notice[b-fq4plcibva] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    color: #666;
    font-size: 0.9rem;
}

.attestation-actions[b-fq4plcibva] {
    margin-top: 1rem;
}

.btn-secondary[b-fq4plcibva] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: white;
    color: #0078d4;
    border: 1px solid #0078d4;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-secondary:hover[b-fq4plcibva] {
    background: #f0f9ff;
}

/* Responsive */
@media (max-width: 768px) {
    .form-row[b-fq4plcibva] {
        grid-template-columns: 1fr;
    }
    
    .expiration-presets[b-fq4plcibva] {
        justify-content: center;
    }
    
    .link-box[b-fq4plcibva] {
        flex-direction: column;
    }
    
    .attestation-url[b-fq4plcibva] {
        width: 100%;
    }
}
/* _content/CSPMigrationProject.Web/Components/Pages/Migration/Step4SubscriptionTransfer.razor.rz.scp.css */
.subscription-transfer[b-3w9qx01gdy] {
    padding: 1rem;
}

.error-banner[b-3w9qx01gdy] {
    background-color: #fee2e2;
    border: 1px solid #ef4444;
    color: #b91c1c;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
}

.error-banner .close-btn[b-3w9qx01gdy] {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    color: #b91c1c;
    opacity: 0.7;
}

.error-banner .close-btn:hover[b-3w9qx01gdy] {
    opacity: 1;
}

.actions-bar[b-3w9qx01gdy] {
    margin-bottom: 1rem;
    display: flex;
    justify-content: flex-end;
}

.filter-bar[b-3w9qx01gdy] {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 0.75rem 1rem;
    background: var(--mud-palette-background-grey);
    border-radius: 8px;
    font-size: 0.9rem;
}

.filter-label[b-3w9qx01gdy] {
    font-weight: 600;
    color: var(--mud-palette-text-secondary);
}

.filter-item[b-3w9qx01gdy] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    user-select: none;
}

.filter-item input[type="checkbox"][b-3w9qx01gdy] {
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.status-dot[b-3w9qx01gdy] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.status-dot.pending[b-3w9qx01gdy] { background-color: #ff9800; }
.status-dot.inprogress[b-3w9qx01gdy] { background-color: #2196f3; }
.status-dot.cancelled[b-3w9qx01gdy] { background-color: #f44336; }
.status-dot.completed[b-3w9qx01gdy] { background-color: #4caf50; }

.transfer-list[b-3w9qx01gdy] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.transfer-card[b-3w9qx01gdy] {
    border: 1px solid var(--mud-palette-divider);
    border-radius: 8px;
    overflow: hidden;
    background: var(--mud-palette-surface);
}

.transfer-card-header[b-3w9qx01gdy] {
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: var(--mud-palette-background-grey);
    transition: background 0.2s;
}

.transfer-card-header:hover[b-3w9qx01gdy] {
    background: var(--mud-palette-action-hover);
}

.transfer-info[b-3w9qx01gdy] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.transfer-main[b-3w9qx01gdy] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.transfer-partners[b-3w9qx01gdy] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--mud-palette-text-secondary);
}

.partner-name[b-3w9qx01gdy] {
    font-weight: 500;
}

.mr-1[b-3w9qx01gdy] {
    margin-right: 0.25rem;
}

.mr-2[b-3w9qx01gdy] {
    margin-right: 0.5rem;
}

.transfer-id[b-3w9qx01gdy] {
    font-weight: 600;
    font-family: monospace;
}

.transfer-meta[b-3w9qx01gdy] {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--mud-palette-text-secondary);
    font-size: 0.875rem;
}

.toggle-icon[b-3w9qx01gdy] {
    transition: transform 0.3s;
}

.toggle-icon.rotated[b-3w9qx01gdy] {
    transform: rotate(90deg);
}

.transfer-card-body[b-3w9qx01gdy] {
    padding: 1rem;
    border-top: 1px solid var(--mud-palette-divider);
}

.transfer-actions[b-3w9qx01gdy] {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.line-items-table-container[b-3w9qx01gdy] {
    overflow-x: auto;
}

.line-items-table[b-3w9qx01gdy] {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.line-items-table th[b-3w9qx01gdy] {
    text-align: left;
    padding: 0.75rem;
    border-bottom: 2px solid var(--mud-palette-divider);
    color: var(--mud-palette-text-secondary);
    font-weight: 600;
}

.line-items-table td[b-3w9qx01gdy] {
    padding: 0.75rem;
    border-bottom: 1px solid var(--mud-palette-divider);
}

.sub-name[b-3w9qx01gdy] {
    font-weight: 500;
}

.sub-id[b-3w9qx01gdy] {
    font-size: 0.75rem;
    color: var(--mud-palette-text-secondary);
    font-family: monospace;
}

.status-badge[b-3w9qx01gdy] {
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-badge.pending[b-3w9qx01gdy] { background: #fff3cd; color: #856404; }
.status-badge.inprogress[b-3w9qx01gdy] { background: #cce5ff; color: #004085; }
.status-badge.completed[b-3w9qx01gdy] { background: #d4edda; color: #155724; }
.status-badge.accepted[b-3w9qx01gdy] { background: #d4edda; color: #155724; }
.status-badge.failed[b-3w9qx01gdy] { background: #f8d7da; color: #721c24; }
.status-badge.cancelled[b-3w9qx01gdy] { background: #f8d7da; color: #721c24; }
.status-badge.withdrawn[b-3w9qx01gdy] { background: #e2e3e5; color: #383d41; }

.status-badge.sm[b-3w9qx01gdy] {
    padding: 0.125rem 0.375rem;
    font-size: 0.7rem;
}

.error-info[b-3w9qx01gdy] {
    margin-left: 0.5rem;
    color: var(--mud-palette-error);
    cursor: help;
}

.btn-icon[b-3w9qx01gdy] {
    background: none;
    border: none;
    padding: 0.25rem;
    cursor: pointer;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-icon:hover[b-3w9qx01gdy] {
    background: var(--mud-palette-action-hover);
}

.btn-icon.success[b-3w9qx01gdy] { color: var(--mud-palette-success); }

.mr-1[b-3w9qx01gdy] { margin-right: 0.25rem; }

.spinner-small[b-3w9qx01gdy] {
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin-b-3w9qx01gdy 1s ease-in-out infinite;
    display: inline-block;
    margin-right: 0.5rem;
}

@keyframes spin-b-3w9qx01gdy {
    to { transform: rotate(360deg); }
}
/* _content/CSPMigrationProject.Web/Components/Routes.razor.rz.scp.css */
/* Unauthorized Page Styles */

.unauthorized-page[b-3bl7i20zo7] {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.unauthorized-content[b-3bl7i20zo7] {
    text-align: center;
    max-width: 500px;
}

.unauthorized-content h1[b-3bl7i20zo7] {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.unauthorized-content p[b-3bl7i20zo7] {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 2rem;
}

.btn-login[b-3bl7i20zo7],
.btn-home[b-3bl7i20zo7] {
    display: inline-block;
    padding: 1rem 2rem;
    background: #0078d4;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-login:hover[b-3bl7i20zo7],
.btn-home:hover[b-3bl7i20zo7] {
    background: #005a9e;
    transform: translateY(-2px);
}
/* _content/CSPMigrationProject.Web/Components/Shared/TagSelectionPopup.razor.rz.scp.css */
.tag-popup-overlay[b-td4u3jx6wz] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 1rem;
}

.tag-popup-content[b-td4u3jx6wz] {
    background: white;
    border-radius: 16px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    animation: popupIn-b-td4u3jx6wz 0.3s ease-out;
}

@keyframes popupIn-b-td4u3jx6wz {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(-10px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.tag-popup-header[b-td4u3jx6wz] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 1.5rem 1rem;
    background: linear-gradient(135deg, #0078d4 0%, #1565c0 100%);
    color: white;
}

.tag-popup-header h2[b-td4u3jx6wz] {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.tag-popup-body[b-td4u3jx6wz] {
    padding: 1.5rem;
}

.tag-description[b-td4u3jx6wz] {
    margin: 0 0 0.5rem 0;
    color: #374151;
    line-height: 1.5;
}

.tag-hint-text[b-td4u3jx6wz] {
    margin: 0 0 1.5rem 0;
    font-size: 0.85rem;
    color: #6b7280;
    font-style: italic;
}

.tag-input-group[b-td4u3jx6wz] {
    margin-bottom: 1rem;
}

.tag-input[b-td4u3jx6wz] {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.2s;
}

.tag-input:focus[b-td4u3jx6wz] {
    outline: none;
    border-color: #0078d4;
    box-shadow: 0 0 0 3px rgba(0, 120, 212, 0.15);
}

.tag-input.error[b-td4u3jx6wz] {
    border-color: #ef4444;
}

.tag-input.error:focus[b-td4u3jx6wz] {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

.error-message[b-td4u3jx6wz] {
    display: block;
    margin-top: 0.5rem;
    color: #ef4444;
    font-size: 0.85rem;
}

.available-tags[b-td4u3jx6wz] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    margin-bottom: 1.5rem;
}

.available-label[b-td4u3jx6wz] {
    font-size: 0.8rem;
    color: #6b7280;
    margin-right: 0.25rem;
}

.tag-chip[b-td4u3jx6wz] {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #374151;
    cursor: pointer;
    transition: all 0.2s;
}

.tag-chip:hover[b-td4u3jx6wz] {
    background: #e5e7eb;
    border-color: #d1d5db;
    transform: translateY(-1px);
}

.tag-chip:disabled[b-td4u3jx6wz] {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-submit[b-td4u3jx6wz] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, #0078d4 0%, #1565c0 100%);
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-submit:hover:not(:disabled)[b-td4u3jx6wz] {
    background: linear-gradient(135deg, #006cbd 0%, #1255a1 100%);
    box-shadow: 0 4px 12px rgba(0, 120, 212, 0.35);
    transform: translateY(-1px);
}

.btn-submit:disabled[b-td4u3jx6wz] {
    opacity: 0.6;
    cursor: not-allowed;
}

.spinner[b-td4u3jx6wz] {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin-b-td4u3jx6wz 1s linear infinite;
}

@keyframes spin-b-td4u3jx6wz {
    to {
        transform: rotate(360deg);
    }
}
