/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* ============================================
   OnePlatform Main Layout Styles
   ============================================ */

/* Layout Container */
.op-layout[b-elp02dy6yz] {
    display: flex;
    min-height: 100vh;
    background-color: var(--op-bg-page);
}

/* ============================================
   Sidebar Styles
   ============================================ */

.op-sidebar[b-elp02dy6yz] {
    width: var(--op-sidebar-width);
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    background-color: var(--op-bg-sidebar);
    border-right: 1px solid var(--op-border);
    display: flex;
    flex-direction: column;
    z-index: var(--op-z-fixed);
    transition: width var(--op-transition-smooth), transform var(--op-transition-smooth);
    overflow: hidden;
}

/* Sidebar Header */
.op-sidebar-header[b-elp02dy6yz] {
    height: var(--op-topbar-height);
    padding: 0 var(--op-space-4);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--op-border);
    flex-shrink: 0;
}

/* Brand */
.op-brand[b-elp02dy6yz] {
    display: flex;
    align-items: center;
    gap: var(--op-space-3);
    text-decoration: none;
    overflow: hidden;
}

.op-brand-logo[b-elp02dy6yz] {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    color: var(--op-primary);
}

.op-brand-logo svg[b-elp02dy6yz] {
    width: 100%;
    height: 100%;
}

.op-brand-logo[b-elp02dy6yz]  .op-brand-bg {
    fill: var(--op-primary);
}

.op-brand-name[b-elp02dy6yz] {
    font-size: var(--op-text-xl);
    font-weight: var(--op-font-bold);
    color: var(--op-text-primary);
    white-space: nowrap;
    transition: opacity var(--op-transition-fast);
}

/* Sidebar Toggle Button */
.op-sidebar-toggle[b-elp02dy6yz] {
    flex-shrink: 0;
    color: var(--op-text-secondary);
}

.op-sidebar-toggle:hover[b-elp02dy6yz] {
    color: var(--op-primary);
    background-color: var(--op-primary-light);
}

/* Sidebar Footer - User Info */
.op-sidebar-footer[b-elp02dy6yz] {
    margin-top: auto;
    padding: var(--op-space-4);
    border-top: 1px solid var(--op-border);
}

.op-user-info[b-elp02dy6yz] {
    display: flex;
    align-items: center;
    gap: var(--op-space-3);
    padding: var(--op-space-3);
    border-radius: var(--op-radius-lg);
    background-color: var(--op-bg-hover);
    cursor: pointer;
    transition: background-color var(--op-transition-fast);
}

.op-user-info:hover[b-elp02dy6yz] {
    background-color: var(--op-bg-active);
}

.op-user-details[b-elp02dy6yz] {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: opacity var(--op-transition-fast);
}

