@import '_content/Blazored.Toast/Blazored.Toast.bundle.scp.css';

/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-gqp1lweerd] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-gqp1lweerd] {
    flex: 1;
}

.sidebar[b-gqp1lweerd] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-gqp1lweerd] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-gqp1lweerd]  a, .top-row[b-gqp1lweerd]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-gqp1lweerd]  a:hover, .top-row[b-gqp1lweerd]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-gqp1lweerd]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-gqp1lweerd] {
        justify-content: space-between;
    }

    .top-row[b-gqp1lweerd]  a, .top-row[b-gqp1lweerd]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-gqp1lweerd] {
        flex-direction: row;
    }

    .sidebar[b-gqp1lweerd] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-gqp1lweerd] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-gqp1lweerd]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-gqp1lweerd], article[b-gqp1lweerd] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-gqp1lweerd] {
    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-gqp1lweerd] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

/* User menu styles */
.user-menu[b-gqp1lweerd] {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 16px;
    padding-left: 16px;
    border-left: 1px solid var(--border-color, #e2e8f0);
}

.user-name[b-gqp1lweerd] {
    color: var(--text-muted, #64748b);
    font-size: 0.9rem;
    font-weight: 500;
}

.logout-link[b-gqp1lweerd] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    color: var(--text-muted, #64748b) !important;
    font-weight: 500;
    font-size: 0.9375rem;
    border-radius: 6px;
    transition: all 0.2s;
    text-decoration: none !important;
}

.logout-link:hover[b-gqp1lweerd] {
    background: var(--bg-color, #f8fafc);
    color: var(--primary-color, #1e3a5f) !important;
    text-decoration: none !important;
}

/* Security/2FA Link */
.security-link[b-gqp1lweerd] {
    display: flex;
    align-items: center;
    padding: 0.5rem;
    color: var(--text-muted, #64748b) !important;
    border-radius: 6px;
    transition: all 0.2s;
    text-decoration: none !important;
}

.security-link:hover[b-gqp1lweerd] {
    background: var(--bg-color, #f8fafc);
    color: var(--primary-color, #1e3a5f) !important;
}

/* Admin Dropdown Menu */
.admin-dropdown[b-gqp1lweerd] {
    position: relative;
}

.admin-toggle[b-gqp1lweerd] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    color: var(--text-muted, #64748b);
    font-weight: 500;
    font-size: 0.9375rem;
    border-radius: 6px;
    transition: all 0.2s;
    text-decoration: none;
    background: transparent;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.admin-toggle:hover[b-gqp1lweerd] {
    background: var(--bg-color, #f8fafc);
    color: var(--primary-color, #0f766e);
}

.dropdown-arrow[b-gqp1lweerd] {
    font-size: 0.7rem;
    margin-left: 0.25rem;
    transition: transform 0.2s;
}

.admin-menu[b-gqp1lweerd] {
    position: absolute;
    top: calc(100% + 4px);
    right: 0;
    background: var(--card-bg, #ffffff);
    border: 1px solid var(--border-color, #e2e8f0);
    border-radius: 8px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.15), 0 4px 6px -2px rgba(0, 0, 0, 0.08);
    min-width: 200px;
    padding: 0.5rem 0;
    z-index: 1100;
    animation: dropdownFadeIn-b-gqp1lweerd 0.15s ease-out;
    display: flex;
    flex-direction: column;
}

@keyframes dropdownFadeIn-b-gqp1lweerd {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.admin-menu-item[b-gqp1lweerd] {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--text-color, #1e293b);
    font-size: 0.9375rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.15s;
    white-space: nowrap;
    width: 100%;
    box-sizing: border-box;
}

.admin-menu-item:hover[b-gqp1lweerd] {
    background: var(--bg-color, #f8fafc);
    color: var(--primary-color, #0f766e);
    text-decoration: none;
}

.admin-menu-item.active[b-gqp1lweerd] {
    background: linear-gradient(135deg, var(--primary-color, #0f766e), var(--primary-light, #14b8a6));
    color: white;
}

.menu-icon[b-gqp1lweerd] {
    font-size: 1.125rem;
    line-height: 1;
    width: 1.5rem;
    text-align: center;
}

/* ===== Nav Dropdown (Fundraising) ===== */
.nav-dropdown[b-gqp1lweerd] {
    position: relative;
}

.nav-dropdown-toggle[b-gqp1lweerd] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    color: var(--nav-text, #64748b);
    font-weight: 500;
    font-size: 0.9375rem;
    border-radius: 6px;
    transition: all 0.2s;
    text-decoration: none;
    background: transparent;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.nav-dropdown-toggle:hover[b-gqp1lweerd] {
    background: var(--bg-color, #f8fafc);
    color: var(--primary-color, #1a365d);
}

.nav-dropdown.open .nav-dropdown-toggle[b-gqp1lweerd] {
    background: var(--bg-color, #f8fafc);
    color: var(--primary-color, #1a365d);
}

.nav-dropdown-toggle .dropdown-arrow[b-gqp1lweerd] {
    font-size: 0.7rem;
    margin-left: 0.25rem;
    transition: transform 0.2s;
}

.nav-dropdown-menu[b-gqp1lweerd] {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    background: var(--card-bg, #ffffff);
    border: 1px solid var(--border-color, #e2e8f0);
    border-radius: 8px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.15), 0 4px 6px -2px rgba(0, 0, 0, 0.08);
    min-width: 180px;
    padding: 0.5rem 0;
    z-index: 1100;
    animation: dropdownFadeIn-b-gqp1lweerd 0.15s ease-out;
    display: flex !important;
    flex-direction: column !important;
}

.nav-dropdown-item[b-gqp1lweerd] {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 0.75rem !important;
    padding: 0.75rem 1rem !important;
    color: var(--text-color, #1e293b) !important;
    font-size: 0.9375rem !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    transition: all 0.15s !important;
    white-space: nowrap !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.nav-dropdown-item:hover[b-gqp1lweerd] {
    background: var(--bg-color, #f8fafc);
    color: var(--primary-color, #1a365d);
    text-decoration: none;
}

.nav-dropdown-item.active[b-gqp1lweerd] {
    background: linear-gradient(135deg, var(--primary-color, #1a365d), #2d4a73);
    color: white;
}

/* Mobile styles for nav dropdown */
@media (max-width: 768px) {
    .nav-dropdown[b-gqp1lweerd] {
        width: 100%;
    }
    
    .nav-dropdown-toggle[b-gqp1lweerd] {
        width: 100%;
        padding: 0.875rem 1rem;
        justify-content: flex-start;
    }
    
    .nav-dropdown-menu[b-gqp1lweerd] {
        position: static;
        box-shadow: none;
        border: none;
        border-radius: 0;
        padding: 0;
        margin-left: 1.5rem;
        margin-top: 0.25rem;
        background: transparent;
        animation: none;
    }
    
    .nav-dropdown-item[b-gqp1lweerd] {
        padding: 0.75rem 1rem;
        border-radius: 6px;
    }
}

/* Tablet/Small Desktop: Hide text, show only icons */
@media (max-width: 1100px) and (min-width: 769px) {
    .nav-dropdown-toggle .nav-text[b-gqp1lweerd] {
        display: none;
    }
    
    .nav-dropdown-toggle .dropdown-arrow[b-gqp1lweerd] {
        display: none;
    }
    
    .nav-dropdown-toggle[b-gqp1lweerd] {
        padding: 0.625rem;
    }
}

/* Bug Tracker Link - Icon only on desktop */
.bug-tracker-link[b-gqp1lweerd] {
    padding: 0.5rem !important;
}

.bug-tracker-link .nav-text[b-gqp1lweerd] {
    display: none;
}

.bug-tracker-link .nav-icon[b-gqp1lweerd] {
    font-size: 1.25rem;
}

/* Show text on mobile for bug tracker */
@media (max-width: 768px) {
    .bug-tracker-link .nav-text.mobile-only[b-gqp1lweerd] {
        display: inline;
    }
    
    .bug-tracker-link[b-gqp1lweerd] {
        padding: 0.875rem 1rem !important;
    }
}

/* Active Users Indicator */
.active-users-indicator[b-gqp1lweerd] {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.75rem;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    cursor: default;
    margin-right: 0.5rem;
    white-space: pre-line;
}

.active-users-indicator:hover[b-gqp1lweerd] {
    background: rgba(0, 0, 0, 0.15);
}

.active-dot[b-gqp1lweerd] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #6b7280;
    transition: all 0.3s ease;
}

.active-dot.active[b-gqp1lweerd] {
    background: #22c55e;
    box-shadow: 0 0 6px rgba(34, 197, 94, 0.6);
    animation: pulse-b-gqp1lweerd 2s infinite;
}

@keyframes pulse-b-gqp1lweerd {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

.active-count[b-gqp1lweerd] {
    font-weight: 600;
    min-width: 1ch;
}

.active-label[b-gqp1lweerd] {
    opacity: 0.85;
}

/* Hide on smaller screens */
@media (max-width: 1100px) {
    .active-users-indicator .active-label[b-gqp1lweerd] {
        display: none;
    }
}

@media (max-width: 900px) {
    .active-users-indicator[b-gqp1lweerd] {
        display: none;
    }
}
/* /Components/Pages/AI.razor.rz.scp.css */
.ai-page[b-3ncqe2jcv0] {
    padding: 20px;
    max-width: 1600px;
    margin: 0 auto;
}

.page-header[b-3ncqe2jcv0] {
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.page-header h1[b-3ncqe2jcv0] {
    margin: 0 0 5px 0;
    font-size: 28px;
    color: #2c5aa0;
    flex: 1 1 100%;
}

.page-header .subtitle[b-3ncqe2jcv0] {
    margin: 0;
    color: #666;
    flex: 1;
}

.header-settings-btn[b-3ncqe2jcv0] {
    flex-shrink: 0;
}

.loading-container[b-3ncqe2jcv0] {
    text-align: center;
    padding: 60px 20px;
}

.spinner[b-3ncqe2jcv0] {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #2c5aa0;
    border-radius: 50%;
    animation: spin-b-3ncqe2jcv0 1s linear infinite;
    margin: 0 auto 15px;
}

@keyframes spin-b-3ncqe2jcv0 {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Layout */
.ai-layout[b-3ncqe2jcv0] {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 20px;
    min-height: calc(100vh - 200px);
}

/* Sidebar */
.sidebar[b-3ncqe2jcv0] {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
}

.sidebar-header[b-3ncqe2jcv0] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #e2e8f0;
    background: #f8f9fa;
}

.sidebar-header h3[b-3ncqe2jcv0] {
    margin: 0;
    font-size: 16px;
    color: #2c5aa0;
}

.sidebar-actions[b-3ncqe2jcv0] {
    display: flex;
    gap: 5px;
    align-items: center;
}

.query-list[b-3ncqe2jcv0] {
    max-height: calc(100vh - 300px);
    overflow-y: auto;
}

.query-item[b-3ncqe2jcv0] {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 12px 15px;
    border-bottom: 1px solid #e2e8f0;
    cursor: pointer;
    transition: background 0.2s;
}

.query-item:hover[b-3ncqe2jcv0] {
    background: #f8f9fa;
}

.query-item.selected[b-3ncqe2jcv0] {
    background: #e3f2fd;
    border-left: 3px solid #2c5aa0;
}

.query-item.bulk-selected[b-3ncqe2jcv0] {
    background: #fff3e0;
}

.query-item.selected.bulk-selected[b-3ncqe2jcv0] {
    background: #e3f2fd;
}

.query-item-checkbox[b-3ncqe2jcv0] {
    padding-top: 2px;
    flex-shrink: 0;
}

.query-item-checkbox input[type="checkbox"][b-3ncqe2jcv0] {
    cursor: pointer;
    width: 16px;
    height: 16px;
}

.query-item-content[b-3ncqe2jcv0] {
    flex: 1;
    min-width: 0;
}

.query-item-header[b-3ncqe2jcv0] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.query-name[b-3ncqe2jcv0] {
    font-weight: 500;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.badge[b-3ncqe2jcv0] {
    font-size: 12px;
    padding: 2px 4px;
    border-radius: 4px;
}

.badge-dashboard[b-3ncqe2jcv0] {
    background: #e8f5e9;
}

.badge-schedule[b-3ncqe2jcv0] {
    background: #fff3e0;
}

.query-description[b-3ncqe2jcv0] {
    display: block;
    margin-top: 4px;
    color: #666;
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.no-queries[b-3ncqe2jcv0] {
    padding: 30px 15px;
    text-align: center;
    color: #666;
}

.no-queries p[b-3ncqe2jcv0] {
    margin: 0 0 5px 0;
}

/* Main content */
.main-content[b-3ncqe2jcv0] {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 0; /* Prevent grid blowout */
    overflow: hidden;
}

/* Welcome panel */
.welcome-panel[b-3ncqe2jcv0] {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 40px;
}

.welcome-content[b-3ncqe2jcv0] {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.welcome-content h2[b-3ncqe2jcv0] {
    margin: 0 0 15px 0;
    color: #2c5aa0;
}

.welcome-content > p[b-3ncqe2jcv0] {
    color: #666;
    margin-bottom: 30px;
}

.features[b-3ncqe2jcv0] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    text-align: left;
    margin-bottom: 30px;
}

.feature[b-3ncqe2jcv0] {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.feature-icon[b-3ncqe2jcv0] {
    font-size: 24px;
}

.feature strong[b-3ncqe2jcv0] {
    display: block;
    margin-bottom: 4px;
}

.feature p[b-3ncqe2jcv0] {
    margin: 0;
    font-size: 13px;
    color: #666;
}

/* Quick Create Section */
.quick-create-section[b-3ncqe2jcv0] {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 1px solid #bae6fd;
    border-radius: 12px;
    padding: 20px;
    margin: 25px 0;
    text-align: left;
}

.quick-create-section h3[b-3ncqe2jcv0] {
    margin: 0 0 8px 0;
    color: #0369a1;
    font-size: 18px;
}

.quick-create-section > p[b-3ncqe2jcv0] {
    margin: 0 0 15px 0;
    color: #666;
    font-size: 14px;
}

.quick-create-form[b-3ncqe2jcv0] {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.quick-create-form textarea[b-3ncqe2jcv0] {
    flex: 1;
    padding: 12px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 14px;
    resize: none;
    min-height: 50px;
}

.quick-create-form textarea:focus[b-3ncqe2jcv0] {
    outline: none;
    border-color: #0ea5e9;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.15);
}

.quick-create-form button[b-3ncqe2jcv0] {
    white-space: nowrap;
    padding: 12px 20px;
}

.alert-success[b-3ncqe2jcv0] {
    background: #dcfce7;
    border: 1px solid #86efac;
    color: #166534;
    padding: 10px 15px;
    border-radius: 8px;
}

.alert-error[b-3ncqe2jcv0] {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
    padding: 10px 15px;
    border-radius: 8px;
}

.mt-2[b-3ncqe2jcv0] {
    margin-top: 10px;
}

.welcome-actions[b-3ncqe2jcv0] {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Widget suggestions */
.suggestions-panel[b-3ncqe2jcv0] {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #e2e8f0;
}

.suggestions-header[b-3ncqe2jcv0] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    flex-wrap: wrap;
    gap: 10px;
}

.suggestions-header h3[b-3ncqe2jcv0] {
    margin: 0;
    color: #5b21b6;
}

.suggestions-actions[b-3ncqe2jcv0] {
    display: flex;
    gap: 8px;
    align-items: center;
}

.suggestions-intro[b-3ncqe2jcv0] {
    color: #666;
    margin-bottom: 20px;
    font-size: 14px;
}

.suggestions-grid[b-3ncqe2jcv0] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 15px;
}

.suggestion-card[b-3ncqe2jcv0] {
    background: linear-gradient(135deg, #f8f6ff 0%, #f0ebfe 100%);
    border: 2px solid #e0d8f0;
    border-radius: 10px;
    padding: 15px;
    transition: all 0.2s ease;
}

.suggestion-card.selected[b-3ncqe2jcv0] {
    border-color: #7c3aed;
    background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.2);
}

.suggestion-card:hover[b-3ncqe2jcv0] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(91, 33, 182, 0.15);
}

.suggestion-header[b-3ncqe2jcv0] {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.suggestion-checkbox[b-3ncqe2jcv0] {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.suggestion-checkbox input[type="checkbox"][b-3ncqe2jcv0] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #7c3aed;
}

.suggestion-category[b-3ncqe2jcv0] {
    font-size: 11px;
    font-weight: 600;
    color: #6b21a8;
    background: rgba(107, 33, 168, 0.1);
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}

.suggestion-content[b-3ncqe2jcv0] {
    cursor: pointer;
}

.suggestion-card h4[b-3ncqe2jcv0] {
    margin: 0 0 8px 0;
    font-size: 15px;
    color: #333;
}

.suggestion-card p[b-3ncqe2jcv0] {
    margin: 0;
    font-size: 13px;
    color: #666;
    line-height: 1.4;
}

.suggestion-footer[b-3ncqe2jcv0] {
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid rgba(107, 33, 168, 0.1);
}

.create-hint[b-3ncqe2jcv0] {
    font-size: 12px;
    color: #7c3aed;
    font-weight: 500;
}

/* Query editor */
.query-editor[b-3ncqe2jcv0] {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 25px;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.editor-header[b-3ncqe2jcv0] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e2e8f0;
}

.editor-header h2[b-3ncqe2jcv0] {
    margin: 0;
    color: #2c5aa0;
}

.form-group[b-3ncqe2jcv0] {
    margin-bottom: 20px;
}

.form-group label[b-3ncqe2jcv0] {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: #333;
}

.form-group input[type="text"][b-3ncqe2jcv0],
.form-group input[type="number"][b-3ncqe2jcv0],
.form-group textarea[b-3ncqe2jcv0],
.form-group select[b-3ncqe2jcv0] {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
}

.form-group textarea[b-3ncqe2jcv0] {
    resize: vertical;
    min-height: 100px;
}

.sql-editor textarea[b-3ncqe2jcv0] {
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 13px;
    background: #1e1e1e;
    color: #d4d4d4;
    border: none;
    border-radius: 6px;
}

.sql-help[b-3ncqe2jcv0] {
    margin-top: 6px;
}

.sql-help small[b-3ncqe2jcv0] {
    color: #666;
}

.sql-actions[b-3ncqe2jcv0],
.prompt-actions[b-3ncqe2jcv0] {
    margin-top: 8px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

/* Refine SQL Panel */
.refine-panel[b-3ncqe2jcv0] {
    margin-top: 12px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.refine-input-group[b-3ncqe2jcv0] {
    display: flex;
    gap: 8px;
}

.refine-input[b-3ncqe2jcv0] {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
}

.refine-input:focus[b-3ncqe2jcv0] {
    outline: none;
    border-color: var(--primary-color, #5A78FF);
    box-shadow: 0 0 0 2px rgba(90, 120, 255, 0.1);
}

.refine-examples[b-3ncqe2jcv0] {
    margin-top: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    align-items: center;
}

.refine-examples small[b-3ncqe2jcv0] {
    color: #666;
    font-size: 12px;
}

.example-link[b-3ncqe2jcv0] {
    background: none;
    border: none;
    color: var(--primary-color, #5A78FF);
    font-size: 12px;
    padding: 2px 6px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.example-link:hover[b-3ncqe2jcv0] {
    background: rgba(90, 120, 255, 0.1);
    text-decoration: underline;
}

.form-row[b-3ncqe2jcv0] {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.form-row .form-group[b-3ncqe2jcv0] {
    flex: 1;
    min-width: 200px;
}

.checkbox-group label[b-3ncqe2jcv0] {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"][b-3ncqe2jcv0] {
    width: auto;
}

.checkbox-group small[b-3ncqe2jcv0] {
    display: block;
    margin-top: 4px;
    margin-left: 24px;
    color: #666;
}

.schedule-config[b-3ncqe2jcv0] {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 6px;
    margin-top: 10px;
}

.editor-footer[b-3ncqe2jcv0] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.left-actions[b-3ncqe2jcv0],
.right-actions[b-3ncqe2jcv0] {
    display: flex;
    gap: 10px;
}

/* Preview panel */
.preview-panel[b-3ncqe2jcv0] {
    background: #f8f9fa;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 20px;
}

.preview-panel h4[b-3ncqe2jcv0] {
    margin: 0 0 10px 0;
    font-size: 14px;
    color: #333;
}

/* Schema panel */
.schema-panel[b-3ncqe2jcv0] {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
}

.schema-header[b-3ncqe2jcv0] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #e2e8f0;
    background: #f8f9fa;
}

.schema-header h3[b-3ncqe2jcv0] {
    margin: 0;
    color: #2c5aa0;
}

.schema-tables[b-3ncqe2jcv0] {
    max-height: calc(100vh - 300px);
    overflow-y: auto;
    padding: 10px;
}

.schema-table[b-3ncqe2jcv0] {
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    margin-bottom: 8px;
    overflow: hidden;
}

.table-header[b-3ncqe2jcv0] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: #f8f9fa;
    cursor: pointer;
}

.table-header:hover[b-3ncqe2jcv0] {
    background: #e3f2fd;
}

.table-name[b-3ncqe2jcv0] {
    font-weight: 500;
    flex: 1;
}

.table-count[b-3ncqe2jcv0] {
    font-size: 12px;
    color: #666;
}

.toggle[b-3ncqe2jcv0] {
    color: #666;
    font-size: 12px;
}

.table-columns[b-3ncqe2jcv0] {
    padding: 8px;
    background: white;
}

.column-item[b-3ncqe2jcv0] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 4px 8px;
    font-size: 13px;
    border-radius: 4px;
}

.column-item:hover[b-3ncqe2jcv0] {
    background: #f8f9fa;
}

.column-item.pk[b-3ncqe2jcv0] {
    background: #fff3e0;
}

.col-name[b-3ncqe2jcv0] {
    flex: 1;
    font-family: 'Consolas', monospace;
}

.col-type[b-3ncqe2jcv0] {
    color: #666;
    font-size: 12px;
}

.col-pk[b-3ncqe2jcv0] {
    font-size: 12px;
}

/* Results panel */
.results-panel[b-3ncqe2jcv0] {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
}

.results-header[b-3ncqe2jcv0] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.results-header h3[b-3ncqe2jcv0] {
    margin: 0;
    color: #2c5aa0;
}

.ai-response[b-3ncqe2jcv0] {
    background: linear-gradient(135deg, #667eea11 0%, #764ba211 100%);
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.ai-response h4[b-3ncqe2jcv0] {
    margin: 0 0 15px 0;
    color: #5a67d8;
}

.response-content[b-3ncqe2jcv0] {
    line-height: 1.7;
}

.response-content p[b-3ncqe2jcv0] {
    margin: 0 0 10px 0;
}

.response-content p:last-child[b-3ncqe2jcv0] {
    margin-bottom: 0;
}

/* Markdown content styling */
.markdown-content h1[b-3ncqe2jcv0],
.markdown-content h2[b-3ncqe2jcv0],
.markdown-content h3[b-3ncqe2jcv0] {
    color: #333;
    margin-top: 1em;
    margin-bottom: 0.5em;
}

.markdown-content h1[b-3ncqe2jcv0] { font-size: 1.4em; }
.markdown-content h2[b-3ncqe2jcv0] { font-size: 1.2em; }
.markdown-content h3[b-3ncqe2jcv0] { font-size: 1.1em; }

.markdown-content h1:first-child[b-3ncqe2jcv0],
.markdown-content h2:first-child[b-3ncqe2jcv0],
.markdown-content h3:first-child[b-3ncqe2jcv0] {
    margin-top: 0;
}

.markdown-content ul[b-3ncqe2jcv0],
.markdown-content ol[b-3ncqe2jcv0] {
    margin: 0.5em 0;
    padding-left: 1.5em;
}

.markdown-content li[b-3ncqe2jcv0] {
    margin-bottom: 0.3em;
}

.markdown-content strong[b-3ncqe2jcv0] {
    font-weight: 600;
    color: #333;
}

.markdown-content em[b-3ncqe2jcv0] {
    font-style: italic;
}

.markdown-content code[b-3ncqe2jcv0] {
    background: #f1f5f9;
    padding: 0.2em 0.4em;
    border-radius: 4px;
    font-family: monospace;
    font-size: 0.9em;
}

.markdown-content pre[b-3ncqe2jcv0] {
    background: #f1f5f9;
    padding: 1em;
    border-radius: 6px;
    overflow-x: auto;
    margin: 0.5em 0;
}

.markdown-content pre code[b-3ncqe2jcv0] {
    background: none;
    padding: 0;
}

.markdown-content blockquote[b-3ncqe2jcv0] {
    border-left: 3px solid #5a67d8;
    margin: 0.5em 0;
    padding-left: 1em;
    color: #666;
}

.markdown-content table[b-3ncqe2jcv0] {
    border-collapse: collapse;
    width: 100%;
    margin: 0.5em 0;
}

.markdown-content th[b-3ncqe2jcv0],
.markdown-content td[b-3ncqe2jcv0] {
    border: 1px solid #e2e8f0;
    padding: 8px;
    text-align: left;
}

.markdown-content th[b-3ncqe2jcv0] {
    background: #f8fafc;
    font-weight: 600;
}

.data-section[b-3ncqe2jcv0] {
    margin-top: 20px;
}

.data-section h4[b-3ncqe2jcv0] {
    margin: 0 0 10px 0;
    color: #333;
}

/* Data table */
.data-table-container[b-3ncqe2jcv0] {
    overflow-x: auto;
    overflow-y: auto;
    max-height: 300px;
    max-width: 100%;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    background: #fff;
    -webkit-overflow-scrolling: touch;
}

.data-table[b-3ncqe2jcv0] {
    width: max-content;
    min-width: 100%;
    border-collapse: collapse;
    font-size: 12px;
    table-layout: auto;
}

.data-table th[b-3ncqe2jcv0],
.data-table td[b-3ncqe2jcv0] {
    padding: 10px 16px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
    border-right: 1px solid #f0f0f0;
    white-space: nowrap;
    max-width: 300px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.data-table th:last-child[b-3ncqe2jcv0],
.data-table td:last-child[b-3ncqe2jcv0] {
    border-right: none;
}

.data-table th[b-3ncqe2jcv0] {
    background: #f8f9fa;
    font-weight: 600;
    position: sticky;
    top: 0;
    z-index: 10;
    min-width: 80px;
}

.data-table td[b-3ncqe2jcv0] {
    min-width: 60px;
}

/* Expandable cell on hover */
.data-table td:hover[b-3ncqe2jcv0] {
    white-space: normal;
    word-break: break-word;
    max-width: none;
    background: #fffef0;
    position: relative;
    z-index: 5;
}

.data-table tbody tr:hover[b-3ncqe2jcv0] {
    background: #f8f9fa;
}

.data-table tbody tr:nth-child(even)[b-3ncqe2jcv0] {
    background: #fafbfc;
}

.data-table tbody tr:nth-child(even):hover[b-3ncqe2jcv0] {
    background: #f8f9fa;
}

.preview-footer[b-3ncqe2jcv0] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    color: #666;
    font-size: 12px;
}

.preview-footer small[b-3ncqe2jcv0] {
    color: #888;
}

.no-data[b-3ncqe2jcv0] {
    text-align: center;
    padding: 20px;
    color: #666;
}

/* Buttons */
.btn[b-3ncqe2jcv0] {
    padding: 10px 18px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn:disabled[b-3ncqe2jcv0] {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-primary[b-3ncqe2jcv0] {
    background: #2c5aa0;
    color: white;
}

.btn-primary:hover:not(:disabled)[b-3ncqe2jcv0] {
    background: #1e4080;
}

.btn-secondary[b-3ncqe2jcv0] {
    background: #6c757d;
    color: white;
}

.btn-secondary:hover:not(:disabled)[b-3ncqe2jcv0] {
    background: #545b62;
}

.btn-success[b-3ncqe2jcv0] {
    background: #28a745;
    color: white;
}

.btn-success:hover:not(:disabled)[b-3ncqe2jcv0] {
    background: #218838;
}

.btn-danger[b-3ncqe2jcv0] {
    background: #dc3545;
    color: white;
}

.btn-danger:hover:not(:disabled)[b-3ncqe2jcv0] {
    background: #c82333;
}

.btn-sm[b-3ncqe2jcv0] {
    padding: 6px 12px;
    font-size: 13px;
}

.btn-lg[b-3ncqe2jcv0] {
    padding: 14px 28px;
    font-size: 16px;
}

/* Alerts */
.alert[b-3ncqe2jcv0] {
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 15px;
}

.alert-error[b-3ncqe2jcv0] {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.alert-success[b-3ncqe2jcv0] {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

/* Responsive */
@media (max-width: 900px) {
    .ai-layout[b-3ncqe2jcv0] {
        grid-template-columns: 1fr;
    }
    
    .sidebar[b-3ncqe2jcv0] {
        order: 2;
    }
    
    .features[b-3ncqe2jcv0] {
        grid-template-columns: 1fr;
    }
}

/* AI Query Builder */
.ai-query-builder[b-3ncqe2jcv0] {
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f4f8 100%);
    border: 1px solid #c3dafe;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

.builder-header[b-3ncqe2jcv0] {
    margin-bottom: 20px;
}

.builder-header h4[b-3ncqe2jcv0] {
    margin: 0 0 4px 0;
    color: #2c5aa0;
    font-size: 18px;
}

.builder-subtitle[b-3ncqe2jcv0] {
    color: #666;
    font-size: 14px;
}

.table-selector[b-3ncqe2jcv0] {
    margin-bottom: 20px;
}

.table-selector label[b-3ncqe2jcv0] {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: #333;
}

.table-chips[b-3ncqe2jcv0] {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.table-chip[b-3ncqe2jcv0] {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}

.table-chip:hover[b-3ncqe2jcv0] {
    border-color: #2c5aa0;
    background: #f0f7ff;
}

.table-chip.selected[b-3ncqe2jcv0] {
    background: #2c5aa0;
    border-color: #2c5aa0;
    color: white;
}

.table-chip.selected .chip-count[b-3ncqe2jcv0] {
    color: rgba(255,255,255,0.8);
}

.chip-icon[b-3ncqe2jcv0] {
    font-size: 16px;
}

.chip-name[b-3ncqe2jcv0] {
    font-weight: 500;
    font-size: 13px;
}

.chip-count[b-3ncqe2jcv0] {
    font-size: 11px;
    color: #888;
}

/* Selected tables info */
.selected-tables-info[b-3ncqe2jcv0] {
    margin-bottom: 20px;
}

.columns-preview[b-3ncqe2jcv0] {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.table-columns-preview[b-3ncqe2jcv0] {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.preview-header[b-3ncqe2jcv0] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    background: #f8f9fa;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
}

.preview-header:hover[b-3ncqe2jcv0] {
    background: #f0f4f8;
}

.toggle-icon[b-3ncqe2jcv0] {
    color: #888;
    font-size: 12px;
}

.columns-list[b-3ncqe2jcv0] {
    padding: 12px 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    border-top: 1px solid #e2e8f0;
}

.column-chip[b-3ncqe2jcv0] {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: #f0f4f8;
    border-radius: 4px;
    font-size: 12px;
    font-family: 'Consolas', 'Monaco', monospace;
    color: #444;
}

.column-chip.pk[b-3ncqe2jcv0] {
    background: #fff3cd;
    font-weight: 500;
}

.pk-icon[b-3ncqe2jcv0] {
    font-size: 10px;
}

/* Query request */
.query-request[b-3ncqe2jcv0] {
    margin-bottom: 15px;
}

.query-request label[b-3ncqe2jcv0] {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.query-request textarea[b-3ncqe2jcv0] {
    width: 100%;
    padding: 12px;
    border: 1px solid #c3dafe;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    resize: vertical;
    min-height: 80px;
    background: white;
}

.query-request textarea:focus[b-3ncqe2jcv0] {
    outline: none;
    border-color: #2c5aa0;
    box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
}

.query-request-actions[b-3ncqe2jcv0] {
    margin-top: 10px;
}

/* Query examples */
.query-examples[b-3ncqe2jcv0] {
    border-top: 1px solid #c3dafe;
    padding-top: 15px;
}

.examples-label[b-3ncqe2jcv0] {
    display: block;
    margin-bottom: 10px;
    font-size: 13px;
    color: #666;
}

.example-chips[b-3ncqe2jcv0] {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.example-chip[b-3ncqe2jcv0] {
    padding: 6px 12px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.example-chip:hover[b-3ncqe2jcv0] {
    background: #2c5aa0;
    border-color: #2c5aa0;
    color: white;
}

/* Context Settings Modal */
.context-modal[b-3ncqe2jcv0] {
    max-width: 700px;
}

.context-description[b-3ncqe2jcv0] {
    margin: 0 0 15px 0;
    color: #666;
}

.context-hints[b-3ncqe2jcv0] {
    margin: 0 0 20px 0;
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 8px;
    list-style: none;
}

.context-hints li[b-3ncqe2jcv0] {
    margin: 10px 0;
    font-size: 13px;
    color: #555;
    line-height: 1.5;
}

.context-hints li strong[b-3ncqe2jcv0] {
    color: #333;
}

.context-modal textarea[b-3ncqe2jcv0] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.5;
    resize: vertical;
    min-height: 200px;
}

.context-modal textarea:focus[b-3ncqe2jcv0] {
    outline: none;
    border-color: #2c5aa0;
    box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
}

.modal-footer[b-3ncqe2jcv0] {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    padding-top: 15px;
    border-top: 1px solid #eee;
    margin-top: 15px;
}

/* Delete confirmation modal */
.delete-confirm-modal[b-3ncqe2jcv0] {
    max-width: 500px;
}

.delete-warning[b-3ncqe2jcv0] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background-color: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 8px;
    margin-bottom: 16px;
    color: #856404;
}

.delete-warning .warning-icon[b-3ncqe2jcv0] {
    font-size: 20px;
}

.delete-list[b-3ncqe2jcv0] {
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 16px;
}

.delete-list-item[b-3ncqe2jcv0] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    border-bottom: 1px solid #eee;
}

.delete-list-item:last-child[b-3ncqe2jcv0] {
    border-bottom: none;
}

.delete-list-item .query-name[b-3ncqe2jcv0] {
    font-weight: 500;
    color: #333;
}

.delete-list-item .badge[b-3ncqe2jcv0] {
    font-size: 10px;
    padding: 2px 6px;
}

/* Prompt Preview Modal */
.prompt-preview-modal[b-3ncqe2jcv0] {
    max-width: 900px;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
}

.prompt-preview-modal .modal-body[b-3ncqe2jcv0] {
    flex: 1;
    overflow: auto;
    padding: 20px;
}

.prompt-preview-info[b-3ncqe2jcv0] {
    margin: 0 0 15px 0;
    padding: 12px;
    background: #e7f3ff;
    border: 1px solid #b6d4fe;
    border-radius: 8px;
    color: #0a58ca;
    font-size: 14px;
}

.prompt-preview-content[b-3ncqe2jcv0] {
    background: #1e1e1e;
    color: #d4d4d4;
    padding: 20px;
    border-radius: 8px;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 13px;
    line-height: 1.6;
    white-space: pre-wrap;
    word-wrap: break-word;
    overflow-x: auto;
    margin: 0;
    max-height: 500px;
    overflow-y: auto;
}

.prompt-preview-modal .loading-spinner[b-3ncqe2jcv0] {
    text-align: center;
    padding: 40px;
    color: #666;
}
/* Improved Editor Flow Styles */
.editor-title-preview[b-3ncqe2jcv0] {
    font-size: 14px;
    color: #666;
    font-weight: normal;
    padding: 4px 10px;
    background: #f0f9ff;
    border-radius: 4px;
}

.meta-section[b-3ncqe2jcv0] {
    margin-bottom: 20px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
}

.meta-toggle[b-3ncqe2jcv0] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: #f8f9fa;
    cursor: pointer;
    font-weight: 500;
    color: #555;
    transition: background 0.2s;
}

.meta-toggle:hover[b-3ncqe2jcv0] {
    background: #f0f4f8;
}

.toggle-indicator[b-3ncqe2jcv0] {
    color: #888;
    font-size: 12px;
}

.meta-fields[b-3ncqe2jcv0] {
    padding: 16px;
    background: white;
    border-top: 1px solid #e2e8f0;
}

.meta-fields .form-group[b-3ncqe2jcv0] {
    margin-bottom: 12px;
}

.meta-fields .form-group:last-child[b-3ncqe2jcv0] {
    margin-bottom: 0;
}

/* SQL Section */
.sql-section[b-3ncqe2jcv0] {
    margin-bottom: 20px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
}

.sql-section.has-content[b-3ncqe2jcv0] {
    border-color: #22c55e;
    border-width: 2px;
}

.sql-section-header[b-3ncqe2jcv0] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: #f8f9fa;
    cursor: pointer;
    font-weight: 500;
}

.sql-section-header label[b-3ncqe2jcv0] {
    margin: 0;
    cursor: pointer;
}

.sql-toggle[b-3ncqe2jcv0] {
    color: #888;
    font-size: 12px;
}

.sql-editor-wrapper[b-3ncqe2jcv0] {
    padding: 16px;
    background: white;
    border-top: 1px solid #e2e8f0;
}

.sql-editor[b-3ncqe2jcv0] {
    width: 100%;
}

.sql-editor textarea[b-3ncqe2jcv0] {
    width: 100%;
    min-height: 200px;
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 14px;
    line-height: 1.5;
    padding: 16px;
    background: #1e1e1e;
    color: #d4d4d4;
    border: none;
    border-radius: 8px;
    resize: vertical;
}

.sql-toolbar[b-3ncqe2jcv0] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #e2e8f0;
}

.sql-actions[b-3ncqe2jcv0] {
    display: flex;
    gap: 8px;
}

/* AI Prompt Section */
.ai-prompt-section[b-3ncqe2jcv0] {
    margin-bottom: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
    border: 2px solid #d8b4fe;
    border-radius: 12px;
}

.ai-prompt-section.has-content[b-3ncqe2jcv0] {
    border-color: #a855f7;
}

.ai-prompt-section .prompt-header[b-3ncqe2jcv0] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.ai-prompt-section .prompt-header h4[b-3ncqe2jcv0] {
    margin: 0;
    color: #7e22ce;
}

.ai-prompt-section textarea[b-3ncqe2jcv0] {
    width: 100%;
    padding: 12px;
    border: 1px solid #d8b4fe;
    border-radius: 8px;
    font-size: 14px;
    resize: vertical;
    min-height: 80px;
}

.ai-prompt-section textarea:focus[b-3ncqe2jcv0] {
    outline: none;
    border-color: #a855f7;
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.15);
}

.prompt-footer[b-3ncqe2jcv0] {
    margin-top: 8px;
    text-align: right;
}

/* Advanced Settings */
.advanced-settings[b-3ncqe2jcv0] {
    margin-bottom: 20px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
}

.advanced-toggle[b-3ncqe2jcv0] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: #f8f9fa;
    cursor: pointer;
    font-weight: 500;
    color: #555;
    font-size: 14px;
}

.advanced-toggle:hover[b-3ncqe2jcv0] {
    background: #f0f4f8;
}

.advanced-content[b-3ncqe2jcv0] {
    padding: 16px;
    background: white;
    border-top: 1px solid #e2e8f0;
}

.settings-row[b-3ncqe2jcv0] {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-bottom: 12px;
}

.settings-row:last-child[b-3ncqe2jcv0] {
    margin-bottom: 0;
}

.form-group.compact[b-3ncqe2jcv0] {
    margin-bottom: 0;
    min-width: 100px;
}

.form-group.compact input[b-3ncqe2jcv0],
.form-group.compact select[b-3ncqe2jcv0] {
    padding: 6px 10px;
    font-size: 13px;
}

/* Preview Panel Improvements */
.preview-panel[b-3ncqe2jcv0] {
    margin-bottom: 20px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    max-width: 100%;
    box-sizing: border-box;
}

.preview-panel.success[b-3ncqe2jcv0] {
    border-color: #22c55e;
}

.preview-panel.error[b-3ncqe2jcv0] {
    border-color: #ef4444;
}

.preview-header[b-3ncqe2jcv0] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: #f8f9fa;
}

.preview-header h4[b-3ncqe2jcv0] {
    margin: 0;
    font-size: 14px;
}

.preview-count[b-3ncqe2jcv0] {
    font-size: 13px;
    color: #666;
    background: #e2e8f0;
    padding: 2px 8px;
    border-radius: 4px;
}

/* Button improvements */
.btn-lg[b-3ncqe2jcv0] {
    padding: 12px 24px;
    font-size: 16px;
}

.btn-icon[b-3ncqe2jcv0] {
    padding: 6px 10px;
    background: transparent;
    border: 1px solid #ddd;
}

.btn-icon:hover[b-3ncqe2jcv0] {
    background: #f0f0f0;
}

.btn-link[b-3ncqe2jcv0] {
    background: none;
    border: none;
    color: #2c5aa0;
    padding: 4px 8px;
    cursor: pointer;
    text-decoration: underline;
}

.btn-link:hover[b-3ncqe2jcv0] {
    color: #1e4080;
}

/* Editor Footer Improvements */
.editor-footer[b-3ncqe2jcv0] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 2px solid #e2e8f0;
    gap: 12px;
}

.left-actions[b-3ncqe2jcv0],
.right-actions[b-3ncqe2jcv0] {
    display: flex;
    gap: 8px;
    align-items: center;
}

.right-actions .btn-success.btn-lg[b-3ncqe2jcv0] {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    border: none;
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.3);
}

.right-actions .btn-success.btn-lg:hover:not(:disabled)[b-3ncqe2jcv0] {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.4);
    transform: translateY(-1px);
}
/* /Components/Pages/AnnualWheel.razor.rz.scp.css */
.annual-wheel-page[b-e8xulo4tsu] {
    max-width: 1400px;
}

.page-header[b-e8xulo4tsu] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 16px;
}

.header-left h1[b-e8xulo4tsu] {
    font-size: 1.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.header-left .subtitle[b-e8xulo4tsu] {
    color: #64748b;
    margin: 4px 0 0 0;
    font-size: 0.95rem;
}

.header-actions[b-e8xulo4tsu] {
    display: flex;
    align-items: center;
    gap: 16px;
}

.year-selector[b-e8xulo4tsu] {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 10px 16px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.current-year[b-e8xulo4tsu] {
    font-size: 1.35rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-width: 60px;
    text-align: center;
}

.btn-icon[b-e8xulo4tsu] {
    background: none;
    border: none;
    padding: 6px 10px;
    cursor: pointer;
    color: #64748b;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

.btn-icon:hover[b-e8xulo4tsu] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: scale(1.05);
}

/* Export Dropdown */
.export-dropdown[b-e8xulo4tsu] {
    position: relative;
}

.export-btn[b-e8xulo4tsu] {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dropdown-arrow[b-e8xulo4tsu] {
    font-size: 0.7rem;
    transition: transform 0.2s ease;
}

.export-menu[b-e8xulo4tsu] {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid #e2e8f0;
    min-width: 260px;
    z-index: 100;
    overflow: hidden;
    animation: slideDown-b-e8xulo4tsu 0.2s ease;
}

@keyframes slideDown-b-e8xulo4tsu {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.export-menu button[b-e8xulo4tsu] {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 12px 16px;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 0.9rem;
    color: #374151;
    text-align: left;
    transition: all 0.15s ease;
}

.export-menu button:hover[b-e8xulo4tsu] {
    background: linear-gradient(135deg, #f0f4ff 0%, #e8f0fe 100%);
    color: #667eea;
}

.export-menu-divider[b-e8xulo4tsu] {
    height: 1px;
    background: #e2e8f0;
    margin: 4px 0;
}

.export-menu-info[b-e8xulo4tsu] {
    padding: 10px 16px;
    font-size: 0.8rem;
    color: #64748b;
    background: #f8fafc;
}

/* Wheel Layout */
.wheel-layout[b-e8xulo4tsu] {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 28px;
    margin-bottom: 24px;
}

@media (max-width: 1024px) {
    .wheel-layout[b-e8xulo4tsu] {
        grid-template-columns: 1fr;
    }
}

/* SVG Wheel Container */
.wheel-container[b-e8xulo4tsu] {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
    border-radius: 24px;
    padding: 32px;
    border: 1px solid #e2e8f0;
    box-shadow: 
        0 4px 6px -1px rgba(0, 0, 0, 0.05),
        0 10px 15px -3px rgba(0, 0, 0, 0.05),
        inset 0 2px 4px rgba(255, 255, 255, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.annual-wheel-svg[b-e8xulo4tsu] {
    max-width: 500px;
    max-height: 500px;
    width: 100%;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.08));
}

/* Wheel Legend */
.wheel-legend[b-e8xulo4tsu] {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    padding: 12px 24px;
    background: white;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.legend-item[b-e8xulo4tsu] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 500;
}

.legend-color[b-e8xulo4tsu] {
    width: 14px;
    height: 14px;
    border-radius: 4px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.legend-color.winter[b-e8xulo4tsu] {
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
}

.legend-color.spring[b-e8xulo4tsu] {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
}

.legend-color.summer[b-e8xulo4tsu] {
    background: linear-gradient(135deg, #fef9c3 0%, #fef08a 100%);
}

.legend-color.autumn[b-e8xulo4tsu] {
    background: linear-gradient(135deg, #fed7aa 0%, #fdba74 100%);
}

.month-label[b-e8xulo4tsu] {
    font-size: 11px;
    fill: #64748b;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.month-label.current-month[b-e8xulo4tsu] {
    fill: #3b82f6;
    font-weight: 800;
    font-size: 12px;
}

.center-year[b-e8xulo4tsu] {
    font-size: 36px;
    font-weight: 800;
    fill: #1e293b;
    letter-spacing: -0.02em;
}

.center-count[b-e8xulo4tsu] {
    font-size: 12px;
    fill: #94a3b8;
    font-weight: 500;
}

.event-arc[b-e8xulo4tsu] {
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.event-arc:hover[b-e8xulo4tsu] {
    stroke-width: 18 !important;
    opacity: 1 !important;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.25));
}

.event-arc.selected[b-e8xulo4tsu] {
    stroke-width: 16;
    opacity: 1;
}

.today-marker[b-e8xulo4tsu] {
    animation: todayPulse-b-e8xulo4tsu 2s ease-in-out infinite;
}

.today-dot[b-e8xulo4tsu] {
    animation: todayDotPulse-b-e8xulo4tsu 2s ease-in-out infinite;
}

@keyframes todayPulse-b-e8xulo4tsu {
    0%, 100% { 
        opacity: 1; 
        stroke-width: 3;
    }
    50% { 
        opacity: 0.7; 
        stroke-width: 2;
    }
}

@keyframes todayDotPulse-b-e8xulo4tsu {
    0%, 100% { 
        r: 6;
        opacity: 1;
    }
    50% { 
        r: 8;
        opacity: 0.8;
    }
}

/* Events Panel */
.events-panel[b-e8xulo4tsu] {
    background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    max-height: 620px;
    box-shadow: 
        0 4px 6px -1px rgba(0, 0, 0, 0.05),
        0 10px 15px -3px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.panel-header[b-e8xulo4tsu] {
    padding: 16px 16px 12px;
    background: linear-gradient(135deg, #667eea08 0%, #764ba208 100%);
    border-bottom: 1px solid #e2e8f0;
}

.panel-header h3[b-e8xulo4tsu] {
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 12px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.event-count[b-e8xulo4tsu] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.filter-row[b-e8xulo4tsu] {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    align-items: center;
}

.filter-divider[b-e8xulo4tsu] {
    width: 1px;
    height: 24px;
    background: #e2e8f0;
    margin: 0 4px;
}

.filter-select[b-e8xulo4tsu] {
    padding: 6px 10px;
    border: 1px solid #e2e8f0;
    background: white;
    border-radius: 8px;
    font-size: 0.8rem;
    color: #374151;
    cursor: pointer;
    outline: none;
    transition: all 0.2s ease;
}

.filter-select:hover[b-e8xulo4tsu] {
    border-color: #cbd5e1;
}

.filter-select:focus[b-e8xulo4tsu] {
    border-color: #667eea;
    box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.2);
}

.filter-btn[b-e8xulo4tsu] {
    padding: 6px 12px;
    border: 1px solid #e2e8f0;
    background: white;
    border-radius: 8px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.filter-btn:hover[b-e8xulo4tsu] {
    background: #f8fafc;
    border-color: #cbd5e1;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.filter-btn.active[b-e8xulo4tsu] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.filter-btn.my-tasks-btn[b-e8xulo4tsu] {
    border-color: #10b981;
    color: #10b981;
}

.filter-btn.my-tasks-btn:hover[b-e8xulo4tsu] {
    background: #ecfdf5;
}

.filter-btn.my-tasks-btn.active[b-e8xulo4tsu] {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.filter-btn.unassigned-btn[b-e8xulo4tsu] {
    border-color: #f59e0b;
    color: #f59e0b;
}

.filter-btn.unassigned-btn:hover[b-e8xulo4tsu] {
    background: #fffbeb;
}

.filter-btn.unassigned-btn.active[b-e8xulo4tsu] {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

.events-list[b-e8xulo4tsu] {
    flex: 1;
    overflow-y: auto;
    padding: 12px;
    outline: none;
}

.events-list:focus[b-e8xulo4tsu] {
    outline: 2px solid #667eea;
    outline-offset: -2px;
    border-radius: 8px;
}

.events-list[b-e8xulo4tsu]::-webkit-scrollbar {
    width: 6px;
}

.events-list[b-e8xulo4tsu]::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 3px;
}

.events-list[b-e8xulo4tsu]::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 3px;
}

.month-group[b-e8xulo4tsu] {
    margin-bottom: 20px;
}

.month-header[b-e8xulo4tsu] {
    font-size: 0.7rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 8px 12px 6px;
    margin: 0;
    background: linear-gradient(90deg, #f8fafc 0%, transparent 100%);
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.month-count[b-e8xulo4tsu] {
    background: #e2e8f0;
    color: #64748b;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.65rem;
    font-weight: 600;
}

.event-item[b-e8xulo4tsu] {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 6px;
    border: 1px solid transparent;
}

.event-item:hover[b-e8xulo4tsu] {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    transform: translateX(4px);
    border-color: #e2e8f0;
}

.event-item.selected[b-e8xulo4tsu] {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border: 1px solid #93c5fd;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.15);
}

.event-item.inactive[b-e8xulo4tsu] {
    opacity: 0.5;
}

.event-item.overdue[b-e8xulo4tsu] {
    border-left: 3px solid #ef4444;
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.event-item.overdue:hover[b-e8xulo4tsu] {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
}

.event-item.completed[b-e8xulo4tsu] {
    opacity: 0.6;
}

.event-color[b-e8xulo4tsu] {
    width: 5px;
    min-height: 50px;
    border-radius: 3px;
    flex-shrink: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    align-self: stretch;
}

.event-content[b-e8xulo4tsu] {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.event-header-row[b-e8xulo4tsu] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
}

.event-title[b-e8xulo4tsu] {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 1;
    min-width: 0;
}

.event-icon[b-e8xulo4tsu] {
    font-size: 1rem;
    flex-shrink: 0;
}

.inactive-badge[b-e8xulo4tsu] {
    font-size: 0.65rem;
    background: #fef2f2;
    color: #dc2626;
    padding: 2px 6px;
    border-radius: 4px;
    flex-shrink: 0;
}

.event-info-row[b-e8xulo4tsu] {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.8rem;
}

.event-date[b-e8xulo4tsu] {
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 4px;
}

.recurring-badge[b-e8xulo4tsu] {
    font-size: 0.7rem;
}

.assignee-name[b-e8xulo4tsu] {
    color: #3b82f6;
    font-weight: 500;
    font-size: 0.75rem;
}

.no-assignee[b-e8xulo4tsu] {
    color: #94a3b8;
    font-size: 0.75rem;
}

.event-progress[b-e8xulo4tsu] {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 2px;
}

.mini-progress-bar[b-e8xulo4tsu] {
    flex: 1;
    height: 4px;
    background: #e2e8f0;
    border-radius: 2px;
    overflow: hidden;
    max-width: 100px;
}

.mini-progress-fill[b-e8xulo4tsu] {
    height: 100%;
    background: linear-gradient(90deg, #10b981 0%, #059669 100%);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.progress-text[b-e8xulo4tsu] {
    font-size: 0.7rem;
    color: #64748b;
    font-weight: 500;
}

.comment-indicator[b-e8xulo4tsu] {
    font-size: 0.7rem;
    color: #64748b;
    margin-top: 2px;
}

.status-badge[b-e8xulo4tsu] {
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 4px;
    color: white;
    flex-shrink: 0;
}

.event-item.completed .event-title[b-e8xulo4tsu] {
    text-decoration: line-through;
    opacity: 0.7;
}

/* Event Detail Card */
.event-detail-card[b-e8xulo4tsu] {
    background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    box-shadow: 
        0 4px 6px -1px rgba(0, 0, 0, 0.05),
        0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

.detail-header[b-e8xulo4tsu] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-left: 5px solid;
    flex-wrap: wrap;
    gap: 12px;
}

.detail-title[b-e8xulo4tsu] {
    display: flex;
    align-items: center;
    gap: 14px;
}

.detail-icon[b-e8xulo4tsu] {
    font-size: 1.75rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.detail-title h3[b-e8xulo4tsu] {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.category-badge[b-e8xulo4tsu] {
    font-size: 0.75rem;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.status-pill[b-e8xulo4tsu] {
    font-size: 0.75rem;
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-weight: 500;
}

.checklist-summary[b-e8xulo4tsu] {
    margin: 16px 0;
    padding: 12px 16px;
    background: #f8fafc;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

.progress-header[b-e8xulo4tsu] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: 0.85rem;
    color: #64748b;
}

.progress-percent[b-e8xulo4tsu] {
    font-weight: 600;
    color: #667eea;
}

.progress-bar[b-e8xulo4tsu] {
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill[b-e8xulo4tsu] {
    height: 100%;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.detail-actions[b-e8xulo4tsu] {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.calendar-export-buttons[b-e8xulo4tsu] {
    display: flex;
    gap: 6px;
}

.btn-outlook[b-e8xulo4tsu] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0078d4 0%, #106ebe 100%);
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 120, 212, 0.25);
}

.btn-outlook:hover[b-e8xulo4tsu] {
    background: linear-gradient(135deg, #106ebe 0%, #0078d4 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 120, 212, 0.35);
}

.btn-outlook:active[b-e8xulo4tsu] {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 120, 212, 0.25);
}

.btn-ghost[b-e8xulo4tsu] {
    background: white;
    border: 1px solid #e2e8f0;
    padding: 8px 12px;
    cursor: pointer;
    color: #64748b;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

.btn-ghost:hover[b-e8xulo4tsu] {
    background: #f8fafc;
    border-color: #cbd5e1;
    color: #374151;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.detail-body[b-e8xulo4tsu] {
    padding: 24px;
}

.detail-info[b-e8xulo4tsu] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 20px;
}

.info-item[b-e8xulo4tsu] {
    display: flex;
    gap: 10px;
    padding: 10px 14px;
    background: #f8fafc;
    border-radius: 10px;
    border: 1px solid #f1f5f9;
}

.info-label[b-e8xulo4tsu] {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 500;
}

.info-value[b-e8xulo4tsu] {
    font-size: 0.85rem;
    color: #1e293b;
    font-weight: 600;
}

.detail-description[b-e8xulo4tsu],
.detail-notes[b-e8xulo4tsu] {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #e2e8f0;
}

.detail-description strong[b-e8xulo4tsu],
.detail-notes strong[b-e8xulo4tsu] {
    font-size: 0.85rem;
    color: #64748b;
    display: block;
    margin-bottom: 4px;
}

.detail-description p[b-e8xulo4tsu],
.detail-notes p[b-e8xulo4tsu] {
    margin: 0;
    color: #374151;
    font-size: 0.9rem;
}

.detail-notes[b-e8xulo4tsu] {
    background: #fefce8;
    margin: 16px -20px -20px -20px;
    padding: 16px 20px;
}

.detail-link[b-e8xulo4tsu] {
    margin-top: 12px;
}

.detail-link a[b-e8xulo4tsu] {
    color: #3b82f6;
    text-decoration: none;
    font-size: 0.9rem;
}

.detail-link a:hover[b-e8xulo4tsu] {
    text-decoration: underline;
}

/* Modal overrides */
.modal-lg[b-e8xulo4tsu] {
    max-width: 700px;
}

.form-row[b-e8xulo4tsu] {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.form-row .form-group[b-e8xulo4tsu] {
    flex: 1;
}

.form-row .flex-2[b-e8xulo4tsu] {
    flex: 2;
}

.color-input[b-e8xulo4tsu] {
    height: 44px;
    padding: 4px;
    cursor: pointer;
    border-radius: 10px;
    border: 2px solid #e2e8f0;
    transition: all 0.2s ease;
}

.color-input:hover[b-e8xulo4tsu] {
    border-color: #667eea;
}

.checkbox-label[b-e8xulo4tsu] {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 10px 14px;
    background: #f8fafc;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
}

.checkbox-label:hover[b-e8xulo4tsu] {
    background: #f1f5f9;
    border-color: #cbd5e1;
}

.checkbox-label input[type="checkbox"][b-e8xulo4tsu] {
    width: 18px;
    height: 18px;
    accent-color: #667eea;
}

/* Empty state */
.empty-state[b-e8xulo4tsu] {
    text-align: center;
    padding: 50px 20px;
    color: #64748b;
}

.empty-icon[b-e8xulo4tsu] {
    font-size: 4rem;
    display: block;
    margin-bottom: 16px;
    filter: grayscale(0.3);
}

.empty-state p[b-e8xulo4tsu] {
    font-size: 1rem;
    margin-bottom: 16px;
}

/* Loading state */
.loading-state[b-e8xulo4tsu] {
    text-align: center;
    padding: 100px 20px;
    color: #64748b;
}

.spinner[b-e8xulo4tsu] {
    width: 48px;
    height: 48px;
    border: 4px solid #e2e8f0;
    border-top-color: #667eea;
    border-radius: 50%;
    animation: spin-b-e8xulo4tsu 0.8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    margin: 0 auto 20px auto;
}

@keyframes spin-b-e8xulo4tsu {
    to { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 768px) {
    .page-header[b-e8xulo4tsu] {
        flex-direction: column;
    }
    
    .header-actions[b-e8xulo4tsu] {
        width: 100%;
        justify-content: space-between;
    }
    
    .form-row[b-e8xulo4tsu] {
        flex-direction: column;
    }
    
    .detail-header[b-e8xulo4tsu] {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .wheel-legend[b-e8xulo4tsu] {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Detail Tabs */
.detail-tabs[b-e8xulo4tsu] {
    margin-top: 16px;
    border-top: 1px solid #e2e8f0;
    padding-top: 16px;
}

.tab-buttons[b-e8xulo4tsu] {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 8px;
}

.tab-btn[b-e8xulo4tsu] {
    padding: 8px 16px;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 0.85rem;
    color: #64748b;
    border-radius: 8px 8px 0 0;
    transition: all 0.2s ease;
}

.tab-btn:hover[b-e8xulo4tsu] {
    background: #f1f5f9;
    color: #475569;
}

.tab-btn.active[b-e8xulo4tsu] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.tab-content[b-e8xulo4tsu] {
    min-height: 150px;
    max-height: 300px;
    overflow-y: auto;
}

/* Checklist Tab */
.checklist-tab .checklist-add[b-e8xulo4tsu] {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.checklist-tab .checklist-add input[b-e8xulo4tsu] {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.9rem;
}

.checklist-items[b-e8xulo4tsu] {
    list-style: none;
    padding: 0;
    margin: 0;
}

.checklist-item[b-e8xulo4tsu] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    background: #f8fafc;
    border-radius: 8px;
    margin-bottom: 6px;
    transition: all 0.2s ease;
}

.checklist-item:hover[b-e8xulo4tsu] {
    background: #f1f5f9;
}

.checklist-item.completed .item-title[b-e8xulo4tsu] {
    text-decoration: line-through;
    color: #94a3b8;
}

.checkbox-wrapper[b-e8xulo4tsu] {
    position: relative;
    cursor: pointer;
}

.checkbox-wrapper input[b-e8xulo4tsu] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.item-title[b-e8xulo4tsu] {
    flex: 1;
    font-size: 0.9rem;
}

.item-deadline[b-e8xulo4tsu] {
    font-size: 0.75rem;
    color: #94a3b8;
    background: #e2e8f0;
    padding: 2px 8px;
    border-radius: 4px;
}

.btn-icon-sm[b-e8xulo4tsu] {
    padding: 4px 8px;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 0.8rem;
    opacity: 0.6;
    transition: opacity 0.2s;
}

.btn-icon-sm:hover[b-e8xulo4tsu] {
    opacity: 1;
}

/* Comments Tab */
.comments-tab .comment-add[b-e8xulo4tsu] {
    margin-bottom: 16px;
}

.comments-tab .comment-add textarea[b-e8xulo4tsu] {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.9rem;
    resize: none;
    margin-bottom: 8px;
}

.comments-list[b-e8xulo4tsu] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.comment-item[b-e8xulo4tsu] {
    background: #f8fafc;
    border-radius: 8px;
    padding: 12px;
}

.comment-header[b-e8xulo4tsu] {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    font-size: 0.8rem;
}

.comment-author[b-e8xulo4tsu] {
    font-weight: 600;
    color: #475569;
}

.comment-date[b-e8xulo4tsu] {
    color: #94a3b8;
}

.comment-content[b-e8xulo4tsu] {
    font-size: 0.9rem;
    color: #334155;
    white-space: pre-wrap;
}

/* Activity Tab */
.activity-list[b-e8xulo4tsu] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.activity-item[b-e8xulo4tsu] {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
}

.activity-icon[b-e8xulo4tsu] {
    font-size: 1rem;
}

.activity-content[b-e8xulo4tsu] {
    flex: 1;
}

.activity-description[b-e8xulo4tsu] {
    font-size: 0.85rem;
    color: #475569;
    display: block;
}

.activity-meta[b-e8xulo4tsu] {
    font-size: 0.75rem;
    color: #94a3b8;
}

/* Empty State */
.empty-state[b-e8xulo4tsu] {
    text-align: center;
    color: #94a3b8;
    padding: 24px;
    font-size: 0.9rem;
}

/* Warning Box in Modal */
.warning-box[b-e8xulo4tsu] {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #fef3c7;
    border: 1px solid #fcd34d;
    border-radius: 8px;
    padding: 12px;
    margin-top: 12px;
}

.warning-icon[b-e8xulo4tsu] {
    font-size: 1.2rem;
}
/* Subscription Help Modal */
.subscription-help[b-e8xulo4tsu] {
    max-height: 70vh;
    overflow-y: auto;
}

.subscription-intro[b-e8xulo4tsu] {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 1px solid #bae6fd;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
}

.subscription-intro p[b-e8xulo4tsu] {
    margin: 0;
    color: #0369a1;
}

.subscription-links[b-e8xulo4tsu] {
    background: #f8fafc;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
}

.subscription-links h4[b-e8xulo4tsu] {
    margin: 0 0 12px 0;
    font-size: 1rem;
    color: #374151;
}

.link-item[b-e8xulo4tsu] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #e2e8f0;
}

.link-item:last-of-type[b-e8xulo4tsu] {
    border-bottom: none;
}

.link-label[b-e8xulo4tsu] {
    font-weight: 500;
    min-width: 180px;
    color: #475569;
}

.link-item code[b-e8xulo4tsu] {
    flex: 1;
    background: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    color: #667eea;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.subscription-tabs[b-e8xulo4tsu] {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
}

.subscription-tabs .tab-buttons[b-e8xulo4tsu] {
    display: flex;
    background: #f1f5f9;
    border-bottom: 1px solid #e2e8f0;
    overflow-x: auto;
}

.subscription-tabs .tab-buttons button[b-e8xulo4tsu] {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 16px;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 0.85rem;
    color: #64748b;
    white-space: nowrap;
    transition: all 0.2s ease;
    border-bottom: 2px solid transparent;
}

.subscription-tabs .tab-buttons button:hover[b-e8xulo4tsu] {
    background: #e2e8f0;
    color: #374151;
}

.subscription-tabs .tab-buttons button.active[b-e8xulo4tsu] {
    background: white;
    color: #667eea;
    border-bottom-color: #667eea;
    font-weight: 500;
}

.subscription-tabs .tab-content[b-e8xulo4tsu] {
    padding: 20px;
    background: white;
}

.instruction-list[b-e8xulo4tsu] {
    margin: 0;
    padding-left: 24px;
}

.instruction-list li[b-e8xulo4tsu] {
    padding: 8px 0;
    color: #374151;
    line-height: 1.6;
}

.instruction-list li strong[b-e8xulo4tsu] {
    color: #1e293b;
}

.instruction-note[b-e8xulo4tsu] {
    margin-top: 16px;
    padding: 12px;
    background: #fef3c7;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #92400e;
}

.security-note[b-e8xulo4tsu] {
    padding: 10px 14px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 1px solid #fcd34d;
    border-radius: 8px;
    font-size: 0.85rem;
    color: #92400e;
    margin-bottom: 12px;
}

/* Template selector */
.template-selector[b-e8xulo4tsu] {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 1rem;
    border-radius: 8px;
    margin: -1rem -1rem 1rem -1rem;
}

.template-selector label[b-e8xulo4tsu] {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.75rem;
}

.template-buttons[b-e8xulo4tsu] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.template-buttons .btn-sm[b-e8xulo4tsu] {
    padding: 6px 12px;
    font-size: 0.85rem;
    border-radius: 6px;
    transition: all 0.15s ease;
}

.template-buttons .btn-secondary[b-e8xulo4tsu] {
    background: white;
    border: 1px solid #d1d5db;
    color: #4b5563;
}

.template-buttons .btn-secondary:hover[b-e8xulo4tsu] {
    background: #f3f4f6;
    border-color: #9ca3af;
}

.template-buttons .btn-primary[b-e8xulo4tsu] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
}
/* /Components/Pages/DonationSuccess.razor.rz.scp.css */
.success-page[b-efivuvba4n] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 2rem;
}

.loading-container[b-efivuvba4n] {
    background: white;
    padding: 3rem 4rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.loading-container h2[b-efivuvba4n] {
    color: #333;
    margin: 1.5rem 0 0.5rem;
    font-size: 1.5rem;
}

.loading-container p[b-efivuvba4n] {
    color: #666;
    margin: 0;
}

.success-container[b-efivuvba4n] {
    background: white;
    padding: 3rem 4rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    max-width: 500px;
}

.success-icon[b-efivuvba4n] {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: pulse-b-efivuvba4n 2s infinite;
}

@keyframes pulse-b-efivuvba4n {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.success-container h1[b-efivuvba4n] {
    color: #333;
    font-size: 2rem;
    margin: 0 0 1rem;
}

.success-message[b-efivuvba4n] {
    color: #28a745;
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0 0 1rem;
}

.info-message[b-efivuvba4n] {
    color: #666;
    font-size: 1rem;
    margin: 0 0 2rem;
}

.btn[b-efivuvba4n] {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-primary[b-efivuvba4n] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-primary:hover[b-efivuvba4n] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.spinner[b-efivuvba4n] {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #667eea;
    border-radius: 50%;
    animation: spin-b-efivuvba4n 1s linear infinite;
    margin: 0 auto;
}

.spinner.small[b-efivuvba4n] {
    width: 30px;
    height: 30px;
    border-width: 3px;
    margin-top: 1rem;
}

@keyframes spin-b-efivuvba4n {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@media (max-width: 600px) {
    .success-page[b-efivuvba4n] {
        padding: 1rem;
    }
    
    .loading-container[b-efivuvba4n],
    .success-container[b-efivuvba4n] {
        padding: 2rem;
    }
    
    .success-icon[b-efivuvba4n] {
        font-size: 3rem;
    }
    
    .success-container h1[b-efivuvba4n] {
        font-size: 1.5rem;
    }
}
/* /Components/Pages/Fundraising.razor.rz.scp.css */
.page-header[b-4a8g50966y] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.header-content h1[b-4a8g50966y] {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0;
    color: #1e293b;
}

.header-content .subtitle[b-4a8g50966y] {
    color: #64748b;
    margin: 0.25rem 0 0 0;
    font-size: 0.95rem;
}

.header-actions[b-4a8g50966y] {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* Stats Grid */
.stats-grid[b-4a8g50966y] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-card[b-4a8g50966y] {
    background: white;
    border-radius: 12px;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.stat-icon[b-4a8g50966y] {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.stat-icon.active[b-4a8g50966y] { background: linear-gradient(135deg, #10b981 0%, #059669 100%); }
.stat-icon.total[b-4a8g50966y] { background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%); }
.stat-icon.donors[b-4a8g50966y] { background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%); }
.stat-icon.ended[b-4a8g50966y] { background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%); }

.stat-content .stat-value[b-4a8g50966y] {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
}

.stat-content .stat-label[b-4a8g50966y] {
    font-size: 0.85rem;
    color: #64748b;
}

/* Filter Tabs */
.filter-tabs[b-4a8g50966y] {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.filter-tabs .tab[b-4a8g50966y] {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 0.625rem 1rem;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
    color: #64748b;
}

.filter-tabs .tab:hover[b-4a8g50966y] {
    border-color: #3b82f6;
    color: #3b82f6;
}

.filter-tabs .tab.active[b-4a8g50966y] {
    background: #3b82f6;
    border-color: #3b82f6;
    color: white;
}

/* Campaigns Grid */
.campaigns-grid[b-4a8g50966y] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1.5rem;
}

.campaign-card[b-4a8g50966y] {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    border-left: 4px solid #10b981;
    transition: all 0.2s;
}

.campaign-card:hover[b-4a8g50966y] {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

.campaign-card.expired[b-4a8g50966y] {
    border-left-color: #6b7280;
    opacity: 0.85;
}

.campaign-card.upcoming[b-4a8g50966y] {
    border-left-color: #f59e0b;
}

.campaign-header[b-4a8g50966y] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.status-badge[b-4a8g50966y] {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.625rem;
    border-radius: 20px;
    text-transform: uppercase;
}

.status-badge.active[b-4a8g50966y] {
    background: #dcfce7;
    color: #15803d;
}

.status-badge.upcoming[b-4a8g50966y] {
    background: #fef3c7;
    color: #b45309;
}

.status-badge.ended[b-4a8g50966y] {
    background: #f3f4f6;
    color: #4b5563;
}

.campaign-actions[b-4a8g50966y] {
    display: flex;
    gap: 0.25rem;
}

.btn-icon[b-4a8g50966y] {
    background: transparent;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.2s;
}

.btn-icon:hover[b-4a8g50966y] {
    background: #f1f5f9;
}

.btn-icon.danger:hover[b-4a8g50966y] {
    background: #fee2e2;
}

.campaign-title[b-4a8g50966y] {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 0.25rem 0;
    color: #1e293b;
}

.campaign-subtitle[b-4a8g50966y] {
    color: #64748b;
    margin: 0 0 0.75rem 0;
    font-size: 0.9rem;
}

.campaign-dates[b-4a8g50966y] {
    margin-bottom: 1rem;
}

.date-range[b-4a8g50966y] {
    font-size: 0.85rem;
    color: #64748b;
}

.campaign-stats[b-4a8g50966y] {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: #f8fafc;
    border-radius: 8px;
}

.campaign-stats .stat[b-4a8g50966y] {
    display: flex;
    flex-direction: column;
}

.campaign-stats .stat-value[b-4a8g50966y] {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
}

.campaign-stats .stat-label[b-4a8g50966y] {
    font-size: 0.75rem;
    color: #64748b;
}

.progress-container[b-4a8g50966y] {
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-bar[b-4a8g50966y] {
    height: 100%;
    background: linear-gradient(90deg, #10b981 0%, #059669 100%);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.progress-text[b-4a8g50966y] {
    font-size: 0.8rem;
    color: #64748b;
    text-align: right;
    margin-bottom: 1rem;
}

.campaign-domain[b-4a8g50966y] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border: 1px solid #93c5fd;
    border-radius: 6px;
    margin-bottom: 1rem;
}

.campaign-domain .domain-icon[b-4a8g50966y] {
    font-size: 1rem;
}

.campaign-domain .domain-name[b-4a8g50966y] {
    font-size: 0.85rem;
    font-family: monospace;
    color: #1d4ed8;
    font-weight: 500;
}

.campaign-footer[b-4a8g50966y] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

.organizer[b-4a8g50966y] {
    font-size: 0.85rem;
    color: #64748b;
}

/* Empty State */
.empty-state[b-4a8g50966y] {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.empty-icon[b-4a8g50966y] {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.empty-state h3[b-4a8g50966y] {
    color: #1e293b;
    margin: 0 0 0.5rem 0;
}

.empty-state p[b-4a8g50966y] {
    color: #64748b;
    margin: 0 0 1.5rem 0;
}

/* Loading */
.loading-container[b-4a8g50966y] {
    text-align: center;
    padding: 4rem 2rem;
}

.spinner[b-4a8g50966y] {
    width: 40px;
    height: 40px;
    border: 3px solid #e2e8f0;
    border-top-color: #3b82f6;
    border-radius: 50%;
    animation: spin-b-4a8g50966y 1s linear infinite;
    margin: 0 auto 1rem auto;
}

@keyframes spin-b-4a8g50966y {
    to { transform: rotate(360deg); }
}

/* Buttons */
.btn[b-4a8g50966y] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-sm[b-4a8g50966y] {
    padding: 0.375rem 0.75rem;
    font-size: 0.85rem;
}

.btn-primary[b-4a8g50966y] {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
}

.btn-primary:hover[b-4a8g50966y] {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

.btn-secondary[b-4a8g50966y] {
    background: white;
    color: #374151;
    border: 1px solid #d1d5db;
}

.btn-secondary:hover[b-4a8g50966y] {
    background: #f9fafb;
    border-color: #9ca3af;
}

.btn-danger[b-4a8g50966y] {
    background: #ef4444;
    color: white;
}

.btn-danger:hover[b-4a8g50966y] {
    background: #dc2626;
}

.btn .icon[b-4a8g50966y] {
    font-size: 1.1em;
}

/* Dialog */
.dialog-overlay[b-4a8g50966y] {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 1rem;
}

.dialog[b-4a8g50966y] {
    background: white;
    border-radius: 20px;
    width: 100%;
    max-width: 600px;
    max-height: calc(100vh - 2rem);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 60px rgba(0,0,0,0.3);
}

.dialog-campaign[b-4a8g50966y] {
    max-width: 850px;
}

.dialog-small[b-4a8g50966y] {
    max-width: 450px;
}

.dialog-header[b-4a8g50966y] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, #1a365d 0%, #2d4a7c 100%);
    color: white;
}

.dialog-header-content[b-4a8g50966y] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.dialog-icon[b-4a8g50966y] {
    font-size: 2rem;
    background: rgba(255,255,255,0.2);
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dialog-header h2[b-4a8g50966y] {
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0;
    color: white;
}

.dialog-subtitle[b-4a8g50966y] {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    margin: 0.25rem 0 0 0;
}

.close-btn[b-4a8g50966y] {
    background: rgba(255,255,255,0.15);
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    transition: all 0.2s;
    flex-shrink: 0;
}

.close-btn:hover[b-4a8g50966y] {
    background: rgba(255,255,255,0.25);
}

.dialog-content[b-4a8g50966y] {
    padding: 1.5rem 2rem;
    overflow-y: auto;
    background: #f8fafc;
    flex: 1 1 auto;
}

.dialog-actions[b-4a8g50966y] {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    padding: 1.25rem 2rem;
    background: white;
    border-top: 1px solid #e2e8f0;
    flex-shrink: 0;
}

/* Form Grid Layout */
.form-grid[b-4a8g50966y] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-column[b-4a8g50966y] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-section-card[b-4a8g50966y] {
    background: white;
    border-radius: 14px;
    padding: 1.25rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
}

.form-section-card.highlight[b-4a8g50966y] {
    border-color: #c05621;
    border-width: 2px;
    background: linear-gradient(to bottom, #fffbeb, white);
}

.section-header[b-4a8g50966y] {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #e2e8f0;
}

.section-icon[b-4a8g50966y] {
    font-size: 1.1rem;
}

.section-header h3[b-4a8g50966y] {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a365d;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Form Styles */
.form-section[b-4a8g50966y] {
    margin-bottom: 1.5rem;
}

.form-section h3[b-4a8g50966y] {
    font-size: 1rem;
    font-weight: 600;
    color: #374151;
    margin: 0 0 1rem 0;
}

.form-group[b-4a8g50966y] {
    margin-bottom: 0.875rem;
}

.form-group:last-child[b-4a8g50966y] {
    margin-bottom: 0;
}

.form-group label[b-4a8g50966y] {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #475569;
    margin-bottom: 0.375rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.form-group input[b-4a8g50966y],
.form-group textarea[b-4a8g50966y],
.form-group select[b-4a8g50966y],
.form-group input[type="text"][b-4a8g50966y],
.form-group input[type="email"][b-4a8g50966y],
.form-group input[type="number"][b-4a8g50966y],
.form-group input[type="date"][b-4a8g50966y],
.form-group .form-control[b-4a8g50966y] {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0.5rem 0.75rem;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-size: 1rem;
    line-height: 1.5;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    background: white;
    color: #212529;
    box-sizing: border-box;
    display: block;
}

/* Input inside suffix container should flex */
.input-with-suffix .form-control[b-4a8g50966y] {
    flex: 1;
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    border-right: none !important;
}

.form-group input:focus[b-4a8g50966y],
.form-group textarea:focus[b-4a8g50966y],
.form-group select:focus[b-4a8g50966y] {
    outline: none;
    border-color: #86b7fe;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

.form-group input[b-4a8g50966y]::placeholder,
.form-group textarea[b-4a8g50966y]::placeholder {
    color: #9ca3af;
}

.form-row[b-4a8g50966y] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.875rem;
}

.input-with-suffix[b-4a8g50966y] {
    display: flex;
    align-items: stretch;
}

.input-with-suffix input[b-4a8g50966y] {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: none;
    flex: 1;
}

.input-with-suffix .suffix[b-4a8g50966y] {
    background: #1a365d;
    color: white;
    border: 1px solid #1a365d;
    padding: 0.5rem 0.875rem;
    border-radius: 0 6px 6px 0;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.help-text[b-4a8g50966y] {
    display: block;
    font-size: 0.8rem;
    color: #64748b;
    margin-top: 0.5rem;
}

/* Goal Preview */
.goal-preview[b-4a8g50966y] {
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 1px dashed #e2e8f0;
}

.goal-preview-bar[b-4a8g50966y] {
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
}

.goal-preview-fill[b-4a8g50966y] {
    height: 100%;
    background: linear-gradient(90deg, #c05621, #d97706);
    border-radius: 4px;
    transition: width 0.3s;
}

.goal-preview-text[b-4a8g50966y] {
    display: block;
    font-size: 0.75rem;
    color: #64748b;
    margin-top: 0.5rem;
    text-align: center;
}

/* Campaign Stats Preview */
.campaign-stats-preview[b-4a8g50966y] {
    display: flex;
    gap: 1rem;
    background: linear-gradient(135deg, #1a365d, #2d4a7c);
    border-radius: 14px;
    padding: 1.25rem;
}

.campaign-stats-preview .stat-item[b-4a8g50966y] {
    flex: 1;
    text-align: center;
}

.campaign-stats-preview .stat-value[b-4a8g50966y] {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

.campaign-stats-preview .stat-label[b-4a8g50966y] {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-error[b-4a8g50966y] {
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    color: #dc2626;
    padding: 0.875rem 1.25rem;
    border-radius: 10px;
    font-size: 0.9rem;
    margin: 1rem 0 0;
    border: 1px solid #fecaca;
}

.warning-box[b-4a8g50966y] {
    background: #fffbeb;
    color: #b45309;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Validation */
.validation-message[b-4a8g50966y] {
    color: #dc2626;
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

/* Responsive */
@media (max-width: 768px) {
    .form-grid[b-4a8g50966y] {
        grid-template-columns: 1fr;
    }
    
    .dialog-campaign[b-4a8g50966y] {
        max-width: 100%;
    }
    
    .dialog-header[b-4a8g50966y] {
        padding: 1.25rem 1.5rem;
    }
    
    .dialog-content[b-4a8g50966y] {
        padding: 1.25rem 1.5rem;
    }
    
    .dialog-actions[b-4a8g50966y] {
        margin: 0 -1.5rem -1.5rem;
        padding: 1rem 1.5rem;
    }
}

@media (max-width: 640px) {
    .form-row[b-4a8g50966y] {
        grid-template-columns: 1fr;
    }
    
    .campaigns-grid[b-4a8g50966y] {
        grid-template-columns: 1fr;
    }
    
    .campaign-stats[b-4a8g50966y] {
        flex-wrap: wrap;
    }
    
    .dialog-icon[b-4a8g50966y] {
        width: 44px;
        height: 44px;
        font-size: 1.5rem;
    }
}

/* ===== Donations Admin Dialog ===== */
.dialog-donations[b-4a8g50966y] {
    max-width: 700px;
}

.empty-donations[b-4a8g50966y] {
    text-align: center;
    padding: 3rem 2rem;
    color: #64748b;
}

.empty-donations .empty-icon[b-4a8g50966y] {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.donations-admin-list[b-4a8g50966y] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-height: 60vh;
    overflow-y: auto;
}

.donation-admin-card[b-4a8g50966y] {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    transition: all 0.2s;
}

.donation-admin-card:hover[b-4a8g50966y] {
    border-color: #cbd5e1;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.donation-admin-card.refunded[b-4a8g50966y] {
    background: #f8fafc;
    opacity: 0.7;
}

.donation-admin-header[b-4a8g50966y] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.donation-admin-info[b-4a8g50966y] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.donation-admin-name[b-4a8g50966y] {
    font-weight: 600;
    color: #1e293b;
    font-size: 1rem;
}

.anonymous-badge[b-4a8g50966y] {
    background: #f1f5f9;
    color: #64748b;
    padding: 0.125rem 0.5rem;
    border-radius: 4px;
    font-size: 0.875rem;
}

.donation-admin-email[b-4a8g50966y] {
    font-size: 0.8rem;
    color: #64748b;
}

.donation-admin-amount[b-4a8g50966y] {
    font-weight: 700;
    color: #10b981;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.refunded-badge[b-4a8g50966y] {
    background: #fef2f2;
    color: #dc2626;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.125rem 0.375rem;
    border-radius: 4px;
    text-transform: uppercase;
}

.donation-admin-greeting[b-4a8g50966y] {
    font-style: italic;
    color: #475569;
    padding: 0.75rem;
    background: #f8fafc;
    border-radius: 8px;
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

.donation-admin-footer[b-4a8g50966y] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid #f1f5f9;
}

.donation-admin-date[b-4a8g50966y] {
    font-size: 0.8rem;
    color: #94a3b8;
}

.donation-admin-actions[b-4a8g50966y] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.toggle-anonymous[b-4a8g50966y] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.85rem;
    color: #64748b;
}

.toggle-anonymous input[type="checkbox"][b-4a8g50966y] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #1a365d;
}

.toggle-anonymous .toggle-label[b-4a8g50966y] {
    user-select: none;
}

.toggle-anonymous:hover[b-4a8g50966y] {
    color: #1a365d;
}

/* Slug Input Styling */
.fundraising-slug-wrapper[b-4a8g50966y] {
    display: flex;
    flex-direction: column;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
}

.fundraising-slug-prefix[b-4a8g50966y] {
    background: #1a365d;
    color: #94a3b8;
    padding: 0.5rem 0.75rem;
    font-size: 0.7rem;
    white-space: nowrap;
    font-family: monospace;
    border-bottom: 1px solid #e2e8f0;
}

.fundraising-slug-input[b-4a8g50966y] {
    border: none !important;
    border-radius: 0 !important;
    background: white !important;
    font-family: monospace;
    font-size: 0.9rem;
    padding: 0.625rem 0.75rem !important;
}

.fundraising-slug-input:focus[b-4a8g50966y] {
    box-shadow: none !important;
    outline: 2px solid #3b82f6;
    outline-offset: -2px;
}

.help-text code[b-4a8g50966y] {
    background: #e0f2fe;
    color: #0369a1;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.85em;
    font-family: monospace;
}
/* /Components/Pages/FundraisingDonate.razor.rz.scp.css */
/* Donation Page Styles */

.loading-page[b-yl72dc5hsz],
.not-found[b-yl72dc5hsz] {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 100%);
}

.spinner[b-yl72dc5hsz] {
    width: 50px;
    height: 50px;
    border: 4px solid #e2e8f0;
    border-top-color: #3b82f6;
    border-radius: 50%;
    animation: spin-b-yl72dc5hsz 1s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin-b-yl72dc5hsz {
    to { transform: rotate(360deg); }
}

.not-found-icon[b-yl72dc5hsz] {
    font-size: 5rem;
    margin-bottom: 1rem;
}

.not-found h1[b-yl72dc5hsz] {
    color: #1e293b;
    margin: 0 0 0.5rem 0;
}

.not-found p[b-yl72dc5hsz] {
    color: #64748b;
    margin: 0 0 1.5rem 0;
}

/* Donation Page Layout */
.donation-page[b-yl72dc5hsz] {
    min-height: 100vh;
    background: linear-gradient(180deg, #fef7f0 0%, #fff5eb 50%, #fef2e6 100%);
}

.page-header[b-yl72dc5hsz] {
    background: white;
    padding: 1rem 2rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.back-link[b-yl72dc5hsz] {
    color: #64748b;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.back-link:hover[b-yl72dc5hsz] {
    color: #3b82f6;
}

.brand[b-yl72dc5hsz] {
    text-decoration: none;
}

.brand-text[b-yl72dc5hsz] {
    font-size: 1.25rem;
    font-weight: 700;
    color: #d97706;
}

.donation-content[b-yl72dc5hsz] {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* Campaign Info */
.campaign-info[b-yl72dc5hsz] {
    background: white;
    border-radius: 16px;
    padding: 1.5rem 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 1.5rem;
    text-align: center;
}

.campaign-info h1[b-yl72dc5hsz] {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 0.5rem 0;
}

.campaign-info .subtitle[b-yl72dc5hsz] {
    color: #64748b;
    margin: 0;
}

.greeting-preview[b-yl72dc5hsz] {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    background: #fef3c7;
    border-radius: 8px;
    color: #92400e;
    font-size: 0.9rem;
}

/* Form Container */
.form-container[b-yl72dc5hsz] {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 1rem;
    min-height: 600px;
}

#donation-form[b-yl72dc5hsz] {
    width: 100%;
}

#donation-form iframe[b-yl72dc5hsz] {
    width: 100% !important;
    border: none !important;
    min-height: 600px;
}

/* Security Note */
.security-note[b-yl72dc5hsz] {
    text-align: center;
    color: #64748b;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.lock-icon[b-yl72dc5hsz] {
    font-size: 1rem;
}

/* Footer */
.page-footer[b-yl72dc5hsz] {
    text-align: center;
    padding: 2rem 1rem;
    color: #64748b;
    font-size: 0.9rem;
}

.page-footer a[b-yl72dc5hsz] {
    color: #d97706;
    text-decoration: none;
    font-weight: 600;
}

.page-footer a:hover[b-yl72dc5hsz] {
    text-decoration: underline;
}

/* Buttons */
.btn[b-yl72dc5hsz] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.btn-primary[b-yl72dc5hsz] {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
}

.btn-primary:hover[b-yl72dc5hsz] {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

/* Responsive */
@media (max-width: 640px) {
    .page-header[b-yl72dc5hsz] {
        padding: 1rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .campaign-info[b-yl72dc5hsz] {
        padding: 1.25rem;
    }
    
    .campaign-info h1[b-yl72dc5hsz] {
        font-size: 1.25rem;
    }
    
    .form-container[b-yl72dc5hsz] {
        padding: 1rem;
        border-radius: 12px;
    }
}

/* Site Badge */
.site-badge[b-yl72dc5hsz] {
    text-align: center;
    padding: 0.75rem 1.5rem;
    background: #fef9e7;
    border: 1px solid #f5e6c3;
    border-radius: 20px;
    color: #666;
    font-size: 0.9rem;
    display: inline-block;
    margin: 0 auto;
}
/* /Components/Pages/FundraisingPublic.razor.rz.scp.css */
/* Campaign Public Page Styles */

/* 5 Skoler Brand Colors:
   Primary: #1a365d (dark navy blue)
   Secondary: #2a4365 (slate blue)
   Accent: #c05621 (warm orange/terracotta)
   Success: #276749 (forest green)
*/

/* Thank You Overlay */
.thank-you-overlay[b-9jikr7uiio] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 1rem;
    animation: fadeIn-b-9jikr7uiio 0.3s ease;
}

@keyframes fadeIn-b-9jikr7uiio {
    from { opacity: 0; }
    to { opacity: 1; }
}

.thank-you-banner[b-9jikr7uiio] {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: scaleIn-b-9jikr7uiio 0.3s ease;
}

@keyframes scaleIn-b-9jikr7uiio {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.thank-you-icon[b-9jikr7uiio] {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: pulse-b-9jikr7uiio 2s infinite;
}

@keyframes pulse-b-9jikr7uiio {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.thank-you-banner h2[b-9jikr7uiio] {
    color: #1a365d;
    font-size: 1.8rem;
    margin: 0 0 0.5rem;
}

.thank-you-banner p[b-9jikr7uiio] {
    color: #4a5568;
    margin: 0 0 1.5rem;
}

.loading-page[b-9jikr7uiio],
.not-found[b-9jikr7uiio] {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(180deg, #f7fafc 0%, #edf2f7 100%);
}

.spinner[b-9jikr7uiio] {
    width: 50px;
    height: 50px;
    border: 4px solid #e2e8f0;
    border-top-color: #1a365d;
    border-radius: 50%;
    animation: spin-b-9jikr7uiio 1s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin-b-9jikr7uiio {
    to { transform: rotate(360deg); }
}

.not-found-icon[b-9jikr7uiio] {
    font-size: 5rem;
    margin-bottom: 1rem;
}

.not-found h1[b-9jikr7uiio] {
    color: #1a365d;
    margin: 0 0 0.5rem 0;
}

.not-found p[b-9jikr7uiio] {
    color: #4a5568;
    margin: 0 0 1.5rem 0;
}

/* Campaign Page Layout */
.campaign-page[b-9jikr7uiio] {
    min-height: 100vh;
    background: linear-gradient(180deg, #f7fafc 0%, #edf2f7 50%, #e2e8f0 100%);
}

.page-header[b-9jikr7uiio] {
    background: white;
    padding: 0.75rem 2rem;
    box-shadow: 0 2px 10px rgba(26,54,93,0.1);
    display: flex;
    justify-content: center;
}

.brand[b-9jikr7uiio] {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img[b-9jikr7uiio] {
    height: 40px;
    width: auto;
}

.campaign-content[b-9jikr7uiio] {
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* Campaign Hero */
.campaign-hero[b-9jikr7uiio] {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(26,54,93,0.08);
    margin-bottom: 1.5rem;
    text-align: center;
}

.status-banner[b-9jikr7uiio] {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.status-banner.ended[b-9jikr7uiio] {
    background: #edf2f7;
    color: #4a5568;
}

.status-banner.upcoming[b-9jikr7uiio] {
    background: #fef5e7;
    color: #c05621;
}

.campaign-title[b-9jikr7uiio] {
    font-size: 2rem;
    font-weight: 800;
    color: #1a365d;
    margin: 0 0 0.5rem 0;
    line-height: 1.2;
}

.campaign-subtitle[b-9jikr7uiio] {
    font-size: 1.15rem;
    color: #4a5568;
    margin: 0 0 1rem 0;
}

.campaign-meta[b-9jikr7uiio] {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.meta-item[b-9jikr7uiio] {
    font-size: 0.9rem;
    color: #718096;
}

.campaign-description[b-9jikr7uiio] {
    text-align: left;
    color: #4a5568;
    line-height: 1.6;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
    white-space: pre-wrap;
}

/* Progress Section */
.progress-section[b-9jikr7uiio] {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(26,54,93,0.08);
    margin-bottom: 1.5rem;
    text-align: center;
}

.amount-display[b-9jikr7uiio] {
    margin-bottom: 1rem;
}

.amount-display .amount[b-9jikr7uiio] {
    font-size: 3rem;
    font-weight: 800;
    color: #276749;
    display: block;
}

.amount-display .amount-label[b-9jikr7uiio] {
    font-size: 1rem;
    color: #718096;
}

.goal-info[b-9jikr7uiio] {
    margin-bottom: 1rem;
}

.progress-bar-container[b-9jikr7uiio] {
    height: 10px;
    background: #e2e8f0;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-bar[b-9jikr7uiio] {
    height: 100%;
    background: linear-gradient(90deg, #38a169 0%, #276749 100%);
    border-radius: 5px;
    transition: width 0.5s ease;
}

.goal-text[b-9jikr7uiio] {
    font-size: 0.9rem;
    color: #718096;
}

.donor-count[b-9jikr7uiio] {
    font-size: 0.95rem;
    color: #718096;
    margin-bottom: 1.5rem;
}

.btn-donate[b-9jikr7uiio] {
    background: linear-gradient(135deg, #c05621 0%, #9c4221 100%);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 15px rgba(192, 86, 33, 0.25);
}

.btn-donate:hover[b-9jikr7uiio] {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(192, 86, 33, 0.35);
}

.time-left[b-9jikr7uiio] {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #718096;
}

/* Donations Section */
.donations-section[b-9jikr7uiio] {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(26,54,93,0.08);
    margin-bottom: 1.5rem;
}

.donations-header[b-9jikr7uiio] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.donations-section h2[b-9jikr7uiio] {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a365d;
    margin: 0;
}

.copy-link-btn[b-9jikr7uiio] {
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    color: #4a5568;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.copy-link-btn:hover[b-9jikr7uiio] {
    background: #edf2f7;
    border-color: #cbd5e0;
}

.no-donations[b-9jikr7uiio] {
    text-align: center;
    padding: 2rem;
    color: #718096;
}

.donations-list[b-9jikr7uiio] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.donation-card[b-9jikr7uiio] {
    background: #f7fafc;
    border-radius: 10px;
    padding: 1rem 1.25rem;
    border-left: 3px solid #276749;
}

.donation-header[b-9jikr7uiio] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.donor-name[b-9jikr7uiio] {
    font-weight: 600;
    color: #1a365d;
}

.donation-amount[b-9jikr7uiio] {
    font-weight: 700;
    color: #276749;
}

.donation-greeting[b-9jikr7uiio] {
    color: #4a5568;
    font-style: italic;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.donation-date[b-9jikr7uiio] {
    font-size: 0.8rem;
    color: #a0aec0;
}

/* Footer */
.page-footer[b-9jikr7uiio] {
    text-align: center;
    padding: 2rem 1rem;
    color: #718096;
    font-size: 0.9rem;
}

.page-footer a[b-9jikr7uiio] {
    color: #c05621;
    text-decoration: none;
    font-weight: 600;
}

.page-footer a:hover[b-9jikr7uiio] {
    text-decoration: underline;
}

/* Dialog */
.dialog-overlay[b-9jikr7uiio] {
    position: fixed;
    inset: 0;
    background: rgba(26,54,93,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 1rem;
}

.dialog[b-9jikr7uiio] {
    background: white;
    border-radius: 16px;
    width: 100%;
    max-width: 480px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(26,54,93,0.25);
}

.dialog-header[b-9jikr7uiio] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.dialog-header h2[b-9jikr7uiio] {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    color: #1a365d;
}

.close-btn[b-9jikr7uiio] {
    background: transparent;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    color: #718096;
    width: 32px;
    height: 32px;
    border-radius: 6px;
}

.close-btn:hover[b-9jikr7uiio] {
    background: #f7fafc;
}

.dialog-content[b-9jikr7uiio] {
    padding: 1.5rem;
}

.dialog-actions[b-9jikr7uiio] {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-top: 1px solid #e2e8f0;
    background: #f7fafc;
}

/* Form Elements */
.form-group[b-9jikr7uiio] {
    margin-bottom: 1.25rem;
}

.form-group label[b-9jikr7uiio] {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.form-group textarea[b-9jikr7uiio] {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #cbd5e0;
    border-radius: 8px;
    font-size: 0.95rem;
    resize: vertical;
    font-family: inherit;
}

.form-group textarea:focus[b-9jikr7uiio] {
    outline: none;
    border-color: #1a365d;
    box-shadow: 0 0 0 3px rgba(26,54,93,0.1);
}

.checkbox-label[b-9jikr7uiio] {
    display: flex !important;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"][b-9jikr7uiio] {
    width: 18px;
    height: 18px;
    accent-color: #1a365d;
}

.help-text[b-9jikr7uiio] {
    display: block;
    font-size: 0.8rem;
    color: #718096;
    margin-top: 0.375rem;
}

/* Buttons */
.btn[b-9jikr7uiio] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.btn-primary[b-9jikr7uiio] {
    background: linear-gradient(135deg, #1a365d 0%, #2a4365 100%);
    color: white;
}

.btn-primary:hover[b-9jikr7uiio] {
    background: linear-gradient(135deg, #2a4365 0%, #2c5282 100%);
}

.btn-secondary[b-9jikr7uiio] {
    background: white;
    color: #2d3748;
    border: 1px solid #cbd5e0;
}

.btn-secondary:hover[b-9jikr7uiio] {
    background: #f7fafc;
}

/* Responsive */
@media (max-width: 640px) {
    .campaign-title[b-9jikr7uiio] {
        font-size: 1.5rem;
    }
    
    .amount-display .amount[b-9jikr7uiio] {
        font-size: 2.25rem;
    }
    
    .campaign-hero[b-9jikr7uiio],
    .progress-section[b-9jikr7uiio],
    .donations-section[b-9jikr7uiio] {
        padding: 1.5rem;
        border-radius: 16px;
    }
}
/* /Components/Pages/TwoFactorSetup.razor.rz.scp.css */
.two-factor-page[b-ujc3m92id6] {
    max-width: 600px;
    margin: 0 auto;
    padding: 24px;
}

.page-header[b-ujc3m92id6] {
    margin-bottom: 32px;
}

.page-header h1[b-ujc3m92id6] {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 8px 0;
}

.page-description[b-ujc3m92id6] {
    color: #64748b;
    margin: 0;
}

/* Security Sections */
.security-section[b-ujc3m92id6] {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
}

.section-header[b-ujc3m92id6] {
    margin-bottom: 20px;
}

.section-header.collapsible[b-ujc3m92id6] {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    margin: -24px -24px 0 -24px;
    background: #f8fafc;
    border-radius: 12px 12px 0 0;
    border-bottom: 1px solid #e2e8f0;
    transition: background-color 0.2s ease;
}

.section-header.collapsible:hover[b-ujc3m92id6] {
    background: #f1f5f9;
}

.collapse-icon[b-ujc3m92id6] {
    font-size: 0.85rem;
    color: #64748b;
    transition: transform 0.2s ease;
}

.section-header.collapsible + .success-message[b-ujc3m92id6],
.section-header.collapsible + .error-message[b-ujc3m92id6],
.section-header.collapsible + .password-form[b-ujc3m92id6] {
    margin-top: 20px;
}

.section-header h2[b-ujc3m92id6] {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.section-divider[b-ujc3m92id6] {
    border: none;
    border-top: 1px solid #e2e8f0;
    margin: 32px 0;
}

/* Password Form */
.password-form[b-ujc3m92id6] {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group[b-ujc3m92id6] {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label[b-ujc3m92id6] {
    font-weight: 500;
    color: #374151;
    font-size: 0.9rem;
}

.password-requirements[b-ujc3m92id6] {
    margin-top: 12px;
    color: #64748b;
}

.password-strength[b-ujc3m92id6] {
    font-size: 0.85rem;
    font-weight: 500;
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-block;
    width: fit-content;
}

.strength-weak[b-ujc3m92id6] {
    background-color: #fef2f2;
    color: #dc2626;
}

.strength-medium[b-ujc3m92id6] {
    background-color: #fef3c7;
    color: #d97706;
}

.strength-strong[b-ujc3m92id6] {
    background-color: #dcfce7;
    color: #16a34a;
}

.password-mismatch[b-ujc3m92id6] {
    color: #dc2626;
    font-size: 0.85rem;
}

.success-message[b-ujc3m92id6] {
    background-color: #dcfce7;
    border: 1px solid #86efac;
    color: #16a34a;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 16px;
    font-weight: 500;
}

/* Status Cards */
.status-card[b-ujc3m92id6] {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 24px;
}

.status-card.enabled[b-ujc3m92id6] {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    border: 1px solid #86efac;
}

.status-card.disabled[b-ujc3m92id6] {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 1px solid #fcd34d;
}

.status-card.required[b-ujc3m92id6] {
    background: linear-gradient(135deg, #fef2f2 0%, #fecaca 100%);
    border: 1px solid #f87171;
}

.status-icon[b-ujc3m92id6] {
    font-size: 3rem;
}

.status-info h2[b-ujc3m92id6] {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 4px 0;
}

.status-info p[b-ujc3m92id6] {
    color: #475569;
    margin: 0;
}

.enabled-date[b-ujc3m92id6] {
    font-size: 0.85rem;
    color: #64748b !important;
    margin-top: 8px !important;
}

/* Info Section */
.info-section[b-ujc3m92id6] {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
}

.info-section h3[b-ujc3m92id6] {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 16px 0;
}

.info-section ol[b-ujc3m92id6] {
    margin: 0 0 20px 0;
    padding-left: 24px;
    color: #475569;
}

.info-section ol li[b-ujc3m92id6] {
    margin-bottom: 8px;
}

.app-suggestions[b-ujc3m92id6] {
    background: #f8fafc;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.app-suggestions h4[b-ujc3m92id6] {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 8px 0;
}

.app-suggestions ul[b-ujc3m92id6] {
    margin: 0;
    padding-left: 20px;
    color: #64748b;
    font-size: 0.9rem;
}

.app-suggestions ul li[b-ujc3m92id6] {
    margin-bottom: 4px;
}

/* Setup Section */
.setup-section[b-ujc3m92id6] {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
}

.setup-step[b-ujc3m92id6] {
    margin-bottom: 32px;
}

.setup-step:last-child[b-ujc3m92id6] {
    margin-bottom: 0;
}

.setup-step h3[b-ujc3m92id6] {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 8px 0;
}

.setup-step p[b-ujc3m92id6] {
    color: #64748b;
    margin: 0 0 16px 0;
}

.qr-code[b-ujc3m92id6] {
    display: block;
    margin: 0 auto 16px auto;
    border-radius: 8px;
    border: 2px solid #e2e8f0;
}

.manual-entry[b-ujc3m92id6] {
    margin-top: 12px;
    font-size: 0.9rem;
    color: #64748b;
}

.manual-entry summary[b-ujc3m92id6] {
    cursor: pointer;
    color: #3b82f6;
}

.secret-code[b-ujc3m92id6] {
    display: block;
    margin-top: 8px;
    padding: 12px;
    background: #f1f5f9;
    border-radius: 6px;
    font-family: monospace;
    font-size: 0.95rem;
    word-break: break-all;
    user-select: all;
}

.code-input[b-ujc3m92id6] {
    width: 180px;
    font-family: monospace;
    font-size: 1.5rem;
    text-align: center;
    letter-spacing: 8px;
    padding: 12px 16px;
    margin-bottom: 16px;
}

/* Backup Codes Section */
.backup-codes-section[b-ujc3m92id6] {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
}

.backup-codes-section h3[b-ujc3m92id6] {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 12px 0;
}

.backup-codes-section p[b-ujc3m92id6] {
    color: #475569;
    margin: 0 0 12px 0;
}

.backup-codes-display[b-ujc3m92id6] {
    background: #fffbeb;
    border: 1px solid #fcd34d;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
}

.backup-codes-display h3[b-ujc3m92id6] {
    font-size: 1.1rem;
    font-weight: 600;
    color: #92400e;
    margin: 0 0 8px 0;
}

.codes-grid[b-ujc3m92id6] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin: 16px 0;
}

.code[b-ujc3m92id6] {
    font-family: monospace;
    font-size: 1rem;
    padding: 8px 12px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    text-align: center;
    user-select: all;
}

/* Danger Zone */
.danger-zone[b-ujc3m92id6] {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 12px;
    padding: 24px;
}

.danger-zone h3[b-ujc3m92id6] {
    font-size: 1.1rem;
    font-weight: 600;
    color: #991b1b;
    margin: 0 0 8px 0;
}

.danger-zone p[b-ujc3m92id6] {
    color: #7f1d1d;
    margin: 0 0 16px 0;
}

.confirm-disable[b-ujc3m92id6] {
    margin-top: 16px;
}

.confirm-disable .form-input[b-ujc3m92id6] {
    width: 100%;
    max-width: 300px;
    margin-bottom: 12px;
}

.confirm-buttons[b-ujc3m92id6] {
    display: flex;
    gap: 12px;
}

/* Form Inputs */
.form-input[b-ujc3m92id6] {
    padding: 10px 14px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.form-input:focus[b-ujc3m92id6] {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Buttons */
.btn[b-ujc3m92id6] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.btn:disabled[b-ujc3m92id6] {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-primary[b-ujc3m92id6] {
    background: #3b82f6;
    color: white;
}

.btn-primary:hover:not(:disabled)[b-ujc3m92id6] {
    background: #2563eb;
}

.btn-secondary[b-ujc3m92id6] {
    background: #f1f5f9;
    color: #475569;
    border: 1px solid #e2e8f0;
}

.btn-secondary:hover:not(:disabled)[b-ujc3m92id6] {
    background: #e2e8f0;
}

.btn-danger[b-ujc3m92id6] {
    background: #dc2626;
    color: white;
}

.btn-danger:hover:not(:disabled)[b-ujc3m92id6] {
    background: #b91c1c;
}

/* Messages */
.warning[b-ujc3m92id6] {
    color: #92400e;
    background: #fffbeb;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.9rem;
}

.error[b-ujc3m92id6] {
    color: #dc2626;
    font-size: 0.9rem;
}

.error-message[b-ujc3m92id6] {
    background: #fef2f2;
    color: #dc2626;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 16px;
}

/* Modal */
.modal-overlay[b-ujc3m92id6] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-content[b-ujc3m92id6] {
    background: white;
    border-radius: 16px;
    padding: 32px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalSlideIn-b-ujc3m92id6 0.3s ease;
}

@keyframes modalSlideIn-b-ujc3m92id6 {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.backup-codes-modal h2[b-ujc3m92id6] {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 12px 0;
}

.backup-codes-modal > p[b-ujc3m92id6] {
    color: #475569;
    margin: 0 0 12px 0;
}

.modal-actions[b-ujc3m92id6] {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.loading[b-ujc3m92id6] {
    text-align: center;
    padding: 48px;
    color: #64748b;
}

/* Trusted Devices Section */
.trusted-devices-section[b-ujc3m92id6] {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
}

.trusted-devices-section h3[b-ujc3m92id6] {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 8px 0;
}

.trusted-devices-section > p[b-ujc3m92id6] {
    color: #64748b;
    margin: 0 0 20px 0;
    font-size: 0.9rem;
}

.trusted-devices-list[b-ujc3m92id6] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.trusted-device-item[b-ujc3m92id6] {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.trusted-device-item.expired[b-ujc3m92id6] {
    opacity: 0.6;
    background: #fef2f2;
    border-color: #fecaca;
}

.device-icon[b-ujc3m92id6] {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.device-info[b-ujc3m92id6] {
    flex: 1;
    min-width: 0;
}

.device-name[b-ujc3m92id6] {
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 4px;
}

.device-details[b-ujc3m92id6] {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 4px;
}

.device-meta[b-ujc3m92id6] {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.8rem;
    color: #94a3b8;
}

.expired-badge[b-ujc3m92id6] {
    color: #dc2626;
    font-weight: 500;
}

.device-actions[b-ujc3m92id6] {
    flex-shrink: 0;
}

.device-actions .btn-sm[b-ujc3m92id6] {
    padding: 6px 10px;
    font-size: 0.85rem;
    border-radius: 6px;
    border: none;
    cursor: pointer;
}

.device-actions .btn-danger[b-ujc3m92id6] {
    background: #fee2e2;
    color: #dc2626;
}

.device-actions .btn-danger:hover[b-ujc3m92id6] {
    background: #fecaca;
}

.revoke-all-section[b-ujc3m92id6] {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #e2e8f0;
}
/* /Components/Shared/InactivityTracker.razor.rz.scp.css */
/* Inactivity Tracker Styles */

.inactivity-overlay[b-44wbhcxinu] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn-b-44wbhcxinu 0.2s ease-out;
}

@keyframes fadeIn-b-44wbhcxinu {
    from { opacity: 0; }
    to { opacity: 1; }
}

.inactivity-dialog[b-44wbhcxinu] {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp-b-44wbhcxinu 0.3s ease-out;
}

@keyframes slideUp-b-44wbhcxinu {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.inactivity-icon[b-44wbhcxinu] {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: pulse-b-44wbhcxinu 1s infinite;
}

@keyframes pulse-b-44wbhcxinu {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.inactivity-dialog h3[b-44wbhcxinu] {
    color: #1e293b;
    font-size: 1.5rem;
    margin: 0 0 1rem 0;
    font-weight: 600;
}

.inactivity-dialog p[b-44wbhcxinu] {
    color: #64748b;
    margin: 0 0 1.5rem 0;
    font-size: 1rem;
    line-height: 1.5;
}

.inactivity-dialog strong[b-44wbhcxinu] {
    color: #dc2626;
    font-weight: 700;
    font-size: 1.1rem;
}

.inactivity-actions[b-44wbhcxinu] {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.inactivity-actions .btn[b-44wbhcxinu] {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

.inactivity-actions .btn-primary[b-44wbhcxinu] {
    background: linear-gradient(135deg, #0f766e, #14b8a6);
    color: white;
}

.inactivity-actions .btn-primary:hover[b-44wbhcxinu] {
    background: linear-gradient(135deg, #0d6560, #0f9488);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(15, 118, 110, 0.3);
}

.inactivity-actions .btn-secondary[b-44wbhcxinu] {
    background: #f1f5f9;
    color: #475569;
}

.inactivity-actions .btn-secondary:hover[b-44wbhcxinu] {
    background: #e2e8f0;
}
