/* /Components/Application/ApplicationTable.razor.rz.scp.css */
.eligibility-btn[b-f6eonk7plu] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: none;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-width: 140px;
    justify-content: flex-start;
}

    .eligibility-btn[b-f6eonk7plu]::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
        transition: left 0.5s;
    }

    .eligibility-btn:hover[b-f6eonk7plu]::before {
        left: 100%;
    }

.eligibility-btn-pending[b-f6eonk7plu] {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(108, 117, 125, 0.3);
}

    .eligibility-btn-pending:hover[b-f6eonk7plu] {
        transform: translateY(-2px);
        box-shadow: 0 4px 16px rgba(108, 117, 125, 0.4);
    }

.eligibility-btn-success[b-f6eonk7plu] {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
}

    .eligibility-btn-success:hover[b-f6eonk7plu] {
        transform: translateY(-2px);
        box-shadow: 0 4px 16px rgba(40, 167, 69, 0.4);
    }

.eligibility-btn-warning[b-f6eonk7plu] {
    background: linear-gradient(135deg, #ffc107 0%, #fd7e14 100%);
    color: #212529;
    box-shadow: 0 2px 8px rgba(255, 193, 7, 0.3);
}

    .eligibility-btn-warning:hover[b-f6eonk7plu] {
        transform: translateY(-2px);
        box-shadow: 0 4px 16px rgba(255, 193, 7, 0.4);
    }

.eligibility-btn-danger[b-f6eonk7plu] {
    background: linear-gradient(135deg, #dc3545 0%, #e74c3c 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.3);
}

    .eligibility-btn-danger:hover[b-f6eonk7plu] {
        transform: translateY(-2px);
        box-shadow: 0 4px 16px rgba(220, 53, 69, 0.4);
    }

.eligibility-status-indicator[b-f6eonk7plu] {
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
}

.eligibility-badge[b-f6eonk7plu] {
    background: rgba(255, 255, 255, 0.2);
    color: inherit;
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 700;
    min-width: 18px;
    text-align: center;
}

.eligibility-details[b-f6eonk7plu] {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1px;
}

.eligibility-status[b-f6eonk7plu] {
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
}

.eligibility-subtext[b-f6eonk7plu] {
    font-size: 10px;
    opacity: 0.8;
    line-height: 1;
}

.eligibility-spinner[b-f6eonk7plu] {
    display: flex;
    align-items: center;
    justify-content: center;
}

.eligibility-text[b-f6eonk7plu] {
    font-size: 12px;
    font-weight: 600;
}

.eligibility-icon[b-f6eonk7plu] {
    font-size: 14px;
}

.eligibility-btn:disabled[b-f6eonk7plu] {
    cursor: not-allowed;
    opacity: 0.7;
}

    .eligibility-btn:disabled:hover[b-f6eonk7plu] {
        transform: none;
        box-shadow: 0 2px 8px rgba(108, 117, 125, 0.3);
    }

@@keyframes pulse {
    0%[b-f6eonk7plu], 100%[b-f6eonk7plu] {
        opacity: 1;
    }

    50%[b-f6eonk7plu] {
        opacity: 0.7;
    }
}

.eligibility-btn-pending:disabled[b-f6eonk7plu] {
    animation: pulse 2s infinite;
}
/* /Components/Application/FlagsModal.razor.rz.scp.css */
.flags-modal-backdrop[b-s3ay0o3hjm] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeIn-b-s3ay0o3hjm 0.3s ease-out;
}

.flags-modal-container[b-s3ay0o3hjm] {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    overflow: hidden;
    animation: slideUp-b-s3ay0o3hjm 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.flags-modal-header[b-s3ay0o3hjm] {
    background: var(--dark);
    color: white;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
}

    .flags-modal-header[b-s3ay0o3hjm]::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
    }

.flags-header-content[b-s3ay0o3hjm] {
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 1;
}

.flags-header-icon[b-s3ay0o3hjm] {
    position: relative;
}

.rotating-shield[b-s3ay0o3hjm] {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .rotating-shield i[b-s3ay0o3hjm] {
        font-size: 24px;
    }

.flags-header-text h3[b-s3ay0o3hjm] {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
}

.flags-header-text p[b-s3ay0o3hjm] {
    margin: 4px 0 0 0;
    opacity: 0.9;
    font-size: 14px;
}

.application-ref[b-s3ay0o3hjm] {
    font-weight: 600;
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 8px;
    border-radius: 12px;
}

.flags-close-btn[b-s3ay0o3hjm] {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 1;
}

    .flags-close-btn:hover[b-s3ay0o3hjm] {
        background: rgba(255, 255, 255, 0.3);
        transform: rotate(90deg);
    }

.flags-modal-body[b-s3ay0o3hjm] {
    padding: 24px;
    max-height: 60vh;
    overflow-y: auto;
}

.flags-loading-container[b-s3ay0o3hjm] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px;
}

.flags-loading-spinner[b-s3ay0o3hjm] {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 24px;
}

.spinner-ring[b-s3ay0o3hjm] {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top: 3px solid var(--dark);
    border-radius: 50%;
    animation: spin-b-s3ay0o3hjm 1s linear infinite;
}

    .spinner-ring:nth-child(2)[b-s3ay0o3hjm] {
        width: 60px;
        height: 60px;
        top: 10px;
        left: 10px;
        border-top-color: #7c3aed;
        animation-duration: 1.5s;
        animation-direction: reverse;
    }

    .spinner-ring:nth-child(3)[b-s3ay0o3hjm] {
        width: 40px;
        height: 40px;
        top: 20px;
        left: 20px;
        border-top-color: var(--primary);
        animation-duration: 2s;
    }

.loading-text[b-s3ay0o3hjm] {
    color: #6b7280;
    font-size: 16px;
    font-weight: 500;
}

.flags-summary-cards[b-s3ay0o3hjm] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

.summary-card[b-s3ay0o3hjm] {
    background: white;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

    .summary-card[b-s3ay0o3hjm]::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
    }

.summary-card-success[b-s3ay0o3hjm]::before {
    background: linear-gradient(90deg, #10b981, #059669);
}

.summary-card-warning[b-s3ay0o3hjm]::before {
    background: linear-gradient(90deg, #f59e0b, #d97706);
}

.summary-card-danger[b-s3ay0o3hjm]::before {
    background: linear-gradient(90deg, #ef4444, #dc2626);
}

.summary-card-info[b-s3ay0o3hjm]::before {
    background: linear-gradient(90deg, #3b82f6, #2563eb);
}

.summary-card:hover[b-s3ay0o3hjm] {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.summary-card-icon[b-s3ay0o3hjm] {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.summary-card-success .summary-card-icon[b-s3ay0o3hjm] {
    background: #dcfdf7;
    color: #059669;
}

.summary-card-warning .summary-card-icon[b-s3ay0o3hjm] {
    background: #fef3c7;
    color: #d97706;
}

.summary-card-danger .summary-card-icon[b-s3ay0o3hjm] {
    background: #fee2e2;
    color: #dc2626;
}

.summary-card-info .summary-card-icon[b-s3ay0o3hjm] {
    background: #dbeafe;
    color: #2563eb;
}

.summary-card-content[b-s3ay0o3hjm] {
    flex: 1;
}

.summary-card-number[b-s3ay0o3hjm] {
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 4px;
}

.summary-card-success .summary-card-number[b-s3ay0o3hjm] {
    color: #059669;
}

.summary-card-warning .summary-card-number[b-s3ay0o3hjm] {
    color: #d97706;
}

.summary-card-danger .summary-card-number[b-s3ay0o3hjm] {
    color: #dc2626;
}

.summary-card-info .summary-card-number[b-s3ay0o3hjm] {
    color: #2563eb;
}

.summary-card-label[b-s3ay0o3hjm] {
    color: #6b7280;
    font-size: 14px;
    font-weight: 500;
}

.flags-detailed-results[b-s3ay0o3hjm] {
    margin-top: 32px;
}

.results-header[b-s3ay0o3hjm] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

    .results-header h4[b-s3ay0o3hjm] {
        margin: 0;
        font-size: 20px;
        font-weight: 600;
        color: #1f2937;
    }

.results-filter[b-s3ay0o3hjm] {
    display: flex;
    gap: 8px;
}

.filter-btn[b-s3ay0o3hjm] {
    padding: 8px 16px;
    border: 2px solid #e5e7eb;
    background: white;
    border-radius: 20px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s;
    color: #6b7280;
}

    .filter-btn:hover[b-s3ay0o3hjm] {
        border-color: #4f46e5;
        color: #4f46e5;
    }

    .filter-btn.active[b-s3ay0o3hjm] {
        background: #4f46e5;
        border-color: #4f46e5;
        color: white;
    }

.results-timeline[b-s3ay0o3hjm] {
    position: relative;
    padding-left: 32px;
}

    .results-timeline[b-s3ay0o3hjm]::before {
        content: '';
        position: absolute;
        left: 16px;
        top: 0;
        bottom: 0;
        width: 2px;
        background: linear-gradient(180deg, #e5e7eb 0%, #d1d5db 100%);
    }

.timeline-item[b-s3ay0o3hjm] {
    position: relative;
    margin-bottom: 24px;
    cursor: pointer;
}

.timeline-marker[b-s3ay0o3hjm] {
    position: absolute;
    left: -24px;
    top: 8px;
    z-index: 1;
}

.timeline-icon[b-s3ay0o3hjm] {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border: 3px solid white;
    box-shadow: 0 0 0 2px;
}

.timeline-item.success .timeline-icon[b-s3ay0o3hjm] {
    background: #10b981;
    color: white;
    box-shadow: 0 0 0 2px #10b981;
}

.timeline-item.warning .timeline-icon[b-s3ay0o3hjm] {
    background: #f59e0b;
    color: white;
    box-shadow: 0 0 0 2px #f59e0b;
}

.timeline-item.danger .timeline-icon[b-s3ay0o3hjm] {
    background: #ef4444;
    color: white;
    box-shadow: 0 0 0 2px #ef4444;
}

.timeline-content[b-s3ay0o3hjm] {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.timeline-item:hover .timeline-content[b-s3ay0o3hjm] {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.timeline-header[b-s3ay0o3hjm] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.timeline-title[b-s3ay0o3hjm] {
    display: flex;
    align-items: center;
    gap: 12px;
}

    .timeline-title h5[b-s3ay0o3hjm] {
        margin: 0;
        font-size: 16px;
        font-weight: 600;
        color: #1f2937;
    }

.timeline-status[b-s3ay0o3hjm] {
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
}

.status-success[b-s3ay0o3hjm] {
    background: #dcfdf7;
    color: #059669;
}

.status-warning[b-s3ay0o3hjm] {
    background: #fef3c7;
    color: #d97706;
}

.status-danger[b-s3ay0o3hjm] {
    background: #fee2e2;
    color: #dc2626;
}

.timeline-expand[b-s3ay0o3hjm] {
    color: #9ca3af;
    transition: transform 0.3s;
}

.timeline-summary[b-s3ay0o3hjm] {
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 16px;
}

.timeline-details[b-s3ay0o3hjm] {
    border-top: 1px solid #e5e7eb;
    padding-top: 16px;
    margin-top: 16px;
    animation: slideDown-b-s3ay0o3hjm 0.3s ease-out;
}

.detail-section[b-s3ay0o3hjm] {
    margin-bottom: 20px;
}

    .detail-section h6[b-s3ay0o3hjm] {
        margin: 0 0 12px 0;
        font-size: 14px;
        font-weight: 600;
        color: #374151;
        display: flex;
        align-items: center;
        gap: 8px;
    }

.detail-text[b-s3ay0o3hjm] {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.detail-grid[b-s3ay0o3hjm] {
    display: grid;
    gap: 12px;
}

.detail-item[b-s3ay0o3hjm] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f3f4f6;
}

.detail-label[b-s3ay0o3hjm] {
    font-size: 13px;
    color: #6b7280;
    font-weight: 500;
}

.detail-value[b-s3ay0o3hjm] {
    font-size: 13px;
    color: #1f2937;
    font-weight: 500;
}

.failure-section[b-s3ay0o3hjm] {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    padding: 16px;
}

.action-suggestions[b-s3ay0o3hjm] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.suggestion-item[b-s3ay0o3hjm] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #7f1d1d;
}

    .suggestion-item i[b-s3ay0o3hjm] {
        color: #dc2626;
        font-size: 12px;
    }

.flags-empty-state[b-s3ay0o3hjm] {
    text-align: center;
    padding: 60px 20px;
    color: #6b7280;
}

.empty-state-icon[b-s3ay0o3hjm] {
    font-size: 48px;
    margin-bottom: 16px;
    color: #d1d5db;
}

.flags-empty-state h4[b-s3ay0o3hjm] {
    margin: 0 0 8px 0;
    color: #374151;
}

.flags-modal-footer[b-s3ay0o3hjm] {
    padding: 20px 24px;
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
    display: flex;
    justify-content: flex-end;
}

.footer-actions[b-s3ay0o3hjm] {
    display: flex;
    gap: 12px;
}

.btn[b-s3ay0o3hjm] {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-secondary[b-s3ay0o3hjm] {
    background: #f3f4f6;
    color: #374151;
}

    .btn-secondary:hover[b-s3ay0o3hjm] {
        background: #e5e7eb;
    }

.btn-primary[b-s3ay0o3hjm] {
    background: var(--dark);
    color: white;
}

    .btn-primary:hover[b-s3ay0o3hjm] {
        transform: translateY(-1px);
        box-shadow: 0 4px 12px var(--dark);
    }

.btn:disabled[b-s3ay0o3hjm] {
    opacity: 0.6;
    cursor: not-allowed;
}

@keyframes fadeIn-b-s3ay0o3hjm {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp-b-s3ay0o3hjm {
    from {
        opacity: 0;
        transform: translateY(60px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown-b-s3ay0o3hjm {
    from {
        opacity: 0;
        max-height: 0;
    }

    to {
        opacity: 1;
        max-height: 500px;
    }
}

@keyframes shimmer-b-s3ay0o3hjm {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

@keyframes rotate-b-s3ay0o3hjm {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes spin-b-s3ay0o3hjm {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}
/* /Components/Navigation/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-ys8nir91md] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-ys8nir91md] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-ys8nir91md] {
    font-size: 1.1rem;
}

.bi[b-ys8nir91md] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-ys8nir91md] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-ys8nir91md] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-ys8nir91md] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.nav-item[b-ys8nir91md] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-ys8nir91md] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-ys8nir91md] {
        padding-bottom: 1rem;
    }

    .nav-item[b-ys8nir91md]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

.nav-item[b-ys8nir91md]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-ys8nir91md]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

@media (min-width: 641px) {
    .navbar-toggler[b-ys8nir91md] {
        display: none;
    }

    .collapse[b-ys8nir91md] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }
    
    .nav-scrollable[b-ys8nir91md] {
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Components/Status/BulkUpdateModal.razor.rz.scp.css */
:root[b-eazz37ajl6] {
    --primary-gradient: linear-gradient(135deg, #0066ff 0%, #2e2150 100%);
    --success-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --warning-gradient: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    --danger-gradient: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --dark-glass: rgba(0, 0, 0, 0.1);
    --shadow-primary: 0 8px 32px rgba(102, 126, 234, 0.3);
    --shadow-glass: 0 8px 32px rgba(255, 255, 255, 0.1);
    --shadow-dark: 0 8px 32px rgba(0, 0, 0, 0.3);
    --border-radius: 16px;
    --border-radius-lg: 24px;
    --animation-speed: 0.3s;
    --hover-scale: 1.02;
}
.modal-xl[b-eazz37ajl6] {
    max-width: 1200px;
}

.tab-navigation[b-eazz37ajl6] {
    border-bottom: 1px solid #e9ecef;
    background: #f8f9fa;
    padding: 0;
    margin: 0;
}

.tab-nav-container[b-eazz37ajl6] {
    display: flex;
    padding: 0 24px;
}

.tab-nav-item[b-eazz37ajl6] {
    background: none;
    border: none;
    padding: 16px 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6c757d;
    font-weight: 500;
    border-bottom: 3px solid transparent;
    transition: all 0.2s ease;
    position: relative;
}

    .tab-nav-item:hover[b-eazz37ajl6] {
        color: #495057;
        background: rgba(0, 123, 255, 0.05);
    }

    .tab-nav-item.active[b-eazz37ajl6] {
        color: #ff6b35;
        border-bottom-color: #ff6b35;
        background: white;
    }

    .tab-nav-item i[b-eazz37ajl6] {
        font-size: 14px;
    }

.tab-content-container[b-eazz37ajl6] {
    padding: 0;
    min-height: 400px;
}



.results-embedded-container[b-eazz37ajl6] {
    display: flex;
    flex-direction: column;
    height: 70vh;
    max-height: 600px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.results-header-section[b-eazz37ajl6] {
    background: linear-gradient(135deg, #2e2150 0%, #3d2a5f 50%, #4a3170 100%);
    color: white;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    border-bottom: 3px solid #ff6600;
}

.results-header-info[b-eazz37ajl6] {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.results-status-icon[b-eazz37ajl6] {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    position: relative;
    transition: all 0.3s ease;
}

    .results-status-icon.success[b-eazz37ajl6] {
        background: linear-gradient(135deg, #ff6600 0%, #ff8533 100%);
        color: white;
        box-shadow: 0 8px 25px rgba(255, 102, 0, 0.4);
        animation: results-pulse-b-eazz37ajl6 2s ease-in-out infinite;
    }

    .results-status-icon.info[b-eazz37ajl6] {
        background: rgba(255, 255, 255, 0.15);
        color: #ff6600;
        border: 2px solid rgba(255, 102, 0, 0.3);
    }

@keyframes results-pulse-b-eazz37ajl6 {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.results-header-text h3[b-eazz37ajl6] {
    margin: 0 0 4px 0;
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(45deg, #ffffff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.results-header-text p[b-eazz37ajl6] {
    margin: 0;
    opacity: 0.9;
    font-size: 14px;
    font-weight: 400;
}

.results-btn-back[b-eazz37ajl6] {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

    .results-btn-back:hover[b-eazz37ajl6] {
        background: rgba(255, 102, 0, 0.2);
        color: #ff6600;
        border-color: rgba(255, 102, 0, 0.3);
        transform: translateX(-2px);
    }

.results-body-section[b-eazz37ajl6] {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.results-empty-state[b-eazz37ajl6] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.6) 100%);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.results-empty-animation[b-eazz37ajl6] {
    position: relative;
    margin-bottom: 32px;
}

.results-empty-icon[b-eazz37ajl6] {
    font-size: 64px;
    color: #cbd5e1;
    animation: results-float-b-eazz37ajl6 3s ease-in-out infinite;
}

@keyframes results-float-b-eazz37ajl6 {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.results-empty-particles[b-eazz37ajl6] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    animation: results-float-b-eazz37ajl6 4s ease-in-out infinite reverse;
}

.results-empty-title[b-eazz37ajl6] {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 8px 0;
}

.results-empty-subtitle[b-eazz37ajl6] {
    font-size: 16px;
    color: #64748b;
    margin: 0 0 24px 0;
    text-align: center;
}

.results-table-wrapper[b-eazz37ajl6] {
    flex: 1;
    overflow: auto;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
}

.results-bulkupdatestatus-table[b-eazz37ajl6] {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: transparent;
}

.results-table-header[b-eazz37ajl6] {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    backdrop-filter: blur(20px);
}

    .results-table-header th[b-eazz37ajl6] {
        padding: 20px 16px;
        border: none;
        position: sticky;
        top: 0;
        z-index: 10;
        border-bottom: 1px solid var(--glass-border);
    }

.results-header-cell[b-eazz37ajl6] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.results-bulkupdatestatus-row[b-eazz37ajl6] {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(5px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--animation-speed) ease;
    cursor: pointer;
    animation: results-fadeInUp-b-eazz37ajl6 0.6s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes results-fadeInUp-b-eazz37ajl6 {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.results-bulkupdatestatus-row:hover[b-eazz37ajl6] {
    background: rgba(255, 255, 255, 0.8);
    transform: translateX(4px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.results-bulkupdatestatus-row td[b-eazz37ajl6] {
    padding: 20px 16px;
    border: none;
    vertical-align: middle;
}

.results-operation-card[b-eazz37ajl6] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.results-operation-flow[b-eazz37ajl6] {
    display: flex;
    align-items: center;
    gap: 16px;
}

.results-status-pill[b-eazz37ajl6] {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all var(--animation-speed) ease;
}

    .results-status-pill.results-from-status[b-eazz37ajl6] {
        background: #281c4a;
        border-left: 6px solid #ff6600;
        color: #ffffff;
        font-weight: 900;
        font-size: 16px;
        letter-spacing: 1px;
        box-shadow: 0 4px 12px rgba(255, 102, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.8);
        position: relative;
        overflow: hidden;
        text-transform: uppercase;
        border-radius: 12px;
        padding: 15px 20px;
    }

        .results-status-pill.results-from-status[b-eazz37ajl6]::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 102, 0, 0.3), transparent);
            transition: left 0.6s ease;
        }

        .results-status-pill.results-from-status:hover[b-eazz37ajl6]::before {
            left: 100%;
        }

        .results-status-pill.results-from-status[b-eazz37ajl6]::after {
            content: '';
            position: absolute;
            top: 2px;
            left: 2px;
            right: 2px;
            bottom: 2px;
            border: 1px solid rgba(255, 102, 0, 0.2);
            border-radius: 8px;
        }

.results-user-card[b-eazz37ajl6] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--glass-bg);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    transition: all var(--animation-speed) ease;
}

    .results-user-card:hover[b-eazz37ajl6] {
        transform: scale(1.02);
        box-shadow: var(--shadow-glass);
    }

.results-bulkupdatestatus-avatar[b-eazz37ajl6] {
    position: relative;
/*    width: 44px;*/
    height: 44px;
    border-radius: 50%;
    background: var(--primary-gradient);
/*    display: flex;*/
    align-items: center;
    justify-content: center;
    color: black;
    font-weight: 700;
    font-size: 16px;
/*    overflow: hidden;*/
}

.results-avatar-glow[b-eazz37ajl6] {
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: conic-gradient(var(--primary-gradient), transparent, var(--primary-gradient));
    animation: results-rotate-b-eazz37ajl6 3s linear infinite;
    z-index: -1;
}

@keyframes results-rotate-b-eazz37ajl6 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.results-user-initial[b-eazz37ajl6] {
    position: relative;
    z-index: 2;
}

.results-user-name[b-eazz37ajl6] {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 2px;
}

.results-status-container[b-eazz37ajl6] {
    display: flex;
    justify-content: center;
}

.results-bulkupdatestatus-status[b-eazz37ajl6] {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 24px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid;
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.results-status-pulse[b-eazz37ajl6] {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: results-pulse-b-eazz37ajl6 2s infinite;
}

.results-bulkupdatestatus-status.results-completed[b-eazz37ajl6] {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.1) 100%);
    color: #065f46;
    border-color: rgba(16, 185, 129, 0.3);
}

    .results-bulkupdatestatus-status.results-completed .results-status-pulse[b-eazz37ajl6] {
        background: #10b981;
        box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
    }

.results-datetime-card[b-eazz37ajl6] {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 12px;
    background: var(--glass-bg);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
}

.results-date-primary[b-eazz37ajl6] {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
}

.results-date-year[b-eazz37ajl6] {
    font-size: 12px;
    color: #64748b;
    opacity: 0.8;
}

.results-time-badge[b-eazz37ajl6] {
    background: linear-gradient(135deg, #0066ff 0%, #2e2150 100%);
    color: white;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 600;
    font-family: 'Monaco', 'Menlo', monospace;
}

.results-timeline-dot[b-eazz37ajl6] {
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 2px solid white;
}

    .results-timeline-dot.results-timeline-completed[b-eazz37ajl6] {
        background: #10b981;
        box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
    }

.results-assignee-info[b-eazz37ajl6] {
    color: #6c757d;
    font-weight: 500;
    font-size: 14px;
    padding: 8px 16px;
    background: var(--glass-bg);
    border-radius: 8px;
    border: 1px solid var(--glass-border);
    text-align: center;
}

.results-footer-section[b-eazz37ajl6] {
    padding: 24px 32px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-top: 1px solid #e9ecef;
    text-align: center;
    flex-shrink: 0;
}

.results-summary-text[b-eazz37ajl6] {
    color: #2e2150;
    font-weight: 600;
    margin: 0;
    font-size: 16px;
}

@media (max-width: 768px) {
    .results-embedded-container[b-eazz37ajl6] {
        height: 60vh;
    }

    .results-header-section[b-eazz37ajl6] {
        padding: 20px 24px;
    }

    .results-bulkupdatestatus-table th[b-eazz37ajl6],
    .results-bulkupdatestatus-table td[b-eazz37ajl6] {
        padding: 16px 12px;
    }

    .results-status-pill.results-from-status[b-eazz37ajl6] {
        padding: 8px 12px;
        font-size: 14px;
    }

    .results-bulkupdatestatus-avatar[b-eazz37ajl6] {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}
/* /Components/Status/HistoryTab.razor.rz.scp.css */
:root[b-k3twnt59rd] {
    --primary-gradient-statusupdatehistorytab: linear-gradient(135deg, #0066ff 0%, var(--dark) 100%);
    --success-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --warning-gradient: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    --danger-gradient: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --dark-glass: rgba(0, 0, 0, 0.1);
    --shadow-primary: 0 8px 32px rgba(102, 126, 234, 0.3);
    --shadow-glass: 0 8px 32px rgba(255, 255, 255, 0.1);
    --shadow-dark: 0 8px 32px rgba(0, 0, 0, 0.3);
    --border-radius: 16px;
    --border-radius-lg: 24px;
    --animation-speed: 0.3s;
    --hover-scale: 1.02;
}

.history-tab[b-k3twnt59rd] {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%)!important;
    position: relative;
    overflow: hidden;
}

.history-header[b-k3twnt59rd] {
    position: relative;
    padding: 0;
    border: none;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    overflow: hidden;
}

.header-background-glow[b-k3twnt59rd] {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    animation: rotate-b-k3twnt59rd 20s linear infinite;
}

@keyframes rotate-b-k3twnt59rd {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.header-content[b-k3twnt59rd] {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}

.title-container[b-k3twnt59rd] {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.pulse-dot[b-k3twnt59rd] {
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #0066ff 0%, var(--dark) 100%);
    border-radius: 50%;
    animation: pulse-b-k3twnt59rd 2s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.6);
}

@keyframes pulse-b-k3twnt59rd {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
}

.history-title[b-k3twnt59rd] {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}



.title-accent[b-k3twnt59rd] {
    color: #64748b;
    font-weight: 400;
}

.history-subtitle[b-k3twnt59rd] {
    margin: 0 0 20px 0;
    color: #64748b;
    font-size: 16px;
    opacity: 0.8;
}

.stats-preview[b-k3twnt59rd] {
    display: flex;
    gap: 24px;
    margin-top: 16px;
}

.stat-item[b-k3twnt59rd] {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    transition: all var(--animation-speed) ease;
}

.tab-nav-item.active[b-k3twnt59rd] {
    color: #ff6b35 !important;
    border-bottom-color: #ff6b35 !important;
    background: white !important;
}

    .stat-item:hover[b-k3twnt59rd] {
        transform: translateY(-2px);
        box-shadow: var(--shadow-glass);
    }



.stat-label[b-k3twnt59rd] {
    font-size: 12px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

.btn-bulkupdatestatus[b-k3twnt59rd] {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    color: #1e293b;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all var(--animation-speed) ease;
    overflow: hidden;
}

    .btn-bulkupdatestatus:hover[b-k3twnt59rd] {
        transform: translateY(-2px);
        box-shadow: var(--shadow-primary);
        border-color: rgba(102, 126, 234, 0.3);
    }

.btn-glow[b-k3twnt59rd] {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.btn-bulkupdatestatus:hover .btn-glow[b-k3twnt59rd] {
    left: 100%;
}

.history-filters[b-k3twnt59rd] {
    padding: 0;
    background: transparent;
    border: none;
}

.filter-container[b-k3twnt59rd] {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px 32px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
}

.filter-group.morphic[b-k3twnt59rd] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-label[b-k3twnt59rd] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.select-wrapper[b-k3twnt59rd] {
    position: relative;
}

.bulkupdatestatus-select[b-k3twnt59rd] {
    appearance: none;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #1e293b;
    cursor: pointer;
    transition: all var(--animation-speed) ease;
    min-width: 140px;
}

    .bulkupdatestatus-select:focus[b-k3twnt59rd] {
        outline: none;
        border-color: rgba(102, 126, 234, 0.5);
        box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    }

.select-accent[b-k3twnt59rd] {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #0066ff 0%, var(--dark) 100%);
    transition: width var(--animation-speed) ease;
}

.bulkupdatestatus-select:focus + .select-accent[b-k3twnt59rd] {
    width: 100%;
}

.search-container[b-k3twnt59rd] {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.search-wrapper[b-k3twnt59rd] {
    position: relative;
    max-width: 300px;
    width: 100%;
}

.search-input[b-k3twnt59rd] {
    width: 100%;
    padding: 12px 16px 12px 48px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    font-size: 14px;
    color: #1e293b;
    transition: all var(--animation-speed) ease;
}

    .search-input:focus[b-k3twnt59rd] {
        outline: none;
        border-color: rgba(102, 126, 234, 0.5);
        box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    }

.search-icon[b-k3twnt59rd] {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
    z-index: 2;
}

.search-glow[b-k3twnt59rd] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 24px;
    background: linear-gradient(135deg, #0066ff 0%, var(--dark) 100%);
    opacity: 0;
    transition: opacity var(--animation-speed) ease;
    z-index: -1;
}

.search-input:focus + .search-glow[b-k3twnt59rd] {
    opacity: 0.1;
}

.history-table-container[b-k3twnt59rd] {
    flex: 1;
    background: transparent;
    padding: 0;
    overflow: hidden;
    max-height: 400px;
    overflow-y: scroll;
}

.table-wrapper[b-k3twnt59rd] {
    height: 100%;
    overflow: auto;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
}

.bulkupdatestatus-table[b-k3twnt59rd] {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: transparent;
}

.table-header[b-k3twnt59rd] {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    backdrop-filter: blur(20px);
}

    .table-header th[b-k3twnt59rd] {
        padding: 20px 16px;
        border: none;
        position: sticky;
        top: 0;
        z-index: 10;
        border-bottom: 1px solid var(--glass-border);
    }

.header-cell[b-k3twnt59rd] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bulkupdatestatus-row[b-k3twnt59rd] {
    background: rgba(255, 255, 255, 0.4) !important;
    backdrop-filter: blur(5px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--animation-speed) ease;
    cursor: pointer;
    animation: fadeInUp-b-k3twnt59rd 0.6s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes fadeInUp-b-k3twnt59rd {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bulkupdatestatus-row:hover[b-k3twnt59rd] {
    background: rgba(255, 255, 255, 0.8);
    transform: translateX(4px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.bulkupdatestatus-row td[b-k3twnt59rd] {
    padding: 20px 16px;
    border: none;
    vertical-align: middle;
}

.datetime-card[b-k3twnt59rd] {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 12px;
    background: var(--glass-bg);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
}

.date-primary[b-k3twnt59rd] {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
}

.date-year[b-k3twnt59rd] {
    font-size: 12px;
    color: #64748b;
    opacity: 0.8;
}

.time-badge[b-k3twnt59rd] {
    background: linear-gradient(135deg, #0066ff 0%, var(--dark) 100%);
    color: white;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 600;
    font-family: 'Monaco', 'Menlo', monospace;
}

.timeline-dot[b-k3twnt59rd] {
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 2px solid white;
}

    .timeline-dot.completed[b-k3twnt59rd] {
        background: #10b981;
        box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
    }

    .timeline-dot.failed[b-k3twnt59rd] {
        background: #ef4444;
        box-shadow: 0 0 10px rgba(239, 68, 68, 0.5);
    }

    .timeline-dot.reverted[b-k3twnt59rd] {
        background: #f59e0b;
        box-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
    }

.operation-card[b-k3twnt59rd] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.operation-flow[b-k3twnt59rd] {
    display: flex;
    align-items: center;
    gap: 16px;
}

.status-pill[b-k3twnt59rd] {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all var(--animation-speed) ease;
}

    .status-pill.from-status[b-k3twnt59rd] {
        background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
        color: #92400e;
        border: 1px solid rgba(146, 64, 14, 0.2);
    }

    .status-pill.to-status[b-k3twnt59rd] {
        background: linear-gradient(135deg, #dbeafe 0%, #93c5fd 100%);
        color: #1d4ed8;
        border: 1px solid rgba(29, 78, 216, 0.2);
    }

.flow-arrow[b-k3twnt59rd] {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    position: relative;
}

.arrow-line[b-k3twnt59rd] {
    width: 24px;
    height: 2px;
    background: linear-gradient(90deg, #64748b 0%, transparent 100%);
    border-radius: 1px;
}

.operation-meta[b-k3twnt59rd] {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.8;
}

.percentage-badge[b-k3twnt59rd] {
    background: linear-gradient(135deg, #0066ff 0%, var(--dark) 100%);
    color: white;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
}

.random-text[b-k3twnt59rd] {
    font-size: 12px;
    color: #64748b;
    font-style: italic;
}

.impact-visualization[b-k3twnt59rd] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px;
}

.impact-circle[b-k3twnt59rd] {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: conic-gradient(linear-gradient(135deg, #0066ff 0%, var(--dark) 100%) 0deg, rgba(102, 126, 234, 0.1) 360deg);
    padding: 4px;
}

    .impact-circle[b-k3twnt59rd]::before {
        content: '';
        position: absolute;
        inset: 4px;
        border-radius: 50%;
        background: white;
    }

.impact-number[b-k3twnt59rd] {
    position: relative;
    z-index: 2;
    font-size: 18px;
    font-weight: 700;
    background: linear-gradient(135deg, #0066ff 0%, var(--dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.impact-total[b-k3twnt59rd] {
    position: relative;
    z-index: 2;
    font-size: 10px;
    color: #64748b;
    margin-top: -4px;
}

.impact-bar[b-k3twnt59rd] {
    width: 80px;
    height: 6px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.impact-fill[b-k3twnt59rd] {
    height: 100%;
    background: linear-gradient(135deg, #0066ff 0%, var(--dark) 100%);
    border-radius: 3px;
    transition: width 1s ease;
    position: relative;
}

    .impact-fill[b-k3twnt59rd]::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
        animation: shimmer-b-k3twnt59rd 2s infinite;
    }

@keyframes shimmer-b-k3twnt59rd {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.impact-percent[b-k3twnt59rd] {
    font-size: 11px;
    color: #64748b;
    font-weight: 600;
}

/* User Card */
.user-card[b-k3twnt59rd] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--glass-bg);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    transition: all var(--animation-speed) ease;
}

    .user-card:hover[b-k3twnt59rd] {
        transform: scale(1.02);
        box-shadow: var(--shadow-glass);
    }

.bulkupdatestatus-avatar[b-k3twnt59rd] {
    display: flex;
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0066ff 0%, var(--dark) 100%);
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 16px;
    overflow: hidden;
}

.avatar-glow[b-k3twnt59rd] {
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: conic-gradient(linear-gradient(135deg, #0066ff 0%, var(--dark) 100%), transparent, linear-gradient(135deg, #0066ff 0%, var(--dark) 100%));
    animation: rotate-b-k3twnt59rd 3s linear infinite;
    z-index: -1;
}

.user-initial[b-k3twnt59rd] {
    position: relative;
    z-index: 2;
}

.user-name[b-k3twnt59rd] {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 2px;
}

.user-role[b-k3twnt59rd] {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #64748b;
}

.status-container[b-k3twnt59rd] {
    display: flex;
    justify-content: center;
}

.bulkupdatestatus-status[b-k3twnt59rd] {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 24px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid;
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.status-pulse[b-k3twnt59rd] {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: pulse-b-k3twnt59rd 2s infinite;
}

.bulkupdatestatus-status.completed[b-k3twnt59rd] {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.1) 100%);
    color: #065f46;
    border-color: rgba(16, 185, 129, 0.3);
}

    .bulkupdatestatus-status.completed .status-pulse[b-k3twnt59rd] {
        background: #10b981;
        box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
    }

.bulkupdatestatus-status.failed[b-k3twnt59rd] {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(220, 38, 38, 0.1) 100%);
    color: #7f1d1d;
    border-color: rgba(239, 68, 68, 0.3);
}

    .bulkupdatestatus-status.failed .status-pulse[b-k3twnt59rd] {
        background: #ef4444;
        box-shadow: 0 0 10px rgba(239, 68, 68, 0.5);
    }

.bulkupdatestatus-status.reverted[b-k3twnt59rd] {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(217, 119, 6, 0.1) 100%);
    color: #78350f;
    border-color: rgba(245, 158, 11, 0.3);
}

    .bulkupdatestatus-status.reverted .status-pulse[b-k3twnt59rd] {
        background: #f59e0b;
        box-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
    }

/* Action Suite */
.action-suite[b-k3twnt59rd] {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.action-btn[b-k3twnt59rd] {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    border: none;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--animation-speed) ease;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid;
}

.revert-btn[b-k3twnt59rd] {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(217, 119, 6, 0.1) 100%);
    color: #78350f;
    border-color: rgba(245, 158, 11, 0.3);
}

    .revert-btn:hover[b-k3twnt59rd] {
        background: linear-gradient(135deg, rgba(245, 158, 11, 0.2) 0%, rgba(217, 119, 6, 0.2) 100%);
        transform: translateY(-2px);
        box-shadow: 0 4px 20px rgba(245, 158, 11, 0.3);
    }

.details-btn[b-k3twnt59rd] {
    background: var(--glass-bg);
    color: #475569;
    border-color: var(--glass-border);
}

    .details-btn:hover[b-k3twnt59rd] {
        background: rgba(255, 255, 255, 0.8);
        transform: translateY(-2px);
        box-shadow: var(--shadow-glass);
    }

.btn-particles[b-k3twnt59rd] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.btn-shimmer[b-k3twnt59rd] {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.action-btn:hover .btn-shimmer[b-k3twnt59rd] {
    left: 100%;
}

.loading-state[b-k3twnt59rd] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 400px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.6) 100%);
    backdrop-filter: blur(20px);
}

.loading-animation[b-k3twnt59rd] {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 32px;
}

.loading-sphere[b-k3twnt59rd] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, #0066ff 0%, var(--dark) 100%);
    border-radius: 50%;
    animation: pulse-b-k3twnt59rd 2s ease-in-out infinite;
}

.loading-orbit[b-k3twnt59rd] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid transparent;
    border-top: 2px solid rgba(102, 126, 234, 0.3);
    border-radius: 50%;
    animation: spin-b-k3twnt59rd 1s linear infinite;
}

.orbit-2[b-k3twnt59rd] {
    animation-duration: 1.5s;
    animation-direction: reverse;
    border-top: 2px solid rgba(118, 75, 162, 0.3);
}

@keyframes spin-b-k3twnt59rd {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loading-text[b-k3twnt59rd] {
    text-align: center;
}

.loading-primary[b-k3twnt59rd] {
    display: block;
    font-size: 18px;
    font-weight: 700;
    background: linear-gradient(135deg, #0066ff 0%, var(--dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.loading-secondary[b-k3twnt59rd] {
    display: block;
    font-size: 14px;
    color: #64748b;
}

.bulkupdatestatus-empty[b-k3twnt59rd] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 400px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.6) 100%);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.empty-animation[b-k3twnt59rd] {
    position: relative;
    margin-bottom: 32px;
}

.empty-icon[b-k3twnt59rd] {
    font-size: 64px;
    color: #cbd5e1;
    animation: float-b-k3twnt59rd 3s ease-in-out infinite;
}

@keyframes float-b-k3twnt59rd {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.empty-particles[b-k3twnt59rd] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    animation: float-b-k3twnt59rd 4s ease-in-out infinite reverse;
}

.empty-title[b-k3twnt59rd] {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 8px 0;
}

.empty-subtitle[b-k3twnt59rd] {
    font-size: 16px;
    color: #64748b;
    margin: 0 0 24px 0;
    text-align: center;
}

.btn-create[b-k3twnt59rd] {
    background: linear-gradient(135deg, #0066ff 0%, var(--dark) 100%);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: all var(--animation-speed) ease;
}

    .btn-create:hover[b-k3twnt59rd] {
        transform: translateY(-2px);
        box-shadow: var(--shadow-primary);
    }

.bulkupdatestatus-overlay[b-k3twnt59rd] {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    z-index: 2000;
}

.bulkupdatestatus-modal[b-k3twnt59rd] {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    backdrop-filter: blur(30px);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-dark);
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow: hidden;
    animation: modalEnter-b-k3twnt59rd 0.4s ease-out;
}

@keyframes modalEnter-b-k3twnt59rd {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-background-effect[b-k3twnt59rd] {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(102, 126, 234, 0.05), transparent);
    animation: rotate-b-k3twnt59rd 30s linear infinite;
}

.bulkupdatestatus-header[b-k3twnt59rd] {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 32px;
    border-bottom: 1px solid var(--glass-border);
}

.header-icon[b-k3twnt59rd] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--warning-gradient);
    border-radius: 50%;
    color: white;
    font-size: 20px;
}

.bulkupdatestatus-header h6[b-k3twnt59rd] {
    flex: 1;
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
}

.btn-close-bulkupdatestatus[b-k3twnt59rd] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: #64748b;
    cursor: pointer;
    transition: all var(--animation-speed) ease;
}

    .btn-close-bulkupdatestatus:hover[b-k3twnt59rd] {
        background: rgba(239, 68, 68, 0.1);
        color: #ef4444;
        transform: scale(1.1);
    }

.bulkupdatestatus-body[b-k3twnt59rd] {
    position: relative;
    z-index: 2;
    padding: 32px;
}

.bulkupdatestatus-warning[b-k3twnt59rd] {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(217, 119, 6, 0.1) 100%);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: var(--border-radius);
    border-left: 4px solid #f59e0b;
    margin-bottom: 24px;
    overflow: hidden;
}

.warning-glow[b-k3twnt59rd] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

.warning-icon[b-k3twnt59rd] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(245, 158, 11, 0.2);
    border-radius: 50%;
    color: #92400e;
    font-size: 18px;
}

.warning-content h6[b-k3twnt59rd] {
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: 700;
    color: #92400e;
}

.warning-content p[b-k3twnt59rd] {
    margin: 0;
    color: #78350f;
    line-height: 1.5;
}

.revert-preview[b-k3twnt59rd] {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 24px;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.preview-header[b-k3twnt59rd] {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 14px;
    font-weight: 600;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.preview-grid[b-k3twnt59rd] {
    display: grid;
    gap: 16px;
}

.preview-item[b-k3twnt59rd] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.preview-label[b-k3twnt59rd] {
    font-weight: 600;
    color: #475569;
}

.preview-value[b-k3twnt59rd] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: #1e293b;
}

.status-chip[b-k3twnt59rd] {
    padding: 4px 12px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
}

.impact-highlight[b-k3twnt59rd] {
    background: linear-gradient(135deg, #0066ff 0%, var(--dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 18px;
}

.impact-analysis[b-k3twnt59rd] {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(220, 38, 38, 0.1) 100%);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: var(--border-radius);
    padding: 24px;
    border-left: 4px solid #ef4444;
}

.analysis-header[b-k3twnt59rd] {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 14px;
    font-weight: 600;
    color: #7f1d1d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.analysis-points[b-k3twnt59rd] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.analysis-point[b-k3twnt59rd] {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #7f1d1d;
    line-height: 1.5;
}

    .analysis-point i[b-k3twnt59rd] {
        margin-top: 2px;
        color: #dc2626;
    }

.warning-point[b-k3twnt59rd] {
    font-weight: 600;
}

.bulkupdatestatus-footer[b-k3twnt59rd] {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-end;
    gap: 16px;
    padding: 32px;
    border-top: 1px solid var(--glass-border);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.6) 100%);
}

.btn-danger[b-k3twnt59rd] {
    background: var(--danger-gradient);
    color: white;
    position: relative;
    overflow: hidden;
}

    .btn-danger:hover:not(:disabled)[b-k3twnt59rd] {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(239, 68, 68, 0.4);
    }

.danger-glow[b-k3twnt59rd] {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.processing-spinner[b-k3twnt59rd] {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin-b-k3twnt59rd 1s linear infinite;
}

@media (max-width: 768px) {
    .header-content[b-k3twnt59rd] {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .stats-preview[b-k3twnt59rd] {
        flex-wrap: wrap;
        gap: 12px;
    }

    .filter-container[b-k3twnt59rd] {
        flex-direction: column;
        gap: 16px;
    }

    .bulkupdatestatus-modal[b-k3twnt59rd] {
        margin: 20px;
        max-width: calc(100vw - 40px);
    }

    .table-wrapper[b-k3twnt59rd] {
        overflow-x: auto;
    }

    .bulkupdatestatus-table[b-k3twnt59rd] {
        min-width: 800px;
    }
}

@media (prefers-color-scheme: dark) {
    .history-tab[b-k3twnt59rd] {
        background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    }

    .bulkupdatestatus-row[b-k3twnt59rd] {
        background: rgba(0, 0, 0, 0.3);
        color: #e2e8f0;
    }

        .bulkupdatestatus-row:hover[b-k3twnt59rd] {
            background: rgba(0, 0, 0, 0.5);
        }
}


.reverted-status-badge[b-k3twnt59rd] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .reverted-status-badge i[b-k3twnt59rd] {
        animation: pulse-b-k3twnt59rd 1s ease-out;
    }

@keyframes pulse-b-k3twnt59rd {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.15);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0.8;
    }
}
/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-97dmpfvvwn] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-97dmpfvvwn] {
    flex: 1;
}

.sidebar[b-97dmpfvvwn] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-97dmpfvvwn] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-97dmpfvvwn]  a, .top-row[b-97dmpfvvwn]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-97dmpfvvwn]  a:hover, .top-row[b-97dmpfvvwn]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-97dmpfvvwn]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-97dmpfvvwn] {
        justify-content: space-between;
    }

    .top-row[b-97dmpfvvwn]  a, .top-row[b-97dmpfvvwn]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-97dmpfvvwn] {
        flex-direction: row;
    }

    .sidebar[b-97dmpfvvwn] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-97dmpfvvwn] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-97dmpfvvwn]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-97dmpfvvwn], article[b-97dmpfvvwn] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-97dmpfvvwn] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-97dmpfvvwn] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