.op-user-name[b-elp02dy6yz] {
    font-size: var(--op-text-sm);
    font-weight: var(--op-font-semibold);
    color: var(--op-text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.op-user-role[b-elp02dy6yz] {
    font-size: var(--op-text-xs);
    color: var(--op-text-secondary);
    white-space: nowrap;
}

/* Collapsed Sidebar */
[b-elp02dy6yz] .sidebar-collapsed .op-sidebar {
    width: var(--op-sidebar-collapsed-width);
}

[b-elp02dy6yz] .sidebar-collapsed .op-brand-name,
[b-elp02dy6yz] .sidebar-collapsed .op-user-details {
    opacity: 0;
    visibility: hidden;
    width: 0;
}

[b-elp02dy6yz] .sidebar-collapsed .op-sidebar-header {
    justify-content: center;
    padding: 0;
}

[b-elp02dy6yz] .sidebar-collapsed .op-sidebar-toggle {
    display: none;
}

[b-elp02dy6yz] .sidebar-collapsed .op-user-info {
    justify-content: center;
    padding: var(--op-space-2);
}

/* ============================================
   Main Content Area
   ============================================ */

.op-main[b-elp02dy6yz] {
    flex: 1;
    margin-left: var(--op-sidebar-width);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    transition: margin-left var(--op-transition-smooth);
}

[b-elp02dy6yz] .sidebar-collapsed .op-main {
    margin-left: var(--op-sidebar-collapsed-width);
}

/* ============================================
   Top App Bar
   ============================================ */

.op-topbar[b-elp02dy6yz] {
    height: var(--op-topbar-height);
    background-color: var(--op-bg-topbar);
    border-bottom: 1px solid var(--op-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--op-space-6);
    position: sticky;
    top: 0;
    z-index: var(--op-z-sticky);
    flex-shrink: 0;
}

.op-topbar-left[b-elp02dy6yz] {
    display: flex;
    align-items: center;
    gap: var(--op-space-4);
    flex: 1;
}

.op-topbar-right[b-elp02dy6yz] {
    display: flex;
    align-items: center;
    gap: var(--op-space-2);
}

/* Mobile Menu Button */
.op-mobile-menu-btn[b-elp02dy6yz] {
    display: none;
}

/* Search Box */
.op-search-box[b-elp02dy6yz] {
    position: relative;
    max-width: 400px;
    flex: 1;
}

.op-search-icon[b-elp02dy6yz] {
    position: absolute;
    left: var(--op-space-3);
    top: 50%;
    transform: translateY(-50%);
    color: var(--op-text-tertiary);
    pointer-events: none;
}

.op-search-input[b-elp02dy6yz] {
    width: 100%;
    height: 40px;
    padding: 0 var(--op-space-10) 0 var(--op-space-10);
    font-size: var(--op-text-sm);
    color: var(--op-text-primary);
    background-color: var(--op-bg-hover);
    border: 1px solid transparent;
    border-radius: var(--op-radius-md);
    transition: all var(--op-transition-fast);
}

.op-search-input:hover[b-elp02dy6yz] {
    background-color: var(--op-bg-active);
}

.op-search-input:focus[b-elp02dy6yz] {
    outline: none;
    background-color: var(--op-bg-surface);
    border-color: var(--op-primary);
    box-shadow: 0 0 0 3px var(--op-primary-light);
}

.op-search-input[b-elp02dy6yz]::placeholder {
    color: var(--op-text-tertiary);
}

.op-search-shortcut[b-elp02dy6yz] {
    position: absolute;
    right: var(--op-space-3);
    top: 50%;
    transform: translateY(-50%);
    padding: var(--op-space-1) var(--op-space-2);
    font-size: var(--op-text-xs);
    font-family: var(--op-font-family);
    color: var(--op-text-tertiary);
    background-color: var(--op-bg-surface);
    border: 1px solid var(--op-border);
    border-radius: var(--op-radius-sm);
    pointer-events: none;
}

/* Notification Button */
.op-notification-btn[b-elp02dy6yz] {
    position: relative;
}

.op-notification-badge[b-elp02dy6yz] {
    position: absolute;
    top: 4px;
    right: 4px;
    min-width: 16px;
    height: 16px;
    padding: 0 var(--op-space-1);
    font-size: 10px;
    font-weight: var(--op-font-semibold);
    color: white;
    background-color: var(--op-error);
    border-radius: var(--op-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Theme Toggle */
.op-theme-toggle svg[b-elp02dy6yz] {
    transition: transform var(--op-transition-fast);
}

.op-theme-toggle:hover svg[b-elp02dy6yz] {
    transform: rotate(15deg);
}

/* Top Bar User */
.op-topbar-user[b-elp02dy6yz] {
    margin-left: var(--op-space-2);
    cursor: pointer;
}

/* ============================================
   Page Content
   ============================================ */

.op-content[b-elp02dy6yz] {
    flex: 1;
    padding: var(--op-space-6);
    overflow-y: auto;
}

/* ============================================
   Mobile Overlay
   ============================================ */

.op-mobile-overlay[b-elp02dy6yz] {
    display: none;
    position: fixed;
    inset: 0;
    background-color: var(--op-overlay);
    z-index: calc(var(--op-z-fixed) - 1);
    opacity: 0;
    transition: opacity var(--op-transition-base);
}

/* ============================================
   Mobile Responsive Styles
   ============================================ */

@media (max-width: 1024px) {
    .op-sidebar[b-elp02dy6yz] {
        transform: translateX(-100%);
    }

    .op-main[b-elp02dy6yz] {
        margin-left: 0;
    }

    [b-elp02dy6yz] .sidebar-collapsed .op-main {
        margin-left: 0;
    }

    .op-mobile-menu-btn[b-elp02dy6yz] {
        display: flex;
    }

    /* Mobile Menu Open */
    [b-elp02dy6yz] .mobile-menu-open .op-sidebar {
        transform: translateX(0);
    }

    [b-elp02dy6yz] .mobile-menu-open .op-mobile-overlay {
        display: block;
        opacity: 1;
    }

    .op-search-shortcut[b-elp02dy6yz] {
        display: none;
    }
}

@media (max-width: 640px) {
    .op-topbar[b-elp02dy6yz] {
        padding: 0 var(--op-space-4);
    }

    .op-content[b-elp02dy6yz] {
        padding: var(--op-space-4);
    }

    .op-search-box[b-elp02dy6yz] {
        display: none;
    }
}

/* ============================================
   Blazor Error UI
   ============================================ */

#blazor-error-ui[b-elp02dy6yz] {
    color-scheme: light only;
    background: var(--op-warning);
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: var(--op-space-3) var(--op-space-5);
    position: fixed;
    width: 100%;
    z-index: var(--op-z-tooltip);
}

#blazor-error-ui .dismiss[b-elp02dy6yz] {
    cursor: pointer;
    position: absolute;
    right: var(--op-space-4);
    top: var(--op-space-2);
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
/* ============================================
   OnePlatform Navigation Menu Styles
   ============================================ */

/* Navigation Container */
.op-nav[b-2cjjqajihg] {
    flex: 1;
    padding: var(--op-space-4);
    overflow-y: auto;
    overflow-x: hidden;
}

/* Navigation Section */
.op-nav-section[b-2cjjqajihg] {
    margin-bottom: var(--op-space-6);
}

.op-nav-section:last-child[b-2cjjqajihg] {
    margin-bottom: 0;
}

.op-nav-section-title[b-2cjjqajihg] {
    display: block;
    padding: var(--op-space-2) var(--op-space-3);
    font-size: var(--op-text-xs);
    font-weight: var(--op-font-semibold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--op-text-tertiary);
    white-space: nowrap;
    overflow: hidden;
    transition: opacity var(--op-transition-fast);
}

/* Navigation Link */
.op-nav-link[b-2cjjqajihg] {
    display: flex;
    align-items: center;
    gap: var(--op-space-3);
    padding: var(--op-space-3);
    margin-bottom: var(--op-space-1);
    font-size: var(--op-text-sm);
    font-weight: var(--op-font-medium);
    color: var(--op-text-secondary);
    text-decoration: none;
    border-radius: var(--op-radius-lg);
    transition: all var(--op-transition-fast);
    position: relative;
    overflow: hidden;
}

.op-nav-link:hover[b-2cjjqajihg] {
    color: var(--op-text-primary);
    background-color: var(--op-bg-hover);
}

.op-nav-link:active[b-2cjjqajihg] {
    background-color: var(--op-bg-active);
}

/* Active Navigation Link */
.op-nav-link.active[b-2cjjqajihg] {
    color: var(--op-primary);
    background-color: var(--op-primary-light);
    font-weight: var(--op-font-semibold);
}

.op-nav-link.active[b-2cjjqajihg]::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 60%;
    background-color: var(--op-primary);
    border-radius: 0 var(--op-radius-sm) var(--op-radius-sm) 0;
}

.op-nav-link.active .op-nav-icon[b-2cjjqajihg] {
    color: var(--op-primary);
}

/* Navigation Icon */
.op-nav-icon[b-2cjjqajihg] {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--op-text-tertiary);
    transition: color var(--op-transition-fast);
}

.op-nav-link:hover .op-nav-icon[b-2cjjqajihg] {
    color: var(--op-text-primary);
}

.op-nav-icon svg[b-2cjjqajihg] {
    width: 20px;
    height: 20px;
}

/* Navigation Text */
.op-nav-text[b-2cjjqajihg] {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: opacity var(--op-transition-fast);
}

/* Navigation Badge */
.op-nav-badge[b-2cjjqajihg] {
    flex-shrink: 0;
    padding: var(--op-space-1) var(--op-space-2);
    font-size: 10px;
    font-weight: var(--op-font-semibold);
    color: var(--op-primary);
    background-color: var(--op-primary-light);
    border-radius: var(--op-radius-full);
    white-space: nowrap;
    transition: opacity var(--op-transition-fast);
}

.op-nav-badge-success[b-2cjjqajihg] {
    color: var(--op-success);
    background-color: var(--op-success-light);
}

.op-nav-badge-warning[b-2cjjqajihg] {
    color: var(--op-warning);
    background-color: var(--op-warning-light);
}

.op-nav-badge-error[b-2cjjqajihg] {
    color: var(--op-error);
    background-color: var(--op-error-light);
}

/* Collapsed Sidebar - Hide text elements */
[b-2cjjqajihg] .sidebar-collapsed .op-nav-section-title,
[b-2cjjqajihg] .sidebar-collapsed .op-nav-text,
[b-2cjjqajihg] .sidebar-collapsed .op-nav-badge {
    opacity: 0;
    visibility: hidden;
    width: 0;
    padding: 0;
}

[b-2cjjqajihg] .sidebar-collapsed .op-nav-link {
    justify-content: center;
    padding: var(--op-space-3);
}

[b-2cjjqajihg] .sidebar-collapsed .op-nav-link::before {
    display: none;
}

[b-2cjjqajihg] .sidebar-collapsed .op-nav {
    padding: var(--op-space-2);
}

[b-2cjjqajihg] .sidebar-collapsed .op-nav-section {
    margin-bottom: var(--op-space-2);
}

/* Tooltip for collapsed state */
[b-2cjjqajihg] .sidebar-collapsed .op-nav-link {
    position: relative;
}

[b-2cjjqajihg] .sidebar-collapsed .op-nav-link:hover::after {
    content: attr(title);
    position: absolute;
    left: calc(100% + 10px);
    top: 50%;
    transform: translateY(-50%);
    padding: var(--op-space-2) var(--op-space-3);
    font-size: var(--op-text-sm);
    font-weight: var(--op-font-medium);
    color: var(--op-text-inverse);
    background-color: var(--op-text-primary);
    border-radius: var(--op-radius-md);
    white-space: nowrap;
    z-index: var(--op-z-tooltip);
    box-shadow: var(--op-shadow-lg);
}

/* Scrollbar for navigation */
.op-nav[b-2cjjqajihg]::-webkit-scrollbar {
    width: 4px;
}

.op-nav[b-2cjjqajihg]::-webkit-scrollbar-track {
    background: transparent;
}

.op-nav[b-2cjjqajihg]::-webkit-scrollbar-thumb {
    background: var(--op-border);
    border-radius: var(--op-radius-full);
}

.op-nav[b-2cjjqajihg]::-webkit-scrollbar-thumb:hover {
    background: var(--op-text-tertiary);
}

/* Hover effect - subtle glow */
.op-nav-link[b-2cjjqajihg]::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, var(--op-primary-light), transparent);
    opacity: 0;
    transition: opacity var(--op-transition-fast);
}

