/* _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.ready-transfer[b-olvmnz7aso] {
    color: #d97706;
}

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

.breakdown-item.excluded[b-olvmnz7aso] {
    color: #dc2626;
}

.breakdown-item.excluded.active[b-olvmnz7aso],
.breakdown-item.excluded:hover[b-olvmnz7aso] {
    background: #fee2e2;
    border-color: #dc2626;
}

.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;
}

.filter-select[b-olvmnz7aso] {
    padding: 0.375rem 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background: white;
    cursor: pointer;
    min-width: 120px;
}

.assignee-cell[b-olvmnz7aso] {
    min-width: 120px;
}

.assignee-badge[b-olvmnz7aso] {
    display: inline-block;
    padding: 0.125rem 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 10px;
    background: #ede9fe;
    color: #7c3aed;
}

.assignee-none[b-olvmnz7aso] {
    color: #9ca3af;
    font-size: 0.85rem;
}

.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;
}

.email-notification-indicator[b-olvmnz7aso] {
    margin-top: 0.35rem;
}

.email-notification-pill[b-olvmnz7aso] {
    display: inline-flex;
    align-items: center;
    padding: 0.16rem 0.48rem;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.email-notification-pill.sent[b-olvmnz7aso] {
    background: #dcfce7;
    color: #166534;
}

.email-notification-pill.not-sent[b-olvmnz7aso] {
    background: #f3f4f6;
    color: #6b7280;
}

.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.ready-for-transfer[b-olvmnz7aso] {
    background: #fef3c7;
    color: #d97706;
}

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

.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;
}

.ready-transfer-row[b-olvmnz7aso] {
    background: #fffbeb;
}

.excluded-row[b-olvmnz7aso] {
    background: #fef2f2;
    opacity: 0.7;
}

/* 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] {
    background: #dc2626;
    color: white;
    border: 1px solid #dc2626;
}

.btn-danger:hover[b-olvmnz7aso] {
    background: #b91c1c;
    border-color: #b91c1c;
}

/* 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;
}

.btn-transfer-action:disabled[b-olvmnz7aso],
.btn-transfer-action.disabled[b-olvmnz7aso] {
    background: #9ca3af;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
    opacity: 0.7;
}

.btn-transfer-action:disabled:hover[b-olvmnz7aso],
.btn-transfer-action.disabled:hover[b-olvmnz7aso] {
    transform: none;
    box-shadow: none;
}

.csp-warning-hint[b-olvmnz7aso] {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #dc2626;
    padding: 0.25rem 0.5rem;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 4px;
    margin-left: 0.5rem;
}

/* 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;
}

/* ══ Completed Transfers Tab ══ */

.completed-header[b-olvmnz7aso] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.completed-header h3[b-olvmnz7aso] {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
}

.completed-actions[b-olvmnz7aso] {
    display: flex;
    gap: 0.5rem;
}

.completed-badge[b-olvmnz7aso] {
    background: #059669 !important;
}

.completed-summary[b-olvmnz7aso] {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.completed-stat[b-olvmnz7aso] {
    flex: 1;
    text-align: center;
    padding: 1rem 0.5rem;
    border-radius: 10px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
}

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

.completed-stat .stat-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;
}

.completed-stat.transfers[b-olvmnz7aso] {
    color: #3b82f6;
    border-color: #93c5fd;
    background: #eff6ff;
}

.completed-stat.customers[b-olvmnz7aso] {
    color: #8b5cf6;
    border-color: #c4b5fd;
    background: #f5f3ff;
}

.completed-stat.subscriptions[b-olvmnz7aso] {
    color: #0891b2;
    border-color: #67e8f9;
    background: #ecfeff;
}

.completed-stat.successful[b-olvmnz7aso] {
    color: #059669;
    border-color: #6ee7b7;
    background: #ecfdf5;
}

.sub-count-badge[b-olvmnz7aso] {
    display: inline-block;
    padding: 0.25rem 0.625rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 20px;
    background: #dbeafe;
    color: #1d4ed8;
}

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

.completed-detail-header h4[b-olvmnz7aso] {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1f2937;
}

.detail-meta[b-olvmnz7aso] {
    display: flex;
    gap: 1.5rem;
    font-size: 0.8rem;
    color: #6b7280;
}

.detail-meta strong[b-olvmnz7aso] {
    color: #374151;
}

