/* /Components/Controls/GenericDialog.razor.rz.scp.css */
/* Generic Dialog Styles */
.generic-dialog .e-dialog[b-xj42ji6cff] {
    border-radius: 12px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.generic-dialog .e-dlg-overlay[b-xj42ji6cff] {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

/* Header Styles */
.generic-dialog .e-dlg-header[b-xj42ji6cff] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 0;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.generic-dialog .dialog-header[b-xj42ji6cff] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    font-weight: 600;
}

.generic-dialog .title-icon[b-xj42ji6cff] {
    font-size: 1.25rem;
    opacity: 0.9;
}

.generic-dialog .title-text[b-xj42ji6cff] {
    font-size: 1.125rem;
    font-weight: 600;
    flex-grow: 1;
}

.generic-dialog .e-dlg-header .e-dlg-closeicon-btn[b-xj42ji6cff] {
    color: white;
    background: transparent;
    border: none;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.generic-dialog .e-dlg-header .e-dlg-closeicon-btn:hover[b-xj42ji6cff] {
    opacity: 1;
    background: rgba(255, 255, 255, 0.1);
}

/* Content Styles */
.generic-dialog .e-dlg-content[b-xj42ji6cff] {
    padding: 0;
    background: #ffffff;
}

.generic-dialog .dialog-content[b-xj42ji6cff] {
    padding: 1.5rem;
    min-height: 100px;
    max-height: calc(80vh - 120px);
    overflow-y: auto;
}

/* Custom scrollbar for content area */
.generic-dialog .dialog-content[b-xj42ji6cff]::-webkit-scrollbar {
    width: 6px;
}

.generic-dialog .dialog-content[b-xj42ji6cff]::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.generic-dialog .dialog-content[b-xj42ji6cff]::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.generic-dialog .dialog-content[b-xj42ji6cff]::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* Footer Styles */
.generic-dialog .e-dlg-footer[b-xj42ji6cff] {
    background: #fafafa;
    border-top: 1px solid #e9ecef;
    padding: 0;
}

.generic-dialog .dialog-footer[b-xj42ji6cff] {
    padding: 1rem 1.5rem;
}

.generic-dialog .default-footer[b-xj42ji6cff] {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
}

/* Button Styles */
.generic-dialog .e-btn[b-xj42ji6cff] {
    border-radius: 6px;
    padding: 0.5rem 1.25rem;
    font-weight: 500;
    transition: all 0.2s ease;
    min-width: 80px;
}

.generic-dialog .e-btn.e-primary[b-xj42ji6cff] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.generic-dialog .e-btn.e-primary:hover[b-xj42ji6cff] {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.generic-dialog .e-btn.e-outline[b-xj42ji6cff] {
    border: 2px solid #dee2e6;
    background: white;
    color: #495057;
}

.generic-dialog .e-btn.e-outline:hover[b-xj42ji6cff] {
    border-color: #adb5bd;
    background: #f8f9fa;
    transform: translateY(-1px);
}

/* Size Variants */
.generic-dialog.small .e-dialog[b-xj42ji6cff] {
    max-width: 400px;
}

.generic-dialog.medium .e-dialog[b-xj42ji6cff] {
    max-width: 600px;
}

.generic-dialog.large .e-dialog[b-xj42ji6cff] {
    max-width: 800px;
}

.generic-dialog.extra-large .e-dialog[b-xj42ji6cff] {
    max-width: 1200px;
}

/* Theme Variants */
.generic-dialog.success .e-dlg-header[b-xj42ji6cff] {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.generic-dialog.success .e-btn.e-primary[b-xj42ji6cff] {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
}

.generic-dialog.warning .e-dlg-header[b-xj42ji6cff] {
    background: linear-gradient(135deg, #ffc107 0%, #fd7e14 100%);
}

.generic-dialog.warning .e-btn.e-primary[b-xj42ji6cff] {
    background: linear-gradient(135deg, #ffc107 0%, #fd7e14 100%);
    box-shadow: 0 2px 8px rgba(255, 193, 7, 0.3);
}

.generic-dialog.danger .e-dlg-header[b-xj42ji6cff] {
    background: linear-gradient(135deg, #dc3545 0%, #e83e8c 100%);
}

.generic-dialog.danger .e-btn.e-primary[b-xj42ji6cff] {
    background: linear-gradient(135deg, #dc3545 0%, #e83e8c 100%);
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.3);
}

/* Animation Enhancements */
.generic-dialog .e-dialog[b-xj42ji6cff] {
    animation-duration: 0.3s;
    animation-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .generic-dialog .e-dialog[b-xj42ji6cff] {
        width: 95vw !important;
        height: auto !important;
        margin: 0.5rem;
    }
    
    .generic-dialog .dialog-header[b-xj42ji6cff] {
        padding: 0.75rem 1rem;
    }
    
    .generic-dialog .dialog-content[b-xj42ji6cff] {
        padding: 1rem;
        max-height: calc(90vh - 120px);
    }
    
    .generic-dialog .dialog-footer[b-xj42ji6cff] {
        padding: 0.75rem 1rem;
    }
    
    .generic-dialog .default-footer[b-xj42ji6cff] {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .generic-dialog .e-btn[b-xj42ji6cff] {
        width: 100%;
        justify-content: center;
    }
}

/* Focus and Accessibility */
.generic-dialog .e-btn:focus[b-xj42ji6cff] {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

.generic-dialog .e-btn.e-outline:focus[b-xj42ji6cff] {
    outline: 2px solid #6c757d;
    outline-offset: 2px;
}

/* Loading State */
.generic-dialog.loading .dialog-content[b-xj42ji6cff] {
    position: relative;
    min-height: 200px;
}

.generic-dialog.loading .dialog-content[b-xj42ji6cff]::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 32px;
    height: 32px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #667eea;
    border-radius: 50%;
    animation: spin-b-xj42ji6cff 1s linear infinite;
}

@keyframes spin-b-xj42ji6cff {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}
/* /Components/Controls/MainHeader.razor.rz.scp.css */
[b-40su3b77mq] #breadcrumb .e-breadcrumb .e-breadcrumb-item:first-child .e-breadcrumb-text {
    padding-left: 0 !important;
}
/* /Components/Dialogs/SignupDialog.razor.rz.scp.css */
/* Signup Dialog Styles */
.signup-dialog[b-spumg8oibl] {
    --primary-color: #1976d2;
    --secondary-color: #6c757d;
    --success-color: #198754;
    --border-color: #dee2e6;
    --light-bg: #f8f9fa;
}

/* Force proper dialog height */
.signup-dialog[b-spumg8oibl]  .e-dialog {
    height: 90vh !important;
    max-height: 90vh !important;
}

/* Ensure dialog content area has proper height and scrolling */
.signup-dialog[b-spumg8oibl]  .e-dlg-content {
    overflow-y: auto;
    max-height: calc(90vh - 120px) !important;
    height: calc(90vh - 120px) !important;
}

.signup-wizard[b-spumg8oibl] {
    padding: 0;
    min-height: 600px;
}

/* Progress Steps - Updated for Syncfusion Stepper */
.wizard-progress[b-spumg8oibl] {
    margin-bottom: 2rem;
}

.signup-stepper[b-spumg8oibl] {
    max-width: 900px;
    margin: 0 auto;
}

.signup-stepper .e-stepper[b-spumg8oibl] {
    background: transparent;
    padding: 0;
}

.signup-stepper .e-stepper .e-step[b-spumg8oibl] {
    margin: 0 10px;
}

.signup-stepper .e-stepper .e-step .e-step-label-container[b-spumg8oibl] {
    margin-top: 10px;
    text-align: center;
}

.signup-stepper .e-stepper .e-step .e-step-label[b-spumg8oibl] {
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 0.875rem;
}

.signup-stepper .e-stepper .e-step .e-step-text[b-spumg8oibl] {
    color: var(--secondary-color);
    font-size: 0.75rem;
    margin-top: 4px;
}

.signup-stepper .e-stepper .e-step.e-step-completed .e-step-label[b-spumg8oibl],
.signup-stepper .e-stepper .e-step.e-step-inprogress .e-step-label[b-spumg8oibl] {
    color: var(--primary-color);
}

.signup-stepper .e-stepper .e-step .e-step-indicator[b-spumg8oibl] {
    background-color: var(--border-color);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--secondary-color);
}

.signup-stepper .e-stepper .e-step.e-step-completed .e-step-indicator[b-spumg8oibl],
.signup-stepper .e-stepper .e-step.e-step-inprogress .e-step-indicator[b-spumg8oibl] {
    background-color: var(--primary-color);
    color: white;
}

.signup-stepper .e-stepper .e-step-connector[b-spumg8oibl] {
    background-color: var(--border-color);
    height: 2px;
    top: 20px;
}

.signup-stepper .e-stepper .e-step.e-step-completed .e-step-connector[b-spumg8oibl] {
    background-color: var(--primary-color);
}

/* Plan Selection */
.plan-selection[b-spumg8oibl] {
    padding: 2rem 0;
}

.plan-card[b-spumg8oibl] {
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    height: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    background-color: white;
    transform: scale(1);
}

.plan-card:hover[b-spumg8oibl] {
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(25, 118, 210, 0.15);
    transform: translateY(-2px) scale(1.02);
}

.plan-card.selected[b-spumg8oibl] {
    border-color: var(--primary-color);
    box-shadow: 0 8px 30px rgba(25, 118, 210, 0.2);
    background-color: rgba(25, 118, 210, 0.03);
    transform: translateY(-4px) scale(1.02);
}

.plan-card.selected[b-spumg8oibl]::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 10px;
    background: linear-gradient(45deg, var(--primary-color), #42a5f5);
    z-index: -1;
    opacity: 0.1;
}

.plan-check-icon[b-spumg8oibl] {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--success-color);
    color: white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 2px 8px rgba(25, 135, 84, 0.3);
    animation: checkAppear-b-spumg8oibl 0.3s ease-in-out;
}

@keyframes checkAppear-b-spumg8oibl {
    0% {
        transform: scale(0) rotate(0deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.2) rotate(180deg);
    }
    100% {
        transform: scale(1) rotate(360deg);
        opacity: 1;
    }
}

.plan-badge[b-spumg8oibl] {
    background-color: var(--light-bg);
    color: var(--secondary-color);
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: inline-block;
}

.plan-badge-featured[b-spumg8oibl] {
    background-color: var(--primary-color);
    color: white;
}

.plan-title[b-spumg8oibl] {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.plan-price[b-spumg8oibl] {
    margin-bottom: 0.5rem;
}

.plan-price .price[b-spumg8oibl] {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.plan-price .period[b-spumg8oibl] {
    font-size: 1.25rem;
    color: var(--secondary-color);
}

.plan-subtitle[b-spumg8oibl] {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.plan-description[b-spumg8oibl] {
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.plan-features h4[b-spumg8oibl] {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.plan-features ul[b-spumg8oibl] {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-features li[b-spumg8oibl] {
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.875rem;
    line-height: 1.4;
}

.plan-features li[b-spumg8oibl]::before {
    content: '?';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Popular badge */
.plan-popular-badge[b-spumg8oibl] {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ff6b35;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
    white-space: nowrap;
    z-index: 10;
}

.plan-popular-badge i[b-spumg8oibl] {
    margin-right: 4px;
}

/* Loading states */
.spinner-border[b-spumg8oibl] {
    width: 3rem;
    height: 3rem;
}

/* Alert styling */
.alert[b-spumg8oibl] {
    border-radius: 8px;
    border: none;
    padding: 1rem 1.5rem;
}

.alert-warning[b-spumg8oibl] {
    background-color: #fff3cd;
    color: #856404;
    border-left: 4px solid #ffc107;
}

/* Payment Information */
.payment-info[b-spumg8oibl] {
    padding: 1rem 0;
}

.payment-form h5[b-spumg8oibl] {
    margin-bottom: 1.5rem;
    color: #333;
    font-weight: 600;
}

.card-input[b-spumg8oibl] {
    font-family: 'Courier New', monospace;
}

.invoice-preview[b-spumg8oibl] {
    background-color: var(--light-bg);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.invoice-preview h5[b-spumg8oibl] {
    margin-bottom: 1rem;
    color: #333;
    font-weight: 600;
}

.plan-summary h6[b-spumg8oibl] {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.plan-details .d-flex[b-spumg8oibl] {
    margin-bottom: 0.5rem;
}

.total[b-spumg8oibl] {
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
    margin-top: 1rem;
}

.subscription-details[b-spumg8oibl] {
    font-size: 0.8rem;
    line-height: 1.4;
}

/* Order Review */
.order-review[b-spumg8oibl] {
    padding: 1rem 0;
}

.payment-details[b-spumg8oibl] {
    background-color: var(--light-bg);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.card-info[b-spumg8oibl] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.card-icons[b-spumg8oibl] {
    height: 30px;
    width: auto;
}

.billing-address[b-spumg8oibl] {
    font-size: 0.875rem;
    line-height: 1.4;
}

.order-details[b-spumg8oibl] {
    background-color: var(--light-bg);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.order-summary[b-spumg8oibl] {
    font-size: 0.875rem;
}

.subscription-terms[b-spumg8oibl] {
    font-size: 0.75rem;
    line-height: 1.3;
}

.legal-terms[b-spumg8oibl] {
    margin-top: 2rem;
}

.terms-text[b-spumg8oibl] {
    background-color: var(--light-bg);
    font-size: 0.75rem;
    line-height: 1.3;
    color: var(--secondary-color);
}

.agreement-checkbox[b-spumg8oibl] {
    margin-top: 1rem;
}

/* Completion Step */
.completion-step[b-spumg8oibl] {
    padding: 3rem 2rem;
}

.success-icon[b-spumg8oibl] {
    margin-bottom: 1.5rem;
}

.completion-step h3[b-spumg8oibl] {
    color: var(--success-color);
    margin-bottom: 1rem;
}

.next-steps[b-spumg8oibl] {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    max-width: 400px;
    margin: 0 auto;
}

.next-steps h5[b-spumg8oibl] {
    margin-bottom: 1rem;
    color: #333;
}

.next-steps ul li[b-spumg8oibl] {
    text-align: left;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Navigation */
.wizard-navigation[b-spumg8oibl] {
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
    margin-top: 2rem;
}

/* Responsive */
@media (max-width: 1200px) {
    /* On large tablets, show 2 cards per row */
    .plan-selection .col-lg-4[b-spumg8oibl] {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 768px) {
    /* On mobile, show 1 card per row */
    .signup-dialog .e-dialog[b-spumg8oibl] {
        width: 95% !important;
        margin: 1rem;
    }
    
    .signup-stepper[b-spumg8oibl] {
        max-width: 100%;
    }
    
    .plan-selection .row[b-spumg8oibl] {
        flex-direction: column;
    }
    
    .plan-card[b-spumg8oibl] {
        margin-bottom: 1rem;
    }
    
    .progress-steps[b-spumg8oibl] {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .step[b-spumg8oibl] {
        flex: none;
        min-width: 80px;
    }
    
    .payment-info .row[b-spumg8oibl] {
        flex-direction: column;
    }
    
    .order-review .row[b-spumg8oibl] {
        flex-direction: column;
    }
}

/* Form field spacing */
.payment-form .row[b-spumg8oibl] {
    margin-bottom: 1rem;
}

.payment-form .form-label[b-spumg8oibl] {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.payment-form .text-danger[b-spumg8oibl] {
    color: #dc3545 !important;
}

/* Input group for promo code */
.input-group[b-spumg8oibl] {
    display: flex;
    gap: 0.5rem;
}

.input-group .e-textbox[b-spumg8oibl] {
    flex: 1;
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* Layout Container - Full viewport height */
.layout-container[b-oom2r8xrxr] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    height: 100vh;
    max-height: 100vh;
    overflow: hidden;
    flex: 1;
}

/* Free Plan Banner - Using ::deep to ensure styles apply */
[b-oom2r8xrxr] .free-plan-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    position: relative;
    flex-shrink: 0;
}

/* Header section should not grow */
[b-oom2r8xrxr] section {
    flex-shrink: 0;
}

[b-oom2r8xrxr] .free-plan-banner .banner-text {
    font-size: 0.9rem;
    font-weight: 400;
}

[b-oom2r8xrxr] .free-plan-banner .banner-text strong {
    font-weight: 600;
}

[b-oom2r8xrxr] .free-plan-banner .upgrade-btn {
    background-color: rgba(255, 255, 255, 0.95) !important;
    color: #667eea !important;
    border: none !important;
    font-weight: 600;
    padding: 0.4rem 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

[b-oom2r8xrxr] .free-plan-banner .upgrade-btn:hover {
    background-color: white !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

[b-oom2r8xrxr] .free-plan-banner .upgrade-btn:active {
    transform: translateY(0);
}

[b-oom2r8xrxr] #menu .e-menu-container.e-hamburger .e-menu-parent {
    box-shadow: 0px 4px 6px 2px rgba(0, 0, 0, 0.05) !important;
    left: auto !important;
    overflow-y: hidden !important;
    right: 0 !important;
    width: 150px !important;
    z-index: 1 !important;
}

/* Main Content Area - Flex grow to fill remaining space */
[b-oom2r8xrxr] .main-content {
    flex: 1 1 auto !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    background-color: #f5f5f5;
    min-height: 0 !important;
    display: flex;
    flex-direction: column;
}

[b-oom2r8xrxr] .content-wrapper {
    flex: 1;
    padding: 1rem;
    height: 100%;
}



/* /Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-xhuuq7xl6r] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1);
}

.navbar-toggler:checked[b-xhuuq7xl6r] {
    background-color: rgba(255, 255, 255, 0.5);
}

.top-row[b-xhuuq7xl6r] {
    min-height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-xhuuq7xl6r] {
    font-size: 1.1rem;
}

.bi[b-xhuuq7xl6r] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-xhuuq7xl6r] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-xhuuq7xl6r] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-xhuuq7xl6r] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.nav-item[b-xhuuq7xl6r] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-xhuuq7xl6r] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-xhuuq7xl6r] {
        padding-bottom: 1rem;
    }

    .nav-item[b-xhuuq7xl6r]  .nav-link {
        color: #d7d7d7;
        background: none;
        border: none;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        width: 100%;
    }

.nav-item[b-xhuuq7xl6r]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-xhuuq7xl6r]  .nav-link:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

.nav-scrollable[b-xhuuq7xl6r] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-xhuuq7xl6r] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-xhuuq7xl6r] {
        display: none;
    }

    .nav-scrollable[b-xhuuq7xl6r] {
        /* Never collapse the sidebar for wide screens */
        display: block;

        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Components/Layout/OpenLayout.razor.rz.scp.css */
.page[b-cjj7v5jzi7] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-cjj7v5jzi7] {
    flex: 1;
}

.sidebar[b-cjj7v5jzi7] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-cjj7v5jzi7] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-cjj7v5jzi7]  a, .top-row[b-cjj7v5jzi7]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

        .top-row[b-cjj7v5jzi7]  a:hover, .top-row[b-cjj7v5jzi7]  .btn-link:hover {
            text-decoration: underline;
        }

        .top-row[b-cjj7v5jzi7]  a:first-child {
            overflow: hidden;
            text-overflow: ellipsis;
        }

@media (max-width: 640.98px) {
    .top-row[b-cjj7v5jzi7] {
        justify-content: space-between;
    }

        .top-row[b-cjj7v5jzi7]  a, .top-row[b-cjj7v5jzi7]  .btn-link {
            margin-left: 0;
        }
}

@media (min-width: 641px) {
    .page[b-cjj7v5jzi7] {
        flex-direction: row;
    }

    .sidebar[b-cjj7v5jzi7] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-cjj7v5jzi7] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

        .top-row.auth[b-cjj7v5jzi7]  a:first-child {
            flex: 1;
            text-align: right;
            width: 0;
        }

    .top-row[b-cjj7v5jzi7], article[b-cjj7v5jzi7] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-cjj7v5jzi7] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-cjj7v5jzi7] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-vx02fhjhm3],
.components-reconnect-repeated-attempt-visible[b-vx02fhjhm3],
.components-reconnect-failed-visible[b-vx02fhjhm3],
.components-pause-visible[b-vx02fhjhm3],
.components-resume-failed-visible[b-vx02fhjhm3],
.components-rejoining-animation[b-vx02fhjhm3] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-vx02fhjhm3],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-vx02fhjhm3],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-vx02fhjhm3],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-vx02fhjhm3],
#components-reconnect-modal.components-reconnect-retrying[b-vx02fhjhm3],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-vx02fhjhm3],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-vx02fhjhm3],
#components-reconnect-modal.components-reconnect-failed[b-vx02fhjhm3],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-vx02fhjhm3] {
    display: block;
}


#components-reconnect-modal[b-vx02fhjhm3] {
    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-vx02fhjhm3 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-vx02fhjhm3 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-vx02fhjhm3 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-vx02fhjhm3]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-vx02fhjhm3 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-vx02fhjhm3 {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-vx02fhjhm3 {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-vx02fhjhm3 {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-vx02fhjhm3] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-vx02fhjhm3] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-vx02fhjhm3] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-vx02fhjhm3] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-vx02fhjhm3] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-vx02fhjhm3] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-vx02fhjhm3] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-vx02fhjhm3 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-vx02fhjhm3] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-vx02fhjhm3 {
    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/Home.razor.rz.scp.css */
.dashboard-container[b-mj8r9lsuvg] {
  padding: 2rem;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  min-height: 100vh;
}

.dashboard-header[b-mj8r9lsuvg] {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.dashboard-title[b-mj8r9lsuvg] {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}

.dashboard-subtitle[b-mj8r9lsuvg] {
  color: #666;
  margin-top: 0.5rem;
}

.header-actions[b-mj8r9lsuvg] {
  display: flex;
  gap: 1rem;
}

.metrics-grid[b-mj8r9lsuvg] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.metric-card[b-mj8r9lsuvg] {
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #3b82f6;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.metric-card:hover[b-mj8r9lsuvg] {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.card-header-content[b-mj8r9lsuvg] {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.metric-icon[b-mj8r9lsuvg] {
  font-size: 1.75rem;
}

.metric-title[b-mj8r9lsuvg] {
  font-size: 0.875rem;
  color: #666;
  margin: 0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.metric-value[b-mj8r9lsuvg] {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 1rem 0 0.5rem 0;
}

.metric-change[b-mj8r9lsuvg] {
  font-size: 0.875rem;
  margin: 0;
}

.metric-change.positive[b-mj8r9lsuvg] {
  color: #10b981;
}

.metric-change.neutral[b-mj8r9lsuvg] {
  color: #6366f1;
}

.metric-change.warning[b-mj8r9lsuvg] {
  color: #f59e0b;
}

.chart-card[b-mj8r9lsuvg] {
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.detailed-card[b-mj8r9lsuvg] {
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.card-title[b-mj8r9lsuvg] {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}

.view-all-link[b-mj8r9lsuvg] {
  color: #3b82f6;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
}

.view-all-link:hover[b-mj8r9lsuvg] {
  color: #2563eb;
}

.fund-list[b-mj8r9lsuvg] {
  padding: 1rem 0;
}

.fund-item[b-mj8r9lsuvg] {
  padding: 1.25rem;
  background: #f9fafb;
  border-radius: 8px;
  margin-bottom: 1rem !important;
}

.fund-name[b-mj8r9lsuvg] {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}

.fund-meta[b-mj8r9lsuvg] {
  color: #999;
  font-size: 0.875rem;
  margin: 0.25rem 0 0 0;
}

.fund-details[b-mj8r9lsuvg] {
  color: #666;
  font-size: 0.875rem;
}

.donor-list[b-mj8r9lsuvg] {
  padding: 1rem 0;
}

.donor-item[b-mj8r9lsuvg] {
  padding: 1.25rem;
  background: #f9fafb;
  border-radius: 8px;
}

.donor-name[b-mj8r9lsuvg] {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}

.donor-meta[b-mj8r9lsuvg] {
  color: #6366f1;
  font-size: 0.875rem;
  font-weight: 500;
  margin: 0.25rem 0 0 0;
}

.donor-contact[b-mj8r9lsuvg] {
  color: #999;
  display: block;
  margin-top: 0.5rem;
}

.donor-amount[b-mj8r9lsuvg] {
  font-size: 1.25rem;
  font-weight: 700;
  color: #10b981;
  margin-bottom: 0.25rem;
}

.interaction-list[b-mj8r9lsuvg] {
  padding: 1rem 0;
}

.interaction-item[b-mj8r9lsuvg] {
  padding: 1.25rem;
  background: #f9fafb;
  border-radius: 8px;
}

.interaction-icon[b-mj8r9lsuvg] {
  font-size: 1.5rem;
  min-width: 40px;
  text-align: center;
}

.interaction-title[b-mj8r9lsuvg] {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 0.25rem 0;
}

.interaction-meta[b-mj8r9lsuvg] {
  color: #666;
  font-size: 0.875rem;
  margin: 0;
}

.transaction-table[b-mj8r9lsuvg] {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.transaction-table thead[b-mj8r9lsuvg] {
  background: #f9fafb;
}

.transaction-table th[b-mj8r9lsuvg] {
  padding: 1rem;
  text-align: left;
  font-weight: 700;
  color: #666;
  border-bottom: 2px solid #e5e7eb;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
}

.transaction-table td[b-mj8r9lsuvg] {
  padding: 1rem;
  border-bottom: 1px solid #e5e7eb;
  color: #333;
}

.transaction-table tr:hover[b-mj8r9lsuvg] {
  background: #f9fafb;
}

.transaction-table .amount[b-mj8r9lsuvg] {
  font-weight: 700;
  color: #1a1a1a;
}

.badge[b-mj8r9lsuvg] {
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: white;
}

.quick-actions-section[b-mj8r9lsuvg] {
  margin-top: 3rem;
}

.section-title[b-mj8r9lsuvg] {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
}

.actions-grid[b-mj8r9lsuvg] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.action-tile[b-mj8r9lsuvg] {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.action-tile:hover[b-mj8r9lsuvg] {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  border-left: 4px solid #3b82f6;
}

.action-icon[b-mj8r9lsuvg] {
  font-size: 2rem;
  min-width: 50px;
}

.action-text h6[b-mj8r9lsuvg] {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 0.5rem 0;
}

.action-text p[b-mj8r9lsuvg] {
  color: #666;
  font-size: 0.875rem;
  margin: 0;
}

@media (max-width: 768px) {
  .dashboard-container[b-mj8r9lsuvg] {
    padding: 1rem;
  }

  .dashboard-header[b-mj8r9lsuvg] {
    padding: 1.5rem;
  }

  .dashboard-title[b-mj8r9lsuvg] {
    font-size: 1.5rem;
  }

  .header-actions[b-mj8r9lsuvg] {
    flex-direction: column;
  }

  .metrics-grid[b-mj8r9lsuvg] {
    grid-template-columns: 1fr;
  }

  .actions-grid[b-mj8r9lsuvg] {
    grid-template-columns: 1fr;
  }
}
/* /Components/Pages/Security/Profile.razor.rz.scp.css */
.profile-page[b-8zwljk7xzl] {
  background:
    radial-gradient(
      circle at top left,
      rgba(112, 162, 255, 0.18),
      transparent 55%
    ),
    radial-gradient(
      circle at 20% 20%,
      rgba(255, 193, 92, 0.2),
      transparent 45%
    ),
    linear-gradient(180deg, #f9fafc 0%, #ffffff 45%, #f7f8fb 100%);
  min-height: calc(100vh - 72px);
  padding-bottom: 48px;
}

.profile-hero[b-8zwljk7xzl] {
  padding: 32px 0 24px;
}

.profile-kicker[b-8zwljk7xzl] {
  font-size: 0.75rem;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  color: #5b6b7a;
  margin-bottom: 8px;
  font-weight: 600;
}

.profile-title[b-8zwljk7xzl] {
  font-family: "Playfair Display", "Georgia", serif;
  font-size: 2.4rem;
  margin: 0;
  color: #1a2230;
}

.profile-subtitle[b-8zwljk7xzl] {
  color: #607086;
  margin-top: 6px;
  font-size: 1rem;
}

.profile-content[b-8zwljk7xzl] {
  margin-top: 12px;
}

.profile-card[b-8zwljk7xzl] {
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 18px 36px rgba(19, 33, 68, 0.08);
  border: 1px solid rgba(26, 34, 48, 0.08);
}

.profile-card-error[b-8zwljk7xzl] {
  border-color: rgba(216, 51, 51, 0.35);
}

.profile-header[b-8zwljk7xzl] {
  display: flex;
  align-items: center;
  gap: 16px;
}

.profile-avatar[b-8zwljk7xzl] {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1.2rem;
  color: #0f1b2d;
  background: linear-gradient(135deg, #c3d9ff 0%, #ffd7aa 100%);
}

.profile-name[b-8zwljk7xzl] {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f1b2d;
}

.profile-email[b-8zwljk7xzl] {
  margin: 4px 0 0;
  color: #607086;
  font-size: 0.95rem;
}

.profile-facts[b-8zwljk7xzl] {
  display: grid;
  gap: 12px;
  margin-top: 8px;
}

.profile-fact[b-8zwljk7xzl] {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(26, 34, 48, 0.12);
}

.profile-fact:last-child[b-8zwljk7xzl] {
  border-bottom: none;
}

.profile-fact-label[b-8zwljk7xzl] {
  color: #6a7688;
  font-size: 0.85rem;
}

.profile-fact-value[b-8zwljk7xzl] {
  color: #132144;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: right;
  max-width: 60%;
  word-break: break-word;
}

.profile-section-title[b-8zwljk7xzl] {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
  color: #132144;
}

.profile-count[b-8zwljk7xzl] {
  font-size: 0.9rem;
  color: #607086;
}

.profile-accordion .e-acrdn-item[b-8zwljk7xzl] {
  border: 1px solid rgba(26, 34, 48, 0.08);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}

.profile-accordion-header[b-8zwljk7xzl] {
  font-weight: 600;
  color: #1a2230;
}

.profile-loading[b-8zwljk7xzl],
.profile-error[b-8zwljk7xzl],
.profile-empty[b-8zwljk7xzl] {
  font-size: 1rem;
  color: #607086;
  padding: 12px 4px;
}

@media (max-width: 768px) {
  .profile-title[b-8zwljk7xzl] {
    font-size: 2rem;
  }

  .profile-page[b-8zwljk7xzl] {
    padding-bottom: 32px;
  }
}