.op-nav-link:hover[b-2cjjqajihg]::after {
    opacity: 0.3;
}

.op-nav-link.active[b-2cjjqajihg]::after {
    opacity: 0;
}
/* /Components/Layout/PublicLayout.razor.rz.scp.css */
/* Public Layout Styles */
.public-layout[b-17jd1k8ezg] {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.public-header[b-17jd1k8ezg] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid transparent;
    z-index: 1000;
    backdrop-filter: blur(12px);
    transition: all 0.3s;
}

.public-header.scrolled[b-17jd1k8ezg] {
    height: 72px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--op-border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.public-header .container[b-17jd1k8ezg] {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
}

.header-content[b-17jd1k8ezg] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.brand-link[b-17jd1k8ezg] {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--op-text);
}

.brand-logo-img[b-17jd1k8ezg] {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 10px;
}

.footer-logo-img[b-17jd1k8ezg] {
    width: 52px;
    height: 52px;
    object-fit: cover;
    border-radius: 10px;
}

.brand-name[b-17jd1k8ezg] {
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--op-text);
}

.header-nav[b-17jd1k8ezg] {
    display: flex;
    gap: 32px;
}

.nav-link[b-17jd1k8ezg] {
    color: var(--op-text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: color 0.2s;
}

.nav-link:hover[b-17jd1k8ezg] {
    color: var(--op-primary);
}

.header-actions[b-17jd1k8ezg] {
    display: flex;
    gap: 12px;
}

.mobile-menu-btn[b-17jd1k8ezg] {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--op-text);
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu-overlay[b-17jd1k8ezg] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
}


.mobile-menu[b-17jd1k8ezg] {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--op-surface);
    padding: 24px;
    z-index: 1002;
    border-bottom: 1px solid var(--op-border);
}

.mobile-nav-link[b-17jd1k8ezg] {
    display: block;
    padding: 12px 0;
    color: var(--op-text);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid var(--op-border);
}

/* Main Content */
.public-main[b-17jd1k8ezg] {
    flex: 1;
    margin-top: 72px;
}

/* Footer */
.public-footer[b-17jd1k8ezg] {
    background: var(--op-surface-secondary);
    border-top: 1px solid var(--op-border);
    padding: 64px 0 24px;
}

.public-footer .container[b-17jd1k8ezg] {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-content[b-17jd1k8ezg] {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 64px;
    margin-bottom: 48px;
}

.footer-brand .brand-logo svg[b-17jd1k8ezg] {
    width: 48px;
    height: 48px;
}

.footer-brand .brand-name[b-17jd1k8ezg] {
    font-size: 1.5rem;
    margin-top: 12px;
}

.footer-tagline[b-17jd1k8ezg] {
    color: var(--op-text-secondary);
    margin-top: 8px;
}

.footer-links[b-17jd1k8ezg] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.footer-column h4[b-17jd1k8ezg] {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--op-text-secondary);
    margin-bottom: 16px;
}

.footer-column a[b-17jd1k8ezg] {
    display: block;
    color: var(--op-text);
    text-decoration: none;
    padding: 6px 0;
    font-size: 0.9375rem;
}

.footer-column a:hover[b-17jd1k8ezg] {
    color: var(--op-primary);
}

.footer-bottom[b-17jd1k8ezg] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid var(--op-border);
    color: var(--op-text-secondary);
    font-size: 0.875rem;
}

.footer-legal[b-17jd1k8ezg] {
    display: flex;
    gap: 24px;
}

.footer-legal a[b-17jd1k8ezg] {
    color: var(--op-text-secondary);
    text-decoration: none;
}

.footer-legal a:hover[b-17jd1k8ezg] {
    color: var(--op-primary);
}

/* Buttons */
.btn[b-17jd1k8ezg] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-primary[b-17jd1k8ezg] {
    background: var(--op-primary);
    color: white;
}

.btn-primary:hover[b-17jd1k8ezg] {
    background: var(--op-primary-hover);
    transform: translateY(-1px);
}

.btn-outline[b-17jd1k8ezg] {
    background: transparent;
    border: 2px solid var(--op-border);
    color: var(--op-text);
}

.btn-outline:hover[b-17jd1k8ezg] {
    border-color: var(--op-primary);
    color: var(--op-primary);
}

.btn-lg[b-17jd1k8ezg] {
    padding: 16px 32px;
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .header-nav[b-17jd1k8ezg],
    .header-actions[b-17jd1k8ezg] {
        display: none;
    }

    .mobile-menu-btn[b-17jd1k8ezg] {
        display: block;
    }

    .footer-content[b-17jd1k8ezg] {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-links[b-17jd1k8ezg] {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom[b-17jd1k8ezg] {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-6u1j2z8821],
.components-reconnect-repeated-attempt-visible[b-6u1j2z8821],
.components-reconnect-failed-visible[b-6u1j2z8821],
.components-pause-visible[b-6u1j2z8821],
.components-resume-failed-visible[b-6u1j2z8821],
.components-rejoining-animation[b-6u1j2z8821] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-6u1j2z8821],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-6u1j2z8821],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-6u1j2z8821],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-6u1j2z8821],
#components-reconnect-modal.components-reconnect-retrying[b-6u1j2z8821],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-6u1j2z8821],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-6u1j2z8821],
#components-reconnect-modal.components-reconnect-failed[b-6u1j2z8821],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-6u1j2z8821] {
    display: block;
}


#components-reconnect-modal[b-6u1j2z8821] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-6u1j2z8821 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-6u1j2z8821 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-6u1j2z8821 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-6u1j2z8821]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-6u1j2z8821 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-6u1j2z8821 {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-6u1j2z8821 {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-6u1j2z8821 {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-6u1j2z8821] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-6u1j2z8821] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-6u1j2z8821] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-6u1j2z8821] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-6u1j2z8821] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-6u1j2z8821] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-6u1j2z8821] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-6u1j2z8821 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-6u1j2z8821] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-6u1j2z8821 {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Pages/GetStarted.razor.rz.scp.css */
/* Registration Wizard Styles */