.detail-table[b-olvmnz7aso] {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}

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

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

.detail-table .sub-name[b-olvmnz7aso] {
    font-weight: 500;
    color: #1f2937;
    max-width: 250px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.detail-table tr.li-completed[b-olvmnz7aso] {
    background: #f0fdf4;
}

.detail-table tr.li-failed[b-olvmnz7aso] {
    background: #fef2f2;
}

/* Sortable Table Headers */
.sortable-th[b-olvmnz7aso] {
    cursor: pointer;
    user-select: none;
    transition: color 0.15s;
}

.sortable-th:hover[b-olvmnz7aso] {
    color: #3b82f6;
}

/* Date Filters */
.date-filters[b-olvmnz7aso] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.date-input[b-olvmnz7aso] {
    width: 140px;
    padding: 0.375rem 0.5rem !important;
    font-size: 0.8rem !important;
}

.date-separator[b-olvmnz7aso] {
    color: #9ca3af;
    font-weight: 500;
}

/* Filter Result Count */
.filter-result-count[b-olvmnz7aso] {
    font-size: 0.8rem;
    color: #9ca3af;
    margin-bottom: 0.5rem;
    padding: 0 0.25rem;
}
/* _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 */
/* ───────────────────────────────────────────────
   CSP Operations Portal — Landing Page
   Apple-inspired volumetric glass design system
   ─────────────────────────────────────────────── */

/* ── Tokens ── */
.landing-shell[b-wcwiejttox] {
    --bg: #060d18;
    --surface: rgba(255, 255, 255, 0.04);
    --surface-border: rgba(255, 255, 255, 0.08);
    --surface-highlight: rgba(255, 255, 255, 0.12);
    --ink: #f0f4f8;
    --ink-muted: #8ea3b8;
    --accent: #3b9eff;
    --accent-soft: rgba(59, 158, 255, 0.15);
    --accent-glow: rgba(59, 158, 255, 0.35);
    --radius-xl: 28px;
    --radius-lg: 20px;
    --radius-md: 14px;
    --radius-pill: 999px;
}

/* ── Shell ── */
.landing-shell[b-wcwiejttox] {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    color: var(--ink);
    background: var(--bg);
    font-family: "SF Pro Display", "Segoe UI Variable Display", "Segoe UI", system-ui, -apple-system, sans-serif;
    -webkit-font-smoothing: antialiased;
}

/* ── Ambient glows ── */
.landing-glow[b-wcwiejttox] {
    position: absolute;
    pointer-events: none;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.45;
    animation: glowDrift-b-wcwiejttox 18s ease-in-out infinite alternate;
}

.glow-top[b-wcwiejttox] {
    top: -14%;
    left: 50%;
    translate: -50% 0;
    width: 680px;
    height: 400px;
    background: radial-gradient(ellipse, var(--accent-glow), transparent 70%);
}

.glow-bottom[b-wcwiejttox] {
    bottom: -10%;
    right: 10%;
    width: 500px;
    height: 340px;
    background: radial-gradient(ellipse, rgba(99, 60, 255, 0.22), transparent 70%);
    animation-delay: -9s;
}

/* ── Topbar ── */
.landing-topbar[b-wcwiejttox] {
    position: relative;
    z-index: 2;
    width: min(1080px, calc(100% - 3rem));
    margin: 0 auto;
    padding: 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-lockup[b-wcwiejttox] {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.microsoft-mark[b-wcwiejttox] {
    display: grid;
    grid-template-columns: repeat(2, 11px);
    grid-template-rows: repeat(2, 11px);
    gap: 3px;
    padding: 5px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
}

.microsoft-mark.small[b-wcwiejttox] {
    grid-template-columns: repeat(2, 9px);
    grid-template-rows: repeat(2, 9px);
    gap: 2px;
    padding: 4px;
    border-radius: 6px;
}

.ms-tile[b-wcwiejttox] {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 1.5px;
}

.ms-tile.red[b-wcwiejttox]    { background: #f35325; }
.ms-tile.green[b-wcwiejttox]  { background: #81bc06; }
.ms-tile.blue[b-wcwiejttox]   { background: #05a6f0; }
.ms-tile.yellow[b-wcwiejttox] { background: #ffba08; }

.brand-name[b-wcwiejttox] {
    font-size: 0.92rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.01em;
}

.topbar-actions[b-wcwiejttox] {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.topbar-link[b-wcwiejttox] {
    color: var(--ink-muted);
    font-size: 0.88rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}

.topbar-link:hover[b-wcwiejttox] {
    color: #fff;
}

/* ══════════════════════════════════════════════════
   GLASS BUTTON SYSTEM — Volumetric / Apple-like
   ══════════════════════════════════════════════════ */

.btn-glass[b-wcwiejttox] {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.72rem 1.4rem;
    border: none;
    border-radius: var(--radius-pill);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.005em;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.22s cubic-bezier(0.2, 0.9, 0.3, 1),
                box-shadow 0.22s cubic-bezier(0.2, 0.9, 0.3, 1),
                background 0.22s ease;
    will-change: transform;
}

/* ── Primary CTA — bright volumetric glass ── */
.btn-glass-primary[b-wcwiejttox] {
    color: #fff;
    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, 0.18) 0%,
            rgba(255, 255, 255, 0.0) 50%,
            rgba(0, 0, 0, 0.06) 100%
        ),
        linear-gradient(135deg, #3b9eff 0%, #1a6fd8 50%, #1158b8 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.15),
        0 1px 3px rgba(0, 0, 0, 0.25),
        0 8px 24px rgba(59, 158, 255, 0.25),
        0 2px 8px rgba(59, 158, 255, 0.15);
}

.btn-glass-primary[b-wcwiejttox]::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.15), transparent 50%);
    pointer-events: none;
    opacity: 0.8;
}

.btn-glass-primary:hover[b-wcwiejttox] {
    transform: translateY(-1px) scale(1.02);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.35),
        inset 0 -1px 0 rgba(0, 0, 0, 0.15),
        0 2px 4px rgba(0, 0, 0, 0.25),
        0 12px 32px rgba(59, 158, 255, 0.35),
        0 4px 12px rgba(59, 158, 255, 0.2);
}

.btn-glass-primary:active[b-wcwiejttox] {
    transform: translateY(0) scale(0.98);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        inset 0 2px 6px rgba(0, 0, 0, 0.15),
        0 1px 2px rgba(0, 0, 0, 0.2),
        0 4px 12px rgba(59, 158, 255, 0.2);
}

/* ── Secondary — frosted glass surface ── */
.btn-glass-secondary[b-wcwiejttox] {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px) saturate(1.4);
    -webkit-backdrop-filter: blur(12px) saturate(1.4);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        inset 0 -1px 0 rgba(0, 0, 0, 0.08),
        0 1px 3px rgba(0, 0, 0, 0.15),
        0 4px 16px rgba(0, 0, 0, 0.08);
}

.btn-glass-secondary:hover[b-wcwiejttox] {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.16);
    transform: translateY(-1px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        inset 0 -1px 0 rgba(0, 0, 0, 0.08),
        0 2px 4px rgba(0, 0, 0, 0.15),
        0 8px 24px rgba(0, 0, 0, 0.12);
}

.btn-glass-secondary:active[b-wcwiejttox] {
    transform: translateY(0) scale(0.98);
    background: rgba(255, 255, 255, 0.04);
}

/* ── Small variant (topbar) ── */
.btn-glass-sm[b-wcwiejttox] {
    padding: 0.5rem 1.1rem;
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px) saturate(1.4);
    -webkit-backdrop-filter: blur(12px) saturate(1.4);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 1px 3px rgba(0, 0, 0, 0.12);
}

.btn-glass-sm:hover[b-wcwiejttox] {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.18);
    transform: translateY(-1px);
}

