        :root {
            --base-bg: #161823;
        }

        .status-filters-wrapper {
            position: relative;
            margin-bottom: 1.5rem;
        }
        
        .status-filters-container {
            display: flex;
            gap: 0.5rem;
            padding: 0.375rem;
            background: rgba(22, 24, 35, 0.6);
            border-radius: 1rem;
            border: 1px solid rgba(255, 255, 255, 0.06);
            overflow-x: auto;
            scrollbar-width: none;
            -ms-overflow-style: none;
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
            backdrop-filter: blur(10px);
        }
        
        .status-filters-container::-webkit-scrollbar {
            display: none;
        }
        
        .status-filter-tab {
            position: relative;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.625rem 1rem;
            border-radius: 0.75rem;
            font-size: 0.8125rem;
            font-weight: 600;
            white-space: nowrap;
            cursor: pointer;
            transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
            border: none;
            background: transparent;
            color: var(--text-secondary);
            flex-shrink: 0;
        }
        
        .status-filter-tab:hover {
            background: rgba(255, 255, 255, 0.05);
            color: var(--text-primary);
        }
        
        .status-filter-tab.active {
            background: linear-gradient(135deg, rgba(84, 176, 228, 0.15) 0%, rgba(84, 176, 228, 0.08) 100%);
            color: #54b0e4;
            box-shadow: 0 0 0 1px rgba(84, 176, 228, 0.3);
        }
        
        .status-filter-tab.active .filter-count {
            background: #54b0e4;
            color: white;
        }
        
        .status-filter-tab[data-status="in-progress"].active {
            background: linear-gradient(135deg, rgba(84, 176, 228, 0.15) 0%, rgba(84, 176, 228, 0.05) 100%);
            color: #54b0e4;
            box-shadow: 0 0 0 1px rgba(84, 176, 228, 0.3);
        }
        
        .status-filter-tab[data-status="in-progress"].active .filter-count {
            background: #54b0e4;
        }
        
        .status-filter-tab[data-status="approved"].active {
            background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(34, 197, 94, 0.05) 100%);
            color: #22c55e;
            box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.3);
        }
        
        .status-filter-tab[data-status="approved"].active .filter-count {
            background: #22c55e;
        }
        
        .status-filter-tab[data-status="pending"].active {
            background: linear-gradient(135deg, rgba(251, 191, 36, 0.15) 0%, rgba(251, 191, 36, 0.05) 100%);
            color: #fbbf24;
            box-shadow: 0 0 0 1px rgba(251, 191, 36, 0.3);
        }
        
        .status-filter-tab[data-status="pending"].active .filter-count {
            background: #fbbf24;
            color: #1a1a1a;
        }
        
        .status-filter-tab[data-status="rejected"].active {
            background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(239, 68, 68, 0.05) 100%);
            color: #ef4444;
            box-shadow: 0 0 0 1px rgba(239, 68, 68, 0.3);
        }
        
        .status-filter-tab[data-status="rejected"].active .filter-count {
            background: #ef4444;
        }
        
        .filter-icon {
            font-size: 0.875rem;
            opacity: 0.9;
        }
        
        .filter-count {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 1.375rem;
            height: 1.375rem;
            padding: 0 0.375rem;
            font-size: 0.6875rem;
            font-weight: 700;
            border-radius: 9999px;
            background: rgba(22, 24, 35, 0.9);
            color: var(--text-tertiary);
            transition: all 0.25s ease;
        }
        
        .status-filters-wrapper::before,
        .status-filters-wrapper::after {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            width: 2rem;
            pointer-events: none;
            z-index: 2;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .status-filters-wrapper::before {
            left: 0;
            background: linear-gradient(to right, #161823, transparent);
            border-radius: 1rem 0 0 1rem;
        }
        
        .status-filters-wrapper::after {
            right: 0;
            background: linear-gradient(to left, #161823, transparent);
            border-radius: 0 1rem 1rem 0;
        }
        
        .status-filters-wrapper.scroll-left::before,
        .status-filters-wrapper.scroll-right::after {
            opacity: 1;
        }
        
        @media (max-width: 640px) {
            .status-filters-container {
                gap: 0.375rem;
                padding: 0.25rem;
                border-radius: 0.875rem;
            }
            
            .status-filter-tab {
                padding: 0.5rem 0.75rem;
                font-size: 0.75rem;
                border-radius: 0.625rem;
                gap: 0.375rem;
            }
            
            .filter-icon {
                font-size: 0.8125rem;
            }
            
            .filter-count {
                min-width: 1.25rem;
                height: 1.25rem;
                font-size: 0.625rem;
            }
            
            .filter-label-text {
                display: none;
            }
            
            .status-filter-tab[data-status="all"] .filter-label-text {
                display: inline;
            }
        }
        
        @media (min-width: 641px) {
            .status-filters-container {
                flex-wrap: wrap;
                overflow-x: visible;
            }
        }
        
        .activity-table-container {
            background: rgba(22, 24, 35, 0.6);
            border-radius: 1rem;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.06);
            backdrop-filter: blur(20px);
        }
        
        .activity-table-scroll {
            width: 100%;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }
        
        .activity-table-scroll::-webkit-scrollbar {
            height: 6px;
        }
        
        .activity-table-scroll::-webkit-scrollbar-track {
            background: rgba(22, 24, 35, 0.8);
        }
        
        .activity-table-scroll::-webkit-scrollbar-thumb {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 3px;
        }
        
        .activity-main-table {
            width: 100%;
            border-collapse: collapse;
            min-width: 650px;
        }
        
        .activity-main-table thead {
            background: rgba(22, 24, 35, 0.8);
        }
        
        .activity-main-table th {
            padding: 0.875rem 1rem;
            text-align: left;
            font-weight: 600;
            font-size: 0.6875rem;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--text-tertiary);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            white-space: nowrap;
        }
        
        .activity-main-table td {
            padding: 1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            vertical-align: middle;
        }
        
        .activity-main-table tbody tr {
            transition: background-color 0.2s ease;
            cursor: pointer;
        }
        
        .activity-main-table tbody tr:hover {
            background: rgba(84, 176, 228, 0.03);
        }
        
        .activity-main-table tbody tr:last-child td {
            border-bottom: none;
        }
        
        .activity-table-offer {
            display: flex;
            align-items: center;
            gap: 0.875rem;
        }
        
        .activity-table-icon {
            width: 52px;
            height: 52px;
            border-radius: 0.75rem;
            object-fit: cover;
            flex-shrink: 0;
            background: rgba(22, 24, 35, 0.8);
            border: 1px solid rgba(255, 255, 255, 0.06);
        }
        
        .activity-table-offer-info {
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
            min-width: 0;
        }
        
        .activity-table-offer-name {
            font-weight: 600;
            font-size: 0.875rem;
            color: var(--text-primary);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 280px;
            line-height: 1.3;
        }
        
        .activity-table-offer-event {
            display: inline-flex;
            align-items: center;
            gap: 0.375rem;
            font-size: 0.75rem;
            color: #54b0e4;
            font-weight: 500;
            padding: 0.125rem 0;
        }
        
        .activity-table-offer-event i {
            font-size: 0.625rem;
        }
        
        .activity-table-offer-provider {
            font-size: 0.6875rem;
            color: var(--text-tertiary);
            text-transform: uppercase;
            letter-spacing: 0.03em;
        }
        
        .activity-table-payout {
            font-weight: 700;
            font-size: 0.9375rem;
            color: #54b0e4;
            display: flex;
            align-items: center;
            gap: 0.375rem;
            white-space: nowrap;
        }
        
        .activity-table-payout i {
            font-size: 0.75rem;
            opacity: 0.9;
        }
        
        .activity-table-status {
            display: inline-flex;
            align-items: center;
            gap: 0.375rem;
            padding: 0.375rem 0.75rem;
            border-radius: 9999px;
            font-size: 0.6875rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.03em;
            white-space: nowrap;
        }
        
        .activity-table-status i {
            font-size: 0.625rem;
        }
        
        .activity-table-status.status-in-progress {
            background: linear-gradient(135deg, rgba(84, 176, 228, 0.12) 0%, rgba(84, 176, 228, 0.06) 100%);
            color: #54b0e4;
            border: 1px solid rgba(84, 176, 228, 0.25);
        }
        
        .activity-table-status.status-pending {
            background: linear-gradient(135deg, rgba(251, 191, 36, 0.12) 0%, rgba(251, 191, 36, 0.06) 100%);
            color: #fbbf24;
            border: 1px solid rgba(251, 191, 36, 0.25);
        }
        
        .activity-table-status.status-approved {
            background: linear-gradient(135deg, rgba(34, 197, 94, 0.12) 0%, rgba(34, 197, 94, 0.06) 100%);
            color: #22c55e;
            border: 1px solid rgba(34, 197, 94, 0.25);
        }
        
        .activity-table-status.status-rejected {
            background: linear-gradient(135deg, rgba(239, 68, 68, 0.12) 0%, rgba(239, 68, 68, 0.06) 100%);
            color: #ef4444;
            border: 1px solid rgba(239, 68, 68, 0.25);
        }
        
        .activity-table-status-wrapper {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 0.375rem;
        }

        .activity-table-release {
            display: inline-flex;
            align-items: center;
            gap: 0.25rem;
            font-size: 0.625rem;
            color: var(--text-tertiary);
            font-weight: 500;
        }

        .activity-table-release i {
            font-size: 0.5rem;
            color: #fbbf24;
        }
        
        .activity-table-date {
            font-size: 0.75rem;
            color: var(--text-tertiary);
            white-space: nowrap;
        }
        
        .activity-table-action-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.375rem;
            padding: 0.5rem 0.875rem;
            background: linear-gradient(135deg, rgba(84, 176, 228, 0.1) 0%, rgba(84, 176, 228, 0.05) 100%);
            color: #54b0e4;
            border-radius: 0.5rem;
            font-size: 0.75rem;
            font-weight: 600;
            transition: all 0.2s ease;
            border: 1px solid rgba(84, 176, 228, 0.2);
            cursor: pointer;
            white-space: nowrap;
        }
        
        .activity-table-action-btn:hover {
            background: linear-gradient(135deg, rgba(84, 176, 228, 0.2) 0%, rgba(84, 176, 228, 0.1) 100%);
            border-color: rgba(84, 176, 228, 0.4);
            transform: translateY(-1px);
        }
        
        .activity-table-action-btn:active {
            transform: scale(0.97);
        }
        
        .proof-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.375rem;
            padding: 0.375rem 0.625rem;
            border-radius: 0.375rem;
            font-size: 0.6875rem;
            font-weight: 600;
            transition: all 0.2s ease;
            border: none;
            cursor: pointer;
            white-space: nowrap;
        }
        
        .proof-btn-submit {
            background: linear-gradient(135deg, #54b0e4 0%, #4a9dd0 100%);
            color: white;
        }
        
        .proof-btn-submit:hover {
            filter: brightness(1.1);
            transform: translateY(-1px);
        }
        
        .proof-btn-submitted {
            background: rgba(34, 197, 94, 0.15);
            color: #22c55e;
            border: 1px solid rgba(34, 197, 94, 0.3);
            cursor: default;
        }
        
        .proof-btn-rejected {
            background: rgba(239, 68, 68, 0.15);
            color: #ef4444;
            border: 1px solid rgba(239, 68, 68, 0.3);
        }
        
        .proof-btn-rejected:hover {
            background: rgba(239, 68, 68, 0.25);
        }
        
        @media (max-width: 768px) {
            .activity-table-container {
                border-radius: 0.75rem;
            }
            
            .activity-table-offer-name {
                max-width: 180px;
            }
            
            .activity-main-table th,
            .activity-main-table td {
                padding: 0.75rem 0.625rem;
            }
            
            .activity-table-icon {
                width: 44px;
                height: 44px;
            }
        }
        
        @media (max-width: 560px) {
            .activity-table-offer-name {
                max-width: 140px;
                font-size: 0.8125rem;
            }
            
            .activity-table-icon {
                width: 40px;
                height: 40px;
                border-radius: 0.5rem;
            }
            
            .activity-table-payout {
                font-size: 0.875rem;
            }
            
            .activity-table-status {
                padding: 0.3rem 0.5rem;
                font-size: 0.625rem;
            }
            
            .activity-table-offer-event {
                font-size: 0.6875rem;
            }
            
            .activity-main-table th,
            .activity-main-table td {
                padding: 0.625rem 0.5rem;
            }
        }
        
        .empty-state {
            background: linear-gradient(135deg, rgba(22, 24, 35, 0.7) 0%, rgba(22, 24, 35, 0.5) 100%);
            border: 2px dashed rgba(255, 255, 255, 0.1);
            border-radius: 1.25rem;
            padding: 4rem 2rem;
            text-align: center;
            backdrop-filter: blur(20px);
        }
        
        .empty-state-icon {
            width: 5rem;
            height: 5rem;
            margin: 0 auto 1.5rem;
            background: linear-gradient(135deg, rgba(84, 176, 228, 0.1) 0%, rgba(84, 176, 228, 0.05) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .empty-state-icon svg {
            width: 2.5rem;
            height: 2.5rem;
            color: #54b0e4;
            opacity: 0.8;
        }
        
        .page-header {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            margin-bottom: 1.5rem;
            flex-wrap: wrap;
            gap: 1rem;
        }
        
        .page-header-content h1 {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--text-primary);
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 0.25rem;
        }
        
        .page-header-content p {
            font-size: 0.8125rem;
            color: var(--text-secondary);
        }
        
        .stats-summary {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
        }
        
        .stat-pill {
            display: inline-flex;
            align-items: center;
            gap: 0.375rem;
            padding: 0.375rem 0.75rem;
            background: rgba(22, 24, 35, 0.8);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 9999px;
            font-size: 0.75rem;
            color: var(--text-secondary);
            backdrop-filter: blur(10px);
        }
        
        .stat-pill-value {
            font-weight: 700;
            color: #54b0e4;
        }
        
        .stat-pill-value.approved {
            color: #22c55e;
        }
        
        @media (max-width: 640px) {
            .page-header {
                flex-direction: column;
            }
            
            .stats-summary {
                width: 100%;
            }
        }
        
        .featured-badge {
            background: linear-gradient(135deg, #54b0e4 0%, #3a8fc7 100%);
            color: white;
            padding: 2px 8px;
            border-radius: 4px;
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .modal-backdrop {
            position: fixed;
            inset: 0;
            background-color: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(8px);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s, visibility 0.3s;
        }
        
        .modal-backdrop.show {
            opacity: 1;
            visibility: visible;
        }
        
        .modal-content {
            background: rgba(22, 24, 35, 0.95);
            border-radius: 1.25rem;
            max-width: 56rem;
            width: 90%;
            max-height: 90vh;
            overflow-y: auto;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
            position: relative;
            border: 1px solid rgba(255, 255, 255, 0.08);
            transform: scale(0.95);
            transition: transform 0.3s;
            margin: 1rem;
            backdrop-filter: blur(20px);
        }
        
        .modal-backdrop.show .modal-content {
            transform: scale(1);
        }
        
        @media (max-width: 768px) {
            .modal-backdrop {
                align-items: flex-end;
                padding: 0;
            }
            
            .modal-content {
                width: 100%;
                max-width: 100%;
                height: 100%;
                max-height: 100%;
                margin: 0;
                border-radius: 0;
                border: none;
                transform: translateY(100%);
                transition: transform 0.3s cubic-bezier(.4,0,.2,1);
            }
            
            .modal-backdrop.show .modal-content {
                transform: translateY(0);
            }
            
            .modal-content > div:first-child {
                border-radius: 0;
            }
            
            .modal-content .relative.h-48 {
                height: 160px;
            }
            
            .modal-content .p-6.md\\:p-8 {
                padding: 1rem;
                padding-bottom: 2rem;
            }
            
            .modal-content button {
                min-height: 44px;
            }
            
            #activityOfferIcon {
                width: 60px;
                height: 60px;
            }
            
            #activityOfferTitle {
                font-size: 1.25rem;
            }
            
            .modal-content {
                display: flex;
                flex-direction: column;
            }
            
            .modal-content > div:last-child {
                flex: 1;
                overflow-y: auto;
                -webkit-overflow-scrolling: touch;
            }
            
            .modal-content nav.flex.space-x-8 {
                gap: 1rem;
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
                padding-bottom: 0.5rem;
            }
            
            .modal-content nav.flex.space-x-8 button {
                white-space: nowrap;
                flex-shrink: 0;
                padding: 0.5rem 1rem;
            }
        }
        
        @media (max-width: 768px) {
            .modal-drag-handle {
                width: 40px;
                height: 4px;
                background-color: rgba(255, 255, 255, 0.1);
                border-radius: 2px;
                margin: 0.5rem auto 1rem;
            }
        }
        
        .modal-close-btn {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background-color: rgba(0, 0, 0, 0.4);
            border-radius: 9999px;
            width: 2.25rem;
            height: 2.25rem;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
            cursor: pointer;
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: white;
            z-index: 11;
        }
        
        @media (max-width: 768px) {
            .modal-close-btn {
                width: 2.5rem;
                height: 2.5rem;
                background-color: rgba(0, 0, 0, 0.5);
                top: 0.75rem;
                right: 0.75rem;
            }
            
            .modal-close-btn svg {
                width: 20px;
                height: 20px;
            }
        }
        
        .modal-close-btn:hover {
            background-color: rgba(239, 68, 68, 0.8);
            border-color: rgba(239, 68, 68, 0.5);
            transform: scale(1.05);
        }
        
        .modal-proof-section {
            margin-top: 1rem;
            padding: 1rem;
            background: linear-gradient(135deg, rgba(84, 176, 228, 0.08) 0%, rgba(84, 176, 228, 0.02) 100%);
            border: 1px solid rgba(84, 176, 228, 0.2);
            border-radius: 0.75rem;
        }
        
        .modal-proof-section.proof-submitted {
            background: linear-gradient(135deg, rgba(34, 197, 94, 0.08) 0%, rgba(34, 197, 94, 0.02) 100%);
            border-color: rgba(34, 197, 94, 0.2);
        }
        
        .modal-proof-section.proof-rejected {
            background: linear-gradient(135deg, rgba(239, 68, 68, 0.08) 0%, rgba(239, 68, 68, 0.02) 100%);
            border-color: rgba(239, 68, 68, 0.2);
        }
        
        .modal-proof-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.625rem 1rem;
            border-radius: 0.5rem;
            font-size: 0.8125rem;
            font-weight: 600;
            transition: all 0.2s ease;
            cursor: pointer;
            border: none;
        }
        
        .modal-proof-btn-primary {
            background: linear-gradient(135deg, #54b0e4 0%, #4a9dd0 100%);
            color: white;
            box-shadow: 0 2px 8px rgba(84, 176, 228, 0.3);
        }
        
        .modal-proof-btn-primary:hover {
            filter: brightness(1.1);
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(84, 176, 228, 0.4);
        }
        
        .modal-review-prompt {
            margin-top: 1rem;
            padding: 1rem;
            background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, rgba(251, 191, 36, 0.02) 100%);
            border: 1px solid rgba(251, 191, 36, 0.25);
            border-radius: 0.75rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            flex-wrap: wrap;
        }
        
        .modal-review-prompt-text {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .modal-review-prompt-text i {
            font-size: 1.25rem;
            color: #fbbf24;
        }
        
        .modal-review-prompt-text span {
            font-size: 0.875rem;
            color: var(--text-primary);
            font-weight: 500;
        }
        
        .modal-review-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
            color: #1a1a1a;
            border-radius: 0.5rem;
            font-size: 0.8125rem;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: all 0.2s ease;
        }
        
        .modal-review-btn:hover {
            filter: brightness(1.1);
            transform: translateY(-1px);
        }
        
        .modal-footer-actions {
            display: flex;
            gap: 0.75rem;
            margin-top: 1.5rem;
            padding: 1rem;
            background: linear-gradient(to top, rgba(22, 24, 35, 0.95) 0%, transparent 100%);
            border-radius: 0 0 1rem 1rem;
        }
        
        @media (max-width: 768px) {
            .modal-footer-actions {
                flex-direction: column;
                padding: 1rem 0.75rem 1.5rem;
                position: sticky;
                bottom: 0;
                background: rgba(22, 24, 35, 0.98);
                border-top: 1px solid rgba(255, 255, 255, 0.06);
                margin-top: 1rem;
                gap: 0.5rem;
            }
        }
        
        .action-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.75rem 1.25rem;
            border-radius: 0.75rem;
            font-weight: 600;
            font-size: 0.875rem;
            transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            border: none;
            min-height: 48px;
        }
        
        .action-btn:active {
            transform: scale(0.97);
        }
        
        .action-btn-primary {
            flex: 1;
            background: linear-gradient(135deg, #54b0e4 0%, #3a8fc7 100%);
            color: white;
            box-shadow: 0 4px 14px rgba(84, 176, 228, 0.4);
        }
        
        .action-btn-primary:hover {
            background: linear-gradient(135deg, #6bc1f0 0%, #4a9fd7 100%);
            box-shadow: 0 6px 20px rgba(84, 176, 228, 0.5);
            transform: translateY(-1px);
        }
        
        .action-btn-primary:disabled {
            background: rgba(22, 24, 35, 0.8);
            color: var(--text-tertiary);
            box-shadow: none;
            cursor: not-allowed;
        }
        
        .action-btn-secondary {
            background: rgba(255, 255, 255, 0.05);
            color: var(--text-primary);
            border: 1px solid rgba(255, 255, 255, 0.08);
        }
        
        .action-btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.15);
        }
        
        .action-btn-share {
            background: rgba(84, 176, 228, 0.1);
            color: #54b0e4;
            border: 1px solid rgba(84, 176, 228, 0.3);
        }
        
        .action-btn-share:hover {
            background: rgba(84, 176, 228, 0.2);
            border-color: rgba(84, 176, 228, 0.5);
        }
        
        .action-btn-share.copied {
            background: rgba(34, 197, 94, 0.15);
            border-color: rgba(34, 197, 94, 0.4);
            color: #22c55e;
        }
        
        .action-btn-report {
            background: rgba(239, 68, 68, 0.08);
            color: #ef4444;
            border: 1px solid rgba(239, 68, 68, 0.2);
        }
        
        .action-btn-report:hover {
            background: rgba(239, 68, 68, 0.15);
            border-color: rgba(239, 68, 68, 0.4);
        }
        
        @media (max-width: 768px) {
            .modal-footer-row {
                display: flex;
                gap: 0.5rem;
            }
            
            .modal-footer-row .action-btn {
                flex: 1;
                padding: 0.75rem 0.75rem;
            }
            
            .action-btn-primary {
                width: 100%;
            }
        }
        
        @media (min-width: 769px) {
            .modal-footer-actions {
                justify-content: flex-end;
            }
            
            .action-btn-primary {
                min-width: 180px;
                flex: none;
            }
        }
        
        .activity-table {
            background: rgba(22, 24, 35, 0.8);
            border-radius: 0.75rem;
            overflow: hidden;
        }
        
        .activity-table th {
            background: rgba(22, 24, 35, 0.9);
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.75rem;
            letter-spacing: 0.05em;
            color: var(--text-primary);
            padding: 0.75rem 1rem;
        }
        
        .activity-table td {
            padding: 0.75rem 1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            color: var(--text-primary);
        }
        
        .activity-table tr:hover {
            background: rgba(255, 255, 255, 0.03);
        }
        
        .rating-container {
            padding: 1.5rem;
            background: rgba(22, 24, 35, 0.8);
            border-radius: 0.75rem;
            margin-bottom: 1rem;
            border: 1px solid rgba(255, 255, 255, 0.06);
        }
        
        @media (max-width: 640px) {
            .rating-container {
                padding: 1rem;
            }
        }
        
        .rating-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 1.5rem;
        }
        
        .rating-item:last-child {
            margin-bottom: 0;
        }
        
        .rating-label {
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--text-primary);
            min-width: 100px;
        }
        
        .rating-stars {
            display: flex;
            gap: 0.5rem;
        }
        
        .rating-star {
            cursor: pointer;
            font-size: 1.5rem;
            color: #d1d5db;
            transition: color 0.2s;
        }
        
        .rating-star:hover {
            color: #fbbf24;
        }
        
        .rating-star.active {
            color: #fbbf24;
        }
        
        .rating-submit-btn {
            width: 100%;
            margin-top: 1.5rem;
            padding: 0.75rem 1.5rem;
            background: linear-gradient(135deg, #54b0e4 0%, #4a9dd0 100%);
            color: white;
            border: none;
            border-radius: 0.5rem;
            font-weight: 600;
            font-size: 0.875rem;
            cursor: pointer;
            transition: all 0.2s ease;
        }
        
        .rating-submit-btn:hover:not(:disabled) {
            filter: brightness(1.1);
            transform: translateY(-1px);
        }
        
        .rating-submit-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }
        
        .modal-status-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.4rem 0.85rem;
            border-radius: 9999px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: capitalize;
        }
        
        .modal-status-badge.status-pending {
            background: linear-gradient(135deg, rgba(251, 191, 36, 0.15) 0%, rgba(245, 158, 11, 0.1) 100%);
            color: #fbbf24;
            border: 1px solid rgba(251, 191, 36, 0.3);
        }
        
        .modal-status-badge.status-approved {
            background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(22, 163, 74, 0.1) 100%);
            color: #22c55e;
            border: 1px solid rgba(34, 197, 94, 0.3);
        }
        
        .modal-status-badge.status-rejected {
            background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(220, 38, 38, 0.1) 100%);
            color: #ef4444;
            border: 1px solid rgba(239, 68, 68, 0.3);
        }
        
        .modal-status-badge.status-in-progress {
            background: linear-gradient(135deg, rgba(84, 176, 228, 0.15) 0%, rgba(74, 157, 208, 0.1) 100%);
            color: #54b0e4;
            border: 1px solid rgba(84, 176, 228, 0.3);
        }
        
        .glassmorphic-modal-content {
            background: linear-gradient(135deg, rgba(22, 24, 35, 0.98) 0%, rgba(22, 24, 35, 0.95) 100%);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 100px rgba(84, 176, 228, 0.1);
            animation: modalSlideUp 0.3s ease;
            width: 100%;
            max-width: 42rem;
            height: auto;
            max-height: 90vh;
            border-radius: 24px;
            display: flex;
            flex-direction: column;
        }

        @keyframes modalSlideUp {
            from {
                transform: translateY(100%);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }
        
        body.modal-open {
            position: fixed;
            width: 100%;
            overflow: hidden;
        }
        
        @media (min-width: 769px) {
            body.modal-open {
                position: static;
                width: auto;
            }
        }
        
        @media (max-width: 480px) {
            .rating-item {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.5rem;
            }
            
            .rating-label {
                min-width: auto;
            }
            
            .modal-review-prompt {
                flex-direction: column;
                align-items: stretch;
                text-align: center;
            }
            
            .modal-review-prompt-text {
                justify-content: center;
            }
        }
        
        .glassmorphic-modal-header {
            padding: 1.5rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }
        
        .glassmorphic-modal-body {
            padding: 1.5rem;
            overflow-y: auto;
            flex: 1;
        }
        
        .glassmorphic-section {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 0.75rem;
            padding: 1rem;
        }
        
        .glassmorphic-upload-area {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 2rem;
            border: 2px dashed rgba(255, 255, 255, 0.15);
            border-radius: 0.75rem;
            cursor: pointer;
            transition: all 0.2s ease;
        }
        
        .glassmorphic-upload-area:hover {
            border-color: #54b0e4;
            background: rgba(84, 176, 228, 0.05);
        }
        
        .user-has-rated {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            background: rgba(34, 197, 94, 0.1);
            border: 1px solid rgba(34, 197, 94, 0.3);
            border-radius: 0.5rem;
            color: #22c55e;
            font-size: 0.875rem;
            font-weight: 500;
        }

        .stats-card-premium {
            background: rgba(22, 24, 35, 0.6);
            border: 1px solid rgba(255, 255, 255, 0.06);
            backdrop-filter: blur(20px);
            transition: all 0.3s ease;
        }

        .stats-card-premium:hover {
            background: rgba(22, 24, 35, 0.75);
            border-color: rgba(255, 255, 255, 0.1);
        }