.registration-page[b-ulkte25doc] {
    min-height: calc(100vh - 72px);
    padding: 48px 0;
    background: var(--op-surface-secondary);
}

.registration-page .container[b-ulkte25doc] {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Wizard Header */
.wizard-header[b-ulkte25doc] {
    text-align: center;
    margin-bottom: 48px;
}

.wizard-header h1[b-ulkte25doc] {
    font-size: 2rem;
    font-weight: 800;
    color: var(--op-text);
    margin-bottom: 12px;
}

.wizard-header p[b-ulkte25doc] {
    font-size: 1.125rem;
    color: var(--op-text-secondary);
}

/* Stepper */
.stepper[b-ulkte25doc] {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 48px;
}

.step[b-ulkte25doc] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.step-number[b-ulkte25doc] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    background: var(--op-surface);
    border: 2px solid var(--op-border);
    color: var(--op-text-secondary);
    transition: all 0.3s;
}

.step.active .step-number[b-ulkte25doc] {
    background: var(--op-primary);
    border-color: var(--op-primary);
    color: white;
}

.step.completed .step-number[b-ulkte25doc] {
    background: var(--op-success);
    border-color: var(--op-success);
    color: white;
}

.step-label[b-ulkte25doc] {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--op-text-secondary);
}

.step.active .step-label[b-ulkte25doc] {
    color: var(--op-primary);
    font-weight: 600;
}

.step.completed .step-label[b-ulkte25doc] {
    color: var(--op-success);
}

.step-connector[b-ulkte25doc] {
    width: 80px;
    height: 2px;
    background: var(--op-border);
    margin: 0 8px 24px;
    transition: background 0.3s;
}

.step-connector.completed[b-ulkte25doc] {
    background: var(--op-success);
}

/* Wizard Content */
.wizard-content[b-ulkte25doc] {
    background: var(--op-surface);
    border: 1px solid var(--op-border);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 24px;
    min-height: 400px;
}

/* Loading */
.loading-container[b-ulkte25doc] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    color: var(--op-text-secondary);
}

.spinner[b-ulkte25doc] {
    width: 40px;
    height: 40px;
    border: 3px solid var(--op-border);
    border-top-color: var(--op-primary);
    border-radius: 50%;
    animation: spin-b-ulkte25doc 1s linear infinite;
    margin-bottom: 16px;
}

.spinner-sm[b-ulkte25doc] {
    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-ulkte25doc 1s linear infinite;
}

@keyframes spin-b-ulkte25doc {
    to { transform: rotate(360deg); }
}

/* Error Alert */
.error-alert[b-ulkte25doc] {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #FEF2F2;
    border: 1px solid #FECACA;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 24px;
    color: #DC2626;
}

.error-alert i:first-child[b-ulkte25doc] {
    font-size: 1.25rem;
}

.error-alert span[b-ulkte25doc] {
    flex: 1;
}

.error-alert button[b-ulkte25doc] {
    background: none;
    border: none;
    color: #DC2626;
    cursor: pointer;
    padding: 4px;
}

/* Wizard Actions */
.wizard-actions[b-ulkte25doc] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Success Screen */
.success-screen[b-ulkte25doc] {
    text-align: center;
    padding: 64px;
    background: var(--op-surface);
    border-radius: 16px;
    border: 1px solid var(--op-border);
}

.success-icon[b-ulkte25doc] {
    width: 80px;
    height: 80px;
    background: #DCFCE7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.success-icon i[b-ulkte25doc] {
    font-size: 2.5rem;
    color: #16A34A;
}

.success-screen h1[b-ulkte25doc] {
    font-size: 2rem;
    font-weight: 800;
    color: var(--op-text);
    margin-bottom: 16px;
}

.success-message[b-ulkte25doc] {
    font-size: 1.125rem;
    color: var(--op-text-secondary);
    margin-bottom: 32px;
}

.request-info[b-ulkte25doc] {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 32px;
    padding: 24px;
    background: var(--op-surface-secondary);
    border-radius: 12px;
}

.info-item[b-ulkte25doc] {
    text-align: center;
}

.info-item .label[b-ulkte25doc] {
    display: block;
    font-size: 0.875rem;
    color: var(--op-text-secondary);
    margin-bottom: 4px;
}

.info-item .value[b-ulkte25doc] {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--op-text);
}

.status-badge[b-ulkte25doc] {
    display: inline-block;
    background: #FEF3C7;
    color: #B45309;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
}

.next-steps[b-ulkte25doc] {
    color: var(--op-text-secondary);
    margin-bottom: 32px;
    line-height: 1.6;
}