/* ── Large variant (closing CTA) ── */
.btn-glass-lg[b-wcwiejttox] {
    padding: 0.88rem 2rem;
    font-size: 1rem;
}

/* ── Content wrapper ── */
.landing-content[b-wcwiejttox] {
    position: relative;
    z-index: 1;
    flex: 1;
    width: min(1080px, calc(100% - 3rem));
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
    padding: 4rem 0 5rem;
}

/* ══════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════ */

.hero[b-wcwiejttox] {
    max-width: 640px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-eyebrow[b-wcwiejttox] {
    margin: 0 0 1.25rem;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
}

.hero h1[b-wcwiejttox] {
    margin: 0;
    font-size: clamp(2.8rem, 6.5vw, 4.2rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.035em;
    background: linear-gradient(180deg, #ffffff 30%, rgba(255, 255, 255, 0.6) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub[b-wcwiejttox] {
    max-width: 50ch;
    margin: 1.25rem 0 0;
    font-size: 1.08rem;
    line-height: 1.7;
    color: var(--ink-muted);
}

.hero-actions[b-wcwiejttox] {
    margin-top: 2.25rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

/* ══════════════════════════════════════════════════
   VALUE STRIP — horizontal glass triptych
   ══════════════════════════════════════════════════ */

.value-strip[b-wcwiejttox] {
    width: 100%;
    display: flex;
    align-items: stretch;
    gap: 0;
    padding: 2rem 2.5rem;
    border-radius: var(--radius-xl);
    background: var(--surface);
    border: 1px solid var(--surface-border);
    backdrop-filter: blur(20px) saturate(1.3);
    -webkit-backdrop-filter: blur(20px) saturate(1.3);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 1px 3px rgba(0, 0, 0, 0.12),
        0 12px 48px rgba(0, 0, 0, 0.15);
}

.value-item[b-wcwiejttox] {
    flex: 1;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0 2rem;
}

.value-item:first-child[b-wcwiejttox] {
    padding-left: 0;
}

.value-item:last-child[b-wcwiejttox] {
    padding-right: 0;
}

.value-divider[b-wcwiejttox] {
    width: 1px;
    align-self: stretch;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    flex-shrink: 0;
}

.value-icon[b-wcwiejttox] {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: var(--accent-soft);
    color: var(--accent);
}

.value-icon svg[b-wcwiejttox] {
    width: 20px;
    height: 20px;
}

.value-item strong[b-wcwiejttox] {
    display: block;
    margin-bottom: 0.3rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
}

.value-item span[b-wcwiejttox] {
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--ink-muted);
}

/* ══════════════════════════════════════════════════
   CLOSING CTA
   ══════════════════════════════════════════════════ */

.closing-cta[b-wcwiejttox] {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3rem 0 1rem;
}

.closing-eyebrow[b-wcwiejttox] {
    margin: 0 0 0.75rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
}

.closing-cta h2[b-wcwiejttox] {
    margin: 0 0 1.75rem;
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 600;
    letter-spacing: -0.025em;
    color: rgba(255, 255, 255, 0.85);
}

/* ── Footer ── */
.landing-footer[b-wcwiejttox] {
    position: relative;
    z-index: 1;
    width: min(1080px, calc(100% - 3rem));
    margin: 0 auto;
    padding: 1.5rem 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.84rem;
}

.footer-brand[b-wcwiejttox] {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.footer-copy[b-wcwiejttox] {
    color: rgba(255, 255, 255, 0.25);
}

/* ── Animations ── */
@keyframes glowDrift-b-wcwiejttox {
    0%   { opacity: 0.35; transform: translate(0, 0) scale(1); }
    100% { opacity: 0.55; transform: translate(30px, 15px) scale(1.08); }
}

/* ══════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════ */

@media (max-width: 880px) {
    .landing-content[b-wcwiejttox] {
        gap: 3rem;
        padding: 3rem 0 4rem;
    }

    .value-strip[b-wcwiejttox] {
        flex-direction: column;
        padding: 1.5rem 1.75rem;
        gap: 0;
    }

    .value-item[b-wcwiejttox] {
        padding: 1.25rem 0;
    }

    .value-item:first-child[b-wcwiejttox] {
        padding-top: 0;
    }

    .value-item:last-child[b-wcwiejttox] {
        padding-bottom: 0;
    }

    .value-divider[b-wcwiejttox] {
        width: 100%;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    }
}

@media (max-width: 640px) {
    .landing-topbar[b-wcwiejttox],
    .landing-content[b-wcwiejttox],
    .landing-footer[b-wcwiejttox] {
        width: min(100%, calc(100% - 2rem));
    }

    .hero h1[b-wcwiejttox] {
        font-size: clamp(2.2rem, 10vw, 3rem);
    }

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

    .hero-actions[b-wcwiejttox] {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn-glass[b-wcwiejttox] {
        width: 100%;
    }

    .landing-footer[b-wcwiejttox] {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .value-strip[b-wcwiejttox] {
        padding: 1.25rem;
        border-radius: var(--radius-lg);
    }
}
/* _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);
    }
}