/* Buttons */
.btn[b-ulkte25doc] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.btn:disabled[b-ulkte25doc] {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-primary[b-ulkte25doc] {
    background: var(--op-primary);
    color: white;
}

.btn-primary:hover:not(:disabled)[b-ulkte25doc] {
    background: var(--op-primary-hover);
}

.btn-outline[b-ulkte25doc] {
    background: transparent;
    border: 2px solid var(--op-border);
    color: var(--op-text);
}

.btn-outline:hover:not(:disabled)[b-ulkte25doc] {
    border-color: var(--op-primary);
    color: var(--op-primary);
}

.btn-success[b-ulkte25doc] {
    background: #16A34A;
    color: white;
}

.btn-success:hover:not(:disabled)[b-ulkte25doc] {
    background: #15803D;
}

/* Utilities */
.me-2[b-ulkte25doc] { margin-right: 0.5rem; }
.ms-2[b-ulkte25doc] { margin-left: 0.5rem; }

/* Responsive */
@media (max-width: 768px) {
    .stepper[b-ulkte25doc] {
        overflow-x: auto;
        padding-bottom: 8px;
    }

    .step-connector[b-ulkte25doc] {
        width: 40px;
    }

    .wizard-content[b-ulkte25doc] {
        padding: 24px;
    }

    .wizard-header h1[b-ulkte25doc] {
        font-size: 1.5rem;
    }

    .request-info[b-ulkte25doc] {
        flex-direction: column;
        gap: 16px;
    }
}
/* /Components/Pages/Index.razor.rz.scp.css */
/* ==========================================
   OnePlateform Landing Page Styles
   ========================================== */

/* CSS Variables */
:root[b-8spxcqrrd1] {
    --op-primary: #6366F1;
    --op-primary-hover: #4F46E5;
    --op-primary-bg: rgba(99, 102, 241, 0.1);
    --op-success: #10B981;
    --op-warning: #F59E0B;
    --op-danger: #EF4444;
    --op-text: #1F2937;
    --op-text-secondary: #6B7280;
    --op-surface: #FFFFFF;
    --op-surface-secondary: #F9FAFB;
    --op-border: #E5E7EB;
}

/* Container */
.container[b-8spxcqrrd1] {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================
   Hero Section
   ========================================== */
.hero-section[b-8spxcqrrd1] {
    padding: 60px 0;
    background: linear-gradient(135deg, #F8FAFC 0%, #EEF2FF 50%, #F0F9FF 100%);
    position: relative;
    overflow: hidden;
}

.hero-content[b-8spxcqrrd1] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-badge[b-8spxcqrrd1] {
    display: inline-block;
    background: var(--op-primary-bg);
    color: var(--op-primary);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.hero-text h1[b-8spxcqrrd1] {
    font-size: 3.75rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--op-text);
}

.gradient-text[b-8spxcqrrd1] {
    background: linear-gradient(135deg, var(--op-primary) 0%, #8B5CF6 50%, #EC4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description[b-8spxcqrrd1] {
    font-size: 1.25rem;
    color: var(--op-text-secondary);
    line-height: 1.7;
    margin-bottom: 36px;
}

.hero-actions[b-8spxcqrrd1] {
    display: flex;
    gap: 16px;
    margin-bottom: 56px;
}

.hero-stats[b-8spxcqrrd1] {
    display: flex;
    gap: 48px;
}

.stat-item[b-8spxcqrrd1] {
    text-align: center;
}

.stat-value[b-8spxcqrrd1] {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--op-text);
    line-height: 1;
}

.stat-label[b-8spxcqrrd1] {
    color: var(--op-text-secondary);
    font-size: 0.875rem;
    margin-top: 4px;
}

/* Dashboard Preview */
.dashboard-preview[b-8spxcqrrd1] {
    background: var(--op-surface);
    border-radius: 20px;
    box-shadow: 0 25px 80px -12px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    border: 1px solid var(--op-border);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.5s;
}

.dashboard-preview:hover[b-8spxcqrrd1] {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.preview-header[b-8spxcqrrd1] {
    display: flex;
    gap: 8px;
    padding: 14px 18px;
    background: linear-gradient(90deg, #1F2937 0%, #374151 100%);
}

.dot[b-8spxcqrrd1] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red[b-8spxcqrrd1] { background: #EF4444; }
.dot.yellow[b-8spxcqrrd1] { background: #F59E0B; }
.dot.green[b-8spxcqrrd1] { background: #10B981; }

.preview-content[b-8spxcqrrd1] {
    display: flex;
    padding: 20px;
    gap: 16px;
    min-height: 350px;
    background: var(--op-surface-secondary);
}

.preview-sidebar[b-8spxcqrrd1] {
    width: 70px;
    background: var(--op-surface);
    border-radius: 12px;
}

.preview-main[b-8spxcqrrd1] {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.preview-card[b-8spxcqrrd1] {
    background: var(--op-surface);
    border-radius: 12px;
    min-height: 70px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.preview-card.large[b-8spxcqrrd1] {
    grid-column: span 3;
    min-height: 150px;
}

.hero-wave[b-8spxcqrrd1] {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

/* ==========================================
   Section Styles
   ========================================== */
.section-header[b-8spxcqrrd1] {
    text-align: center;
    margin-bottom: 64px;
}

.section-badge[b-8spxcqrrd1] {
    display: inline-block;
    background: var(--op-primary-bg);
    color: var(--op-primary);
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.section-header h2[b-8spxcqrrd1] {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--op-text);
    margin-bottom: 16px;
}

.section-header p[b-8spxcqrrd1] {
    font-size: 1.125rem;
    color: var(--op-text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================
   About Section
   ========================================== */
.about-section[b-8spxcqrrd1] {
    padding: 100px 0;
    background: var(--op-surface-secondary);
}

.about-content[b-8spxcqrrd1] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.about-text h2[b-8spxcqrrd1] {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--op-text);
    margin-bottom: 24px;
}

.about-text p[b-8spxcqrrd1] {
    font-size: 1.0625rem;
    color: var(--op-text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-text p strong[b-8spxcqrrd1] {
    color: var(--op-text);
}

.about-highlights[b-8spxcqrrd1] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.highlight-item[b-8spxcqrrd1] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px;
    background: var(--op-surface);
    border-radius: 12px;
    border: 1px solid var(--op-border);
}

.highlight-item i[b-8spxcqrrd1] {
    font-size: 1.5rem;
    color: var(--op-primary);
}

.highlight-item span[b-8spxcqrrd1] {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--op-text);
}

.about-visual[b-8spxcqrrd1] {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.vision-card[b-8spxcqrrd1],
.mission-card[b-8spxcqrrd1] {
    background: var(--op-surface);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid var(--op-border);
}

.card-icon[b-8spxcqrrd1] {
    width: 56px;
    height: 56px;
    background: var(--op-primary-bg);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.card-icon i[b-8spxcqrrd1] {
    font-size: 1.5rem;
    color: var(--op-primary);
}

.vision-card h3[b-8spxcqrrd1],
.mission-card h3[b-8spxcqrrd1] {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--op-text);
    margin-bottom: 12px;
}

.vision-card p[b-8spxcqrrd1],
.mission-card p[b-8spxcqrrd1] {
    color: var(--op-text-secondary);
    line-height: 1.7;
    font-style: italic;
}

.mission-card ul[b-8spxcqrrd1] {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mission-card li[b-8spxcqrrd1] {
    padding: 8px 0;
    color: var(--op-text-secondary);
    padding-left: 24px;
    position: relative;
}

.mission-card li[b-8spxcqrrd1]::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--op-success);
    font-weight: bold;
}

/* ==========================================
   Problem Section
   ========================================== */
.problem-section[b-8spxcqrrd1] {
    padding: 100px 0;
}

.problem-solution-grid[b-8spxcqrrd1] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.problem-card[b-8spxcqrrd1],
.solution-card[b-8spxcqrrd1] {
    background: var(--op-surface);
    border-radius: 20px;
    padding: 40px;
    border: 2px solid var(--op-border);
}

.card-header[b-8spxcqrrd1] {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--op-border);
}

.card-header i[b-8spxcqrrd1] {
    font-size: 2rem;
}

.card-header.problem i[b-8spxcqrrd1] {
    color: var(--op-danger);
}

.card-header.solution i[b-8spxcqrrd1] {
    color: var(--op-success);
}

.card-header h3[b-8spxcqrrd1] {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--op-text);
}

.problem-list[b-8spxcqrrd1],
.solution-list[b-8spxcqrrd1] {
    list-style: none;
    padding: 0;
    margin: 0;
}

.problem-list li[b-8spxcqrrd1],
.solution-list li[b-8spxcqrrd1] {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 0;
    color: var(--op-text);
    font-size: 1.0625rem;
}

.problem-list li i[b-8spxcqrrd1] {
    color: var(--op-danger);
    font-size: 1.125rem;
    margin-top: 2px;
}

.solution-list li i[b-8spxcqrrd1] {
    color: var(--op-success);
    font-size: 1.125rem;
    margin-top: 2px;
}

/* ==========================================
   Modules Section
   ========================================== */
.modules-section[b-8spxcqrrd1] {
    padding: 100px 0;
    background: var(--op-surface-secondary);
}

.modules-grid[b-8spxcqrrd1] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.module-card[b-8spxcqrrd1] {
    background: var(--op-surface);
    border: 1px solid var(--op-border);
    border-radius: 16px;
    padding: 28px;
    text-align: center;
    transition: all 0.3s;
}

.module-card:hover[b-8spxcqrrd1] {
    transform: translateY(-4px);
    border-color: var(--op-primary);
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.15);
}

.module-icon[b-8spxcqrrd1] {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--op-primary-bg) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.module-icon i[b-8spxcqrrd1] {
    font-size: 1.75rem;
    color: var(--op-primary);
}

.module-card h4[b-8spxcqrrd1] {
    font-size: 1.0625rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--op-text);
}

.module-card p[b-8spxcqrrd1] {
    font-size: 0.875rem;
    color: var(--op-text-secondary);
    line-height: 1.6;
}

.modules-cta[b-8spxcqrrd1] {
    text-align: center;
    margin-top: 48px;
}

/* ==========================================
   Features Section
   ========================================== */
.features-section[b-8spxcqrrd1] {
    padding: 100px 0;
}

.features-grid[b-8spxcqrrd1] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card[b-8spxcqrrd1] {
    background: var(--op-surface);
    border: 1px solid var(--op-border);
    border-radius: 20px;
    padding: 36px;
    transition: all 0.3s;
}

.feature-card:hover[b-8spxcqrrd1] {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.feature-card.featured[b-8spxcqrrd1] {
    border-color: var(--op-primary);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
}

.feature-icon[b-8spxcqrrd1] {
    width: 64px;
    height: 64px;
    background: var(--op-primary-bg);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-icon i[b-8spxcqrrd1] {
    font-size: 1.75rem;
    color: var(--op-primary);
}

.feature-card h3[b-8spxcqrrd1] {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--op-text);
}

.feature-card p[b-8spxcqrrd1] {
    color: var(--op-text-secondary);
    line-height: 1.7;
}

/* ==========================================
   Intelligence Section
   ========================================== */
.intelligence-section[b-8spxcqrrd1] {
    padding: 100px 0;
    background: linear-gradient(135deg, #1F2937 0%, #374151 100%);
}

.intelligence-section .section-badge[b-8spxcqrrd1] {
    background: rgba(255, 255, 255, 0.1);
    color: #A5B4FC;
}

.intelligence-section .section-header h2[b-8spxcqrrd1] {
    color: white;
}

.intelligence-section .section-header p[b-8spxcqrrd1] {
    color: rgba(255, 255, 255, 0.7);
}

.intelligence-grid[b-8spxcqrrd1] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.intelligence-card[b-8spxcqrrd1] {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.intelligence-card:hover[b-8spxcqrrd1] {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
}

.card-number[b-8spxcqrrd1] {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(99, 102, 241, 0.4);
    margin-bottom: 20px;
}

.intelligence-card h3[b-8spxcqrrd1] {
    font-size: 1.375rem;
    font-weight: 700;
    color: white;
    margin-bottom: 14px;
}

.intelligence-card p[b-8spxcqrrd1] {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

/* ==========================================
   Pricing Section
   ========================================== */
.pricing-section[b-8spxcqrrd1] {
    padding: 100px 0;
    background: var(--op-surface-secondary);
}

.pricing-grid[b-8spxcqrrd1] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.pricing-card[b-8spxcqrrd1] {
    background: var(--op-surface);
    border: 2px solid var(--op-border);
    border-radius: 24px;
    padding: 36px;
    position: relative;
    transition: all 0.3s;
}

.pricing-card:hover[b-8spxcqrrd1] {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured[b-8spxcqrrd1] {
    border-color: var(--op-primary);
    box-shadow: 0 0 0 1px var(--op-primary);
}

.popular-badge[b-8spxcqrrd1] {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--op-primary) 0%, #8B5CF6 100%);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
}

.pricing-card h3[b-8spxcqrrd1] {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--op-text);
    margin-bottom: 16px;
}

.price[b-8spxcqrrd1] {
    margin-bottom: 16px;
}

.price .currency[b-8spxcqrrd1] {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--op-text);
    vertical-align: top;
}

.price .amount[b-8spxcqrrd1] {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--op-text);
}

.price .period[b-8spxcqrrd1] {
    font-size: 1rem;
    color: var(--op-text-secondary);
}

.plan-description[b-8spxcqrrd1] {
    font-size: 0.875rem;
    color: var(--op-text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.plan-details[b-8spxcqrrd1] {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--op-border);
}

.detail-item[b-8spxcqrrd1] {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--op-text);
}

.detail-item i[b-8spxcqrrd1] {
    color: var(--op-primary);
}

.plan-features[b-8spxcqrrd1] {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.plan-features li[b-8spxcqrrd1] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--op-text);
}

.plan-features li i[b-8spxcqrrd1] {
    color: var(--op-success);
    font-size: 1rem;
}

.plan-features li.more[b-8spxcqrrd1] {
    color: var(--op-text-secondary);
}

.plan-features li.more i[b-8spxcqrrd1] {
    color: var(--op-text-secondary);
}

.addons-info[b-8spxcqrrd1] {
    padding: 12px;
    background: var(--op-surface-secondary);
    border-radius: 8px;
    text-align: center;
    margin-bottom: 20px;
    font-size: 0.8125rem;
    color: var(--op-text-secondary);
}

.pricing-note[b-8spxcqrrd1] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 48px;
    padding: 20px;
    background: var(--op-surface);
    border-radius: 12px;
    border: 1px solid var(--op-border);
}

.pricing-note i[b-8spxcqrrd1] {
    color: var(--op-primary);
    font-size: 1.25rem;
}

.pricing-note p[b-8spxcqrrd1] {
    color: var(--op-text-secondary);
    margin: 0;
}

/* ==========================================
   Outcomes Section
   ========================================== */
.outcomes-section[b-8spxcqrrd1] {
    padding: 100px 0;
}

.outcomes-grid[b-8spxcqrrd1] {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
}

.outcome-card[b-8spxcqrrd1] {
    background: var(--op-surface);
    border: 1px solid var(--op-border);
    border-radius: 16px;
    padding: 28px;
    text-align: center;
    transition: all 0.3s;
}

.outcome-card:hover[b-8spxcqrrd1] {
    transform: translateY(-4px);
    border-color: var(--op-primary);
}

.outcome-icon[b-8spxcqrrd1] {
    width: 56px;
    height: 56px;
    background: var(--op-primary-bg);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.outcome-icon i[b-8spxcqrrd1] {
    font-size: 1.5rem;
    color: var(--op-primary);
}

.outcome-card h4[b-8spxcqrrd1] {
    font-size: 1rem;
    font-weight: 700;
    color: var(--op-text);
    margin-bottom: 8px;
}

.outcome-card p[b-8spxcqrrd1] {
    font-size: 0.8125rem;
    color: var(--op-text-secondary);
    line-height: 1.5;
}

/* ==========================================
   FAQ Section
   ========================================== */
.faq-section[b-8spxcqrrd1] {
    padding: 100px 0;
    background: var(--op-surface-secondary);
}

.faq-grid[b-8spxcqrrd1] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item[b-8spxcqrrd1] {
    background: var(--op-surface);
    border: 1px solid var(--op-border);
    border-radius: 16px;
    padding: 28px;
}

.faq-item h4[b-8spxcqrrd1] {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--op-text);
    margin-bottom: 14px;
}

.faq-item h4 i[b-8spxcqrrd1] {
    color: var(--op-primary);
    margin-top: 2px;
}

.faq-item p[b-8spxcqrrd1] {
    color: var(--op-text-secondary);
    line-height: 1.7;
    padding-left: 32px;
}

/* ==========================================
   CTA Section
   ========================================== */
.cta-section[b-8spxcqrrd1] {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--op-primary) 0%, #8B5CF6 50%, #EC4899 100%);
}

.cta-content[b-8spxcqrrd1] {
    text-align: center;
}

.cta-content h2[b-8spxcqrrd1] {
    font-size: 2.75rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
}

.cta-content p[b-8spxcqrrd1] {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions[b-8spxcqrrd1] {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.btn-white[b-8spxcqrrd1] {
    background: white;
    color: var(--op-primary);
}

.btn-white:hover[b-8spxcqrrd1] {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.btn-outline-white[b-8spxcqrrd1] {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
}

.btn-outline-white:hover[b-8spxcqrrd1] {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* ==========================================
   Contact Section
   ========================================== */
.contact-section[b-8spxcqrrd1] {
    padding: 100px 0;
}

.contact-grid[b-8spxcqrrd1] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info h2[b-8spxcqrrd1] {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--op-text);
    margin-bottom: 16px;
}

.contact-info > p[b-8spxcqrrd1] {
    color: var(--op-text-secondary);
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact-details[b-8spxcqrrd1] {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.contact-item[b-8spxcqrrd1] {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon[b-8spxcqrrd1] {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--op-primary-bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--op-primary);
}

.contact-text[b-8spxcqrrd1] {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-text .label[b-8spxcqrrd1] {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--op-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-text .value[b-8spxcqrrd1] {
    font-size: 1rem;
    color: var(--op-text);
    font-weight: 500;
    line-height: 1.5;
}

.social-links[b-8spxcqrrd1] {
    display: flex;
    gap: 12px;
}

.social-link[b-8spxcqrrd1] {
    width: 44px;
    height: 44px;
    background: var(--op-surface-secondary);
    border: 1px solid var(--op-border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--op-text-secondary);
    text-decoration: none;
    transition: all 0.2s;
}

.social-link:hover[b-8spxcqrrd1] {
    background: var(--op-primary);
    border-color: var(--op-primary);
    color: white;
}

.contact-form-wrapper[b-8spxcqrrd1] {
    background: var(--op-surface-secondary);
    border-radius: 24px;
    padding: 8px;
}

.contact-form[b-8spxcqrrd1] {
    background: var(--op-surface);
    border-radius: 20px;
    padding: 40px;
}

.contact-form h3[b-8spxcqrrd1] {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--op-text);
    margin-bottom: 28px;
}

.contact-form .form-group[b-8spxcqrrd1] {
    margin-bottom: 20px;
}

.contact-form .form-group label[b-8spxcqrrd1] {
    display: block;
    font-weight: 500;
    color: var(--op-text);
    margin-bottom: 8px;
}

.contact-form[b-8spxcqrrd1]  input.form-control,
.contact-form[b-8spxcqrrd1]  textarea.form-control,
.contact-form input.form-control[b-8spxcqrrd1],
.contact-form textarea.form-control[b-8spxcqrrd1] {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--op-border);
    border-radius: 10px;
    font-size: 1rem;
    background: var(--op-surface);
    color: var(--op-text);
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.contact-form[b-8spxcqrrd1]  input.form-control:focus,
.contact-form[b-8spxcqrrd1]  textarea.form-control:focus,
.contact-form input.form-control:focus[b-8spxcqrrd1],
.contact-form textarea.form-control:focus[b-8spxcqrrd1] {
    outline: none;
    border-color: var(--op-primary);
    box-shadow: 0 0 0 3px var(--op-primary-bg);
}

.contact-form[b-8spxcqrrd1]  input.form-control::placeholder,
.contact-form[b-8spxcqrrd1]  textarea.form-control::placeholder,
.contact-form input.form-control[b-8spxcqrrd1]::placeholder,
.contact-form textarea.form-control[b-8spxcqrrd1]::placeholder {
    color: var(--op-text-secondary);
}

.contact-form[b-8spxcqrrd1]  textarea.form-control,
.contact-form textarea.form-control[b-8spxcqrrd1] {
    resize: vertical;
    min-height: 120px;
}

/* Contact Form States */
.contact-success[b-8spxcqrrd1] {
    text-align: center;
    padding: 40px 20px;
}

.contact-success i[b-8spxcqrrd1] {
    font-size: 4rem;
    color: var(--op-success);
    margin-bottom: 20px;
    display: block;
}

.contact-success h4[b-8spxcqrrd1] {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--op-text);
    margin-bottom: 12px;
}

.contact-success p[b-8spxcqrrd1] {
    color: var(--op-text-secondary);
    margin-bottom: 24px;
}

.contact-error[b-8spxcqrrd1] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 8px;
    color: var(--op-danger);
    margin-bottom: 16px;
    font-size: 0.875rem;
}

.contact-error i[b-8spxcqrrd1] {
    font-size: 1.125rem;
}

.contact-form[b-8spxcqrrd1]  .validation-error,
.validation-error[b-8spxcqrrd1] {
    color: var(--op-danger);
    font-size: 0.8125rem;
    margin-top: 4px;
    display: block;
}

.required[b-8spxcqrrd1] {
    color: var(--op-danger);
}

.spinner-sm[b-8spxcqrrd1] {
    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-8spxcqrrd1 0.8s linear infinite;
}

/* ==========================================
   Buttons
   ========================================== */
.btn[b-8spxcqrrd1] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-primary[b-8spxcqrrd1] {
    background: linear-gradient(135deg, var(--op-primary) 0%, #8B5CF6 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover[b-8spxcqrrd1] {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(99, 102, 241, 0.4);
}

.btn-outline[b-8spxcqrrd1] {
    background: transparent;
    border: 2px solid var(--op-border);
    color: var(--op-text);
}

.btn-outline:hover[b-8spxcqrrd1] {
    border-color: var(--op-primary);
    color: var(--op-primary);
}

.btn-lg[b-8spxcqrrd1] {
    padding: 18px 36px;
    font-size: 1.0625rem;
}

.w-100[b-8spxcqrrd1] {
    width: 100%;
}

/* ==========================================
   Loading
   ========================================== */
.loading-container[b-8spxcqrrd1] {
    text-align: center;
    padding: 80px;
    color: var(--op-text-secondary);
}

.spinner[b-8spxcqrrd1] {
    width: 48px;
    height: 48px;
    border: 3px solid var(--op-border);
    border-top-color: var(--op-primary);
    border-radius: 50%;
    animation: spin-b-8spxcqrrd1 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin-b-8spxcqrrd1 {
    to { transform: rotate(360deg); }
}

/* ==========================================
   Utilities
   ========================================== */
.me-2[b-8spxcqrrd1] { margin-right: 0.5rem; }

/* ==========================================
   Responsive
   ========================================== */
@media (max-width: 1200px) {
    .pricing-grid[b-8spxcqrrd1] {
        grid-template-columns: repeat(2, 1fr);
    }

    .outcomes-grid[b-8spxcqrrd1] {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .hero-content[b-8spxcqrrd1] {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1[b-8spxcqrrd1] {
        font-size: 2.75rem;
    }

    .hero-actions[b-8spxcqrrd1] {
        justify-content: center;
    }

    .hero-stats[b-8spxcqrrd1] {
        justify-content: center;
    }

    .hero-visual[b-8spxcqrrd1] {
        display: none;
    }

    .about-content[b-8spxcqrrd1] {
        grid-template-columns: 1fr;
    }

    .about-highlights[b-8spxcqrrd1] {
        grid-template-columns: repeat(2, 1fr);
    }

    .problem-solution-grid[b-8spxcqrrd1] {
        grid-template-columns: 1fr;
    }

    .modules-grid[b-8spxcqrrd1] {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid[b-8spxcqrrd1] {
        grid-template-columns: repeat(2, 1fr);
    }

    .intelligence-grid[b-8spxcqrrd1] {
        grid-template-columns: 1fr;
    }

    .contact-grid[b-8spxcqrrd1] {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .hero-text h1[b-8spxcqrrd1] {
        font-size: 2rem;
    }

    .section-header h2[b-8spxcqrrd1] {
        font-size: 2rem;
    }

    .hero-actions[b-8spxcqrrd1] {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats[b-8spxcqrrd1] {
        flex-wrap: wrap;
        gap: 24px;
    }

    .about-highlights[b-8spxcqrrd1] {
        grid-template-columns: repeat(2, 1fr);
    }

    .modules-grid[b-8spxcqrrd1],
    .features-grid[b-8spxcqrrd1],
    .pricing-grid[b-8spxcqrrd1],
    .faq-grid[b-8spxcqrrd1] {
        grid-template-columns: 1fr;
    }

    .outcomes-grid[b-8spxcqrrd1] {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-actions[b-8spxcqrrd1] {
        flex-direction: column;
        align-items: center;
    }

    .cta-content h2[b-8spxcqrrd1] {
        font-size: 2rem;
    }
}
/* /Components/Pages/Setup/SetupWizard.razor.rz.scp.css */
.setup-start-page[b-jpwpq3m2lr],
.setup-wizard-page[b-jpwpq3m2lr] {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.loading-container[b-jpwpq3m2lr],
.error-container[b-jpwpq3m2lr],
.success-container[b-jpwpq3m2lr],
.welcome-container[b-jpwpq3m2lr] {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    margin-top: 5vh;
}

.loading-container .spinner[b-jpwpq3m2lr],
.spinner-sm[b-jpwpq3m2lr] {
    width: 48px;
    height: 48px;
    border: 4px solid #e9ecef;
    border-top-color: #667eea;
    border-radius: 50%;
    animation: spin-b-jpwpq3m2lr 1s linear infinite;
    margin: 0 auto 1.5rem;
}

.spinner-sm[b-jpwpq3m2lr] {
    width: 20px;
    height: 20px;
    border-width: 2px;
    display: inline-block;
    margin: 0;
}

@keyframes spin-b-jpwpq3m2lr {
    to { transform: rotate(360deg); }
}

.error-icon[b-jpwpq3m2lr],
.success-icon[b-jpwpq3m2lr],
.welcome-icon[b-jpwpq3m2lr] {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
}

.error-icon[b-jpwpq3m2lr] {
    background: #fee2e2;
    color: #dc2626;
}

.success-icon[b-jpwpq3m2lr],
.welcome-icon[b-jpwpq3m2lr] {
    background: #dcfce7;
    color: #16a34a;
}

.wizard-container[b-jpwpq3m2lr] {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    max-width: 900px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.wizard-header[b-jpwpq3m2lr] {
    text-align: center;
    margin-bottom: 2rem;
}

.wizard-header h1[b-jpwpq3m2lr] {
    font-size: 1.5rem;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.wizard-header p[b-jpwpq3m2lr] {
    color: #6b7280;
}

.progress-bar-container[b-jpwpq3m2lr] {
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    margin-bottom: 2rem;
    overflow: hidden;
}

.progress-bar[b-jpwpq3m2lr] {
    height: 100%;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.step-navigation[b-jpwpq3m2lr] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 12px;
}

.step-item[b-jpwpq3m2lr] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.step-item:hover[b-jpwpq3m2lr] {
    border-color: #667eea;
}

.step-item.active[b-jpwpq3m2lr] {
    border-color: #667eea;
    background: #f0f2ff;
}

.step-item.completed[b-jpwpq3m2lr] {
    border-color: #16a34a;
    background: #f0fdf4;
}

.step-item.skipped[b-jpwpq3m2lr] {
    border-color: #9ca3af;
    background: #f3f4f6;
    opacity: 0.7;
}

.step-number[b-jpwpq3m2lr] {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #667eea;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
}

.step-item.completed .step-number[b-jpwpq3m2lr] {
    background: #16a34a;
}

.step-item.skipped .step-number[b-jpwpq3m2lr] {
    background: #9ca3af;
}

.step-info[b-jpwpq3m2lr] {
    display: flex;
    flex-direction: column;
}

.step-name[b-jpwpq3m2lr] {
    font-weight: 500;
    color: #1f2937;
    font-size: 0.875rem;
}

.optional-badge[b-jpwpq3m2lr] {
    font-size: 0.75rem;
    color: #6b7280;
}

.step-content[b-jpwpq3m2lr] {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
}

.step-header[b-jpwpq3m2lr] {
    margin-bottom: 1.5rem;
}

.step-header h2[b-jpwpq3m2lr] {
    font-size: 1.25rem;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.step-header p[b-jpwpq3m2lr] {
    color: #6b7280;
}

.step-body[b-jpwpq3m2lr] {
    margin-bottom: 2rem;
    min-height: 150px;
}

.step-actions[b-jpwpq3m2lr] {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.btn[b-jpwpq3m2lr] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.btn-primary[b-jpwpq3m2lr] {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.btn-primary:hover[b-jpwpq3m2lr] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.btn-success[b-jpwpq3m2lr] {
    background: #16a34a;
    color: white;
}

.btn-outline[b-jpwpq3m2lr] {
    background: white;
    border: 2px solid #e5e7eb;
    color: #374151;
}

.btn-outline:hover[b-jpwpq3m2lr] {
    border-color: #667eea;
    color: #667eea;
}

.btn-outline-primary[b-jpwpq3m2lr] {
    background: white;
    border: 2px solid #667eea;
    color: #667eea;
}

.btn-outline-secondary[b-jpwpq3m2lr] {
    background: white;
    border: 2px solid #9ca3af;
    color: #6b7280;
}

.btn-lg[b-jpwpq3m2lr] {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn:disabled[b-jpwpq3m2lr] {
    opacity: 0.6;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .step-navigation[b-jpwpq3m2lr] {
        flex-direction: column;
    }
    
    .step-actions[b-jpwpq3m2lr] {
        flex-direction: column;
    }
    
    .wizard-container[b-jpwpq3m2lr] {
        padding: 1rem;
    }
}
