
        /* ================================================================
           SCORING DASHBOARD - DASHBOARD THEME
           ================================================================ */
        :root {
            --primary-color: #4f46e5;
            --primary-hover: #4338ca;
            --bg-main: #f4f6f9;
            --text-main: #0f172a;
            --text-muted: #64748b;
            --border-color: #e2e8f0;
            --card-bg: #ffffff;
        }

        .main-content {
            flex: 1;
            margin-left: 260px;
            min-height: 100vh;
            background: var(--bg-main);
            transition: margin-left 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            width: calc(100% - 260px);
        }

        /* ================================================================
           TOP BAR - DASHBOARD STYLE
           ================================================================ */
        .top-bar {
            height: 76px;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border-color);
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 40px;
            position: sticky;
            top: 0;
            z-index: 99;
            gap: 16px;
        }

        .top-bar-left,
        .top-bar-right {
            display: flex;
            align-items: center;
            gap: 24px;
        }

        .btn-toggle-sidebar {
            background: transparent;
            border: none;
            font-size: 24px;
            color: #0f172a;
            cursor: pointer;
            padding: 8px;
            border-radius: 8px;
            transition: all 0.2s ease;
            display: none;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
        }

        .btn-toggle-sidebar:hover {
            background: #f1f5f9;
        }

        .mobile-brand {
            display: none;
            align-items: center;
            gap: 10px;
            text-decoration: none;
        }

        .mobile-brand .brand-icon-small {
            width: 32px;
            height: 32px;
            background: linear-gradient(135deg, #4f46e5, #6366f1);
            color: #fff;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
        }

        .mobile-brand .brand-name-small {
            font-size: 16px;
            font-weight: 800;
            color: #0f172a;
        }

        .mobile-brand .brand-name-small span {
            color: #4f46e5;
        }

        .page-title {
            font-size: 18px;
            font-weight: 700;
            color: #0f172a;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .page-title i {
            color: #4f46e5;
        }

        .search-wrapper {
            position: relative;
            width: 340px;
        }

        .search-wrapper i {
            position: absolute;
            left: 16px;
            top: 50%;
            transform: translateY(-50%);
            color: #94a3b8;
            font-size: 18px;
        }

        .search-wrapper input {
            width: 100%;
            padding: 12px 16px 12px 44px;
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            border-radius: 999px;
            font-size: 14px;
            font-weight: 500;
            color: #0f172a;
            transition: all 0.3s ease;
            outline: none;
        }

        .search-wrapper input:focus {
            background: #ffffff;
            border-color: #4f46e5;
            box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.15);
        }

        .btn-header-fb,
        .btn-header-yt {
            padding: 10px 20px;
            border-radius: 999px;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            border: 1px solid transparent;
        }

        .btn-header-fb {
            background: #eff6ff;
            color: #1877f2;
            border-color: #bfdbfe;
        }

        .btn-header-fb:hover {
            background: #1877f2;
            color: #ffffff;
            transform: translateY(-2px);
            box-shadow: 0 8px 16px rgba(24, 119, 242, 0.2);
        }

        .btn-header-yt {
            background: #fef2f2;
            color: #dc2626;
            border-color: #fecaca;
        }

        .btn-header-yt:hover {
            background: #dc2626;
            color: #ffffff;
            transform: translateY(-2px);
            box-shadow: 0 8px 16px rgba(220, 38, 38, 0.2);
        }

        .btn-text {
            display: inline;
        }

        .user-profile {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            padding: 4px;
            transition: 0.2s;
            border-radius: 999px;
        }

        .user-profile:hover {
            background: #f1f5f9;
        }

        .avatar {
            width: 44px;
            height: 44px;
            background: linear-gradient(135deg, #4f46e5, #818cf8);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 16px;
            box-shadow: 0 4px 10px rgba(79, 70, 229, 0.25);
            flex-shrink: 0;
        }

        /* ================================================================
           TOOLBAR - FILTER & RESET BUTTON
           ================================================================ */
        .toolbar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding: 16px 32px;
            background: #ffffff;
            border-radius: 16px;
            border: 1px solid var(--border-color);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
            margin-bottom: 24px;
            flex-wrap: wrap;
        }

        .toolbar-left {
            display: flex;
            align-items: center;
            gap: 16px;
            flex-wrap: wrap;
        }

        .toolbar-right {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
        }

        .filter-wrapper {
            position: relative;
            display: flex;
            align-items: center;
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            border-radius: 10px;
            min-width: 180px;
            height: 42px;
            padding: 0 14px;
            gap: 8px;
            transition: all 0.2s ease;
        }

        .filter-wrapper:hover {
            border-color: #cbd5e1;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }

        .filter-wrapper:focus-within {
            border-color: #4f46e5;
            box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.15);
        }

        .filter-icon {
            color: #64748b;
            font-size: 18px;
            flex-shrink: 0;
        }

        .filter-select {
            border: none;
            background: transparent;
            font-size: 14px;
            font-weight: 600;
            color: #0f172a;
            outline: none;
            cursor: pointer;
            width: 100%;
            height: 100%;
            padding-left: 4px;
            -webkit-appearance: none;
            appearance: none;
        }

        .filter-select option {
            padding: 10px;
            background: white;
            color: #0f172a;
            font-weight: 500;
        }

        .filter-wrapper::after {
            content: '\ea4e';
            font-family: 'remixicon';
            position: absolute;
            right: 14px;
            font-size: 16px;
            color: #94a3b8;
            pointer-events: none;
        }

        .btn-toolbar {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 10px 20px;
            border-radius: 10px;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
            border: 1px solid transparent;
            white-space: nowrap;
            height: 42px;
        }

        .btn-toolbar-primary {
            background: var(--primary-color);
            color: #ffffff;
            border-color: var(--primary-color);
        }

        .btn-toolbar-primary:hover {
            background: var(--primary-hover);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
        }

        .btn-toolbar-danger {
            background: #ffffff;
            color: #ef4444;
            border-color: #fee2e2;
        }

        .btn-toolbar-danger:hover {
            background: #fef2f2;
            border-color: #fca5a5;
        }

        .btn-toolbar-outline {
            background: #ffffff;
            color: #64748b;
            border-color: #e2e8f0;
        }

        .btn-toolbar-outline:hover {
            background: #f8fafc;
            border-color: #cbd5e1;
        }

        .toolbar-label {
            font-size: 13px;
            font-weight: 600;
            color: #64748b;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .toolbar-label i {
            font-size: 16px;
        }

        .toolbar-divider {
            width: 1px;
            height: 32px;
            background: #e2e8f0;
        }

        /* ================================================================
           HERO BANNER
           ================================================================ */
        .sd-hero-banner {
            position: relative;
            background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #9333ea 100%);
            border-radius: 24px;
            padding: clamp(28px, 4vw, 48px) clamp(24px, 4vw, 52px);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: space-between;
            overflow: hidden;
            margin-bottom: 28px;
            box-shadow: 0 20px 40px -12px rgba(99, 102, 241, 0.45);
        }

        .sd-hero-banner::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 520px;
            height: 520px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
            pointer-events: none;
        }

        .sd-hero-content {
            max-width: 680px;
            position: relative;
            z-index: 2;
        }

        .sd-hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(255, 255, 255, 0.16);
            backdrop-filter: blur(10px);
            padding: 6px 18px;
            border-radius: 999px;
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 16px;
            border: 1px solid rgba(255, 255, 255, 0.25);
        }

        .sd-pulse-dot {
            width: 8px;
            height: 8px;
            background: #22c55e;
            border-radius: 50%;
            box-shadow: 0 0 12px #22c55e;
            animation: livePulse 1.8s infinite ease-in-out;
        }

        @keyframes livePulse {
            0%, 100% { transform: scale(0.95); opacity: 1; }
            50% { transform: scale(1.2); opacity: 0.5; }
        }

        .sd-hero-title {
            font-size: clamp(26px, 3.5vw, 40px);
            font-weight: 800;
            margin: 0 0 10px;
            letter-spacing: -0.5px;
            color: #fff;
            line-height: 1.2;
        }

        .sd-hero-title span {
            background: linear-gradient(135deg, #fde047, #fbbf24);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .sd-hero-subtitle {
            font-size: clamp(14px, 1.6vw, 17px);
            opacity: 0.92;
            margin: 0 0 24px;
            line-height: 1.6;
        }

        .sd-hero-actions {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
        }

        .sd-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 24px;
            border-radius: 12px;
            font-weight: 700;
            font-size: 14px;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
            border: none;
            cursor: pointer;
        }

        .sd-btn-primary {
            background: #ffffff;
            color: #4f46e5;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        }

        .sd-btn-primary:hover {
            background: #f8fafc;
            transform: translateY(-3px);
            box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
        }

        .sd-btn-glass {
            background: rgba(255, 255, 255, 0.14);
            color: #ffffff;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .sd-btn-glass:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: translateY(-3px);
        }

        .sd-hero-graphic {
            position: relative;
            z-index: 2;
            flex-shrink: 0;
        }

        .sd-cricket-orb {
            width: 110px;
            height: 110px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.12);
            backdrop-filter: blur(16px);
            border: 2px solid rgba(255, 255, 255, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 54px;
            color: #fde047;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
            animation: orbFloat 4s ease-in-out infinite alternate;
        }

        @keyframes orbFloat {
            0% { transform: translateY(0) rotate(0deg); }
            100% { transform: translateY(-14px) rotate(10deg); }
        }

        /* ================================================================
           CONTENT BODY
           ================================================================ */
        .content-body {
            padding: 28px 32px;
            max-width: 1600px;
            margin: 0 auto;
        }

        .card {
            background: #ffffff;
            border-radius: 16px;
            border: 1px solid #e2e8f0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
            overflow: hidden;
        }

        .card-body {
            padding: 0;
        }

        .table-responsive {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }

        .custom-table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
        }

        .custom-table thead th {
            text-align: left;
            padding: 14px 20px;
            background: #f8fafc;
            font-size: 12px;
            color: #64748b;
            text-transform: uppercase;
            letter-spacing: 0.6px;
            font-weight: 700;
            border-bottom: 1px solid #e2e8f0;
        }

        .custom-table tbody td {
            padding: 16px 20px;
            border-bottom: 1px solid #f1f5f9;
            color: #0f172a;
            vertical-align: middle;
        }

        .custom-table tbody tr:last-child td {
            border-bottom: none;
        }

        .custom-table tbody tr:hover td {
            background: #fafbfc;
        }

        .date-cell {
            display: flex;
            flex-direction: column;
        }
        .date-cell .date {
            font-weight: 600;
            color: #0f172a;
            font-size: 14px;
        }
        .date-cell .time {
            color: #64748b;
            font-size: 12px;
            margin-top: 2px;
        }

        .fixture-cell {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .team-name {
            font-weight: 700;
            color: #0f172a;
            font-size: 15px;
            white-space: normal;
            word-break: break-word;
            min-width: 0;
            flex: 1;
            max-width: 100%;
        }
        .vs-badge {
            background: #f1f5f9;
            color: #475569;
            font-size: 11px;
            padding: 4px 8px;
            border-radius: 6px;
            font-weight: 800;
            flex-shrink: 0;
            border: 1px solid #e2e8f0;
        }

        .status-badge {
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            display: inline-block;
            letter-spacing: 0.5px;
        }
        .status-badge.upcoming {
            background: #eff6ff;
            color: #2563eb;
            border: 1px solid #bfdbfe;
        }
        .status-badge.live {
            background: #fef2f2;
            color: #ef4444;
            border: 1px solid #fecaca;
            animation: pulse-red 2s infinite;
        }
        .status-badge.finished {
            background: #f0fdf4;
            color: #16a34a;
            border: 1px solid #bbf7d0;
        }

        @keyframes pulse-red {
            0% { transform: scale(0.98); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4); }
            70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(239, 68, 68, 0); }
            100% { transform: scale(0.98); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
        }

        .action-cell {
            display: flex;
            align-items: center;
            gap: 8px;
            justify-content: flex-end;
        }

        .btn-score-action {
            background: #10b981;
            color: #ffffff;
            border: none;
            padding: 8px 16px;
            border-radius: 8px;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: all 0.2s ease;
            box-shadow: 0 2px 6px rgba(16, 185, 129, 0.2);
        }

        .btn-score-action:hover {
            background: #059669;
            transform: translateY(-1px);
            color: #ffffff;
        }

        .menu-btn {
            width: 36px;
            height: 36px;
            border-radius: 8px;
            border: 1px solid #e2e8f0;
            background: #ffffff;
            color: #64748b;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
            font-size: 18px;
        }

        .menu-btn:hover {
            background: #f8fafc;
            color: #4f46e5;
            border-color: #cbd5e1;
        }

        .fixture-meta {
            display: none;
        }

        .meta-tag {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-size: 11px;
            font-weight: 600;
            color: #64748b;
            background: #f1f5f9;
            padding: 4px 8px;
            border-radius: 6px;
            text-transform: uppercase;
            letter-spacing: 0.3px;
            border: 1px solid #e2e8f0;
        }

        .empty-state-container {
            padding: 60px 20px;
            text-align: center;
            color: #64748b;
            display: none;
        }

        .empty-state-icon {
            font-size: 48px;
            opacity: 0.5;
            margin-bottom: 16px;
            display: block;
            color: #64748b;
        }

        .dropdown-menu {
            display: none;
            position: fixed;
            background: #ffffff;
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            width: 200px;
            z-index: 9999;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            padding: 6px;
        }

        .dropdown-menu.show {
            display: block;
            animation: fadeIn 0.15s ease-out;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-8px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .dropdown-menu a {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px 12px;
            color: #334155;
            text-decoration: none;
            font-size: 13px;
            font-weight: 500;
            cursor: pointer;
            border-radius: 8px;
            width: 100%;
        }

        .dropdown-menu a:hover {
            background: #f8fafc;
            color: #4f46e5;
        }

        .dropdown-menu a.text-danger {
            color: #ef4444 !important;
        }

        .dropdown-menu a.text-danger:hover {
            background: #fef2f2;
        }

        .dropdown-divider {
            height: 1px;
            background-color: #e2e8f0;
            margin: 4px 0;
            width: 100%;
        }

        /* Skeleton */
        .skeleton {
            background: linear-gradient(90deg, #f1f5f9 25%, #f8fafc 50%, #f1f5f9 75%);
            background-size: 200% 100%;
            animation: shimmer 1.5s infinite;
            border-radius: 6px;
            color: transparent !important;
        }

        @keyframes shimmer {
            0% { background-position: 200% 0; }
            100% { background-position: -200% 0; }
        }

        .sk-date { height: 15px; width: 80px; }
        .sk-fixture { height: 20px; width: 150px; }
        .sk-badge { height: 20px; width: 60px; border-radius: 12px; }
        .sk-tourney { height: 15px; width: 120px; }
        .sk-action { height: 32px; width: 100px; display: inline-block; }

        /* Modal */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(15, 23, 42, 0.6);
            backdrop-filter: blur(6px);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            padding: 20px;
        }

        .modal-overlay.show {
            display: flex !important;
        }

        .modal-content {
            background: #ffffff;
            border-radius: 16px;
            padding: 28px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            width: 90%;
            max-width: 520px;
            max-height: 90vh;
            overflow-y: auto;
        }

        .form-control {
            width: 100%;
            padding: 10px 14px;
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            font-size: 14px;
            outline: none;
            background: #f8fafc;
            color: #0f172a;
        }

        .form-control:focus {
            border-color: #4f46e5;
            background: #ffffff;
            box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
        }

        .form-label {
            font-size: 13px;
            font-weight: 600;
            color: #64748b;
            display: block;
            margin-bottom: 6px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0 16px;
            height: 40px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: 1px solid transparent;
            transition: all 0.2s ease;
            gap: 8px;
            text-decoration: none;
        }

        .btn-primary {
            background: #4f46e5;
            color: white;
        }

        .btn-primary:hover {
            background: #4338ca;
            transform: translateY(-1px);
        }

        .btn-outline {
            background: white;
            border: 1px solid #e2e8f0;
            color: #64748b;
        }

        .btn-outline:hover {
            border-color: #4f46e5;
            color: #4f46e5;
        }

        .color-picker-sm {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            cursor: pointer;
            flex-shrink: 0;
            border: 2px solid #e2e8f0;
            overflow: hidden;
        }

        .logo-upload-circle {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            overflow: hidden;
            background: #f8fafc;
            border: 2px dashed #cbd5e1;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            flex-shrink: 0;
        }

        .logo-upload-circle:hover {
            border-color: #4f46e5;
            background: #eef2ff;
        }

        .logo-preview {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: none;
        }

        .logo-icon {
            color: #94a3b8;
            font-size: 18px;
        }

        .grid-2-col {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
            margin-bottom: 14px;
        }

        .team-input-group {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .cropper-container {
            height: 280px;
            background: #0f172a;
            margin-bottom: 15px;
            border-radius: 10px;
            overflow: hidden;
        }

        .cropper-img {
            max-width: 100%;
        }

        .btn-close {
            background: none;
            border: none;
            font-size: 22px;
            cursor: pointer;
            color: #64748b;
            padding: 4px;
            border-radius: 6px;
        }

        .btn-close:hover {
            background: #f1f5f9;
        }

        /* ================================================================
           RESPONSIVE
           ================================================================ */
        @media (min-width: 992px) {
            .btn-toggle-sidebar {
                display: none !important;
            }
            .mobile-brand {
                display: none !important;
            }
        }

        @media (max-width: 991px) {
            .btn-toggle-sidebar {
                display: flex !important;
            }
            .mobile-brand {
                display: flex !important;
            }
            .search-wrapper {
                display: none;
            }
            .btn-text {
                display: none !important;
            }
            .btn-header-fb,
            .btn-header-yt {
                padding: 8px;
                font-size: 18px;
                gap: 0;
                width: 38px;
                height: 38px;
                justify-content: center;
                border-radius: 50%;
                min-width: 38px;
            }
            .avatar {
                width: 38px;
                height: 38px;
                font-size: 14px;
            }
            .top-bar {
                padding: 0 16px;
                height: 64px;
            }
            .top-bar-left {
                gap: 8px;
            }
            .top-bar-right {
                gap: 8px;
            }
            .page-title {
                font-size: 16px;
            }
            .content-body {
                padding: 16px 12px;
            }
            .sd-hero-banner {
                flex-direction: column;
                align-items: flex-start;
                gap: 20px;
                padding: 24px 20px;
                border-radius: 16px;
                margin-bottom: 20px;
            }
            .sd-hero-graphic {
                align-self: center;
            }
            .sd-cricket-orb {
                width: 80px;
                height: 80px;
                font-size: 38px;
            }
            .sd-hero-title {
                font-size: 22px;
            }
            .sd-hero-subtitle {
                font-size: 13px;
            }
            .sd-btn {
                padding: 10px 18px;
                font-size: 13px;
            }

            .toolbar {
                padding: 14px 16px;
                flex-direction: column;
                align-items: stretch;
                gap: 12px;
            }
            .toolbar-left {
                flex-wrap: wrap;
                justify-content: center;
            }
            .toolbar-right {
                justify-content: center;
            }
            .filter-wrapper {
                min-width: 140px;
                flex: 1;
            }
            .btn-toolbar {
                flex: 1;
                justify-content: center;
            }
        }

        @media (max-width: 768px) {
            .table-responsive {
                overflow-x: visible !important;
            }

            .custom-table {
                min-width: 0 !important;
                width: 100% !important;
                border-collapse: separate;
                border-spacing: 0 10px;
            }

            .custom-table thead {
                display: none;
            }

            .custom-table td.mobile-hide {
                display: none !important;
            }

            .custom-table tbody tr {
                display: flex;
                flex-wrap: wrap;
                align-items: center;
                background: #ffffff;
                border: 1px solid #e2e8f0;
                border-radius: 12px;
                padding: 14px 16px;
                gap: 0;
                box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
                margin-bottom: 6px;
            }

            .custom-table tbody td {
                display: block;
                padding: 0 !important;
                border: none !important;
                background: transparent !important;
            }

            .custom-table tbody td:nth-child(2) {
                flex: 1 1 100%;
                max-width: 100%;
                width: 100%;
                order: 1;
            }

            .fixture-cell {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 8px;
                flex-wrap: nowrap;
                width: 100%;
            }

            .fixture-cell .team-name {
                flex: 1;
                font-size: 14px;
                font-weight: 800;
                color: #0f172a;
                white-space: normal;
                word-break: break-all;
                min-width: 0;
                max-width: 100%;
                line-height: 1.3;
            }

            .fixture-cell .team-name:first-child {
                text-align: right;
                padding-right: 4px;
            }

            .fixture-cell .team-name:last-child {
                text-align: left;
                padding-left: 4px;
            }

            .fixture-cell .vs-badge {
                font-size: 10px;
                padding: 3px 8px;
                flex-shrink: 0;
            }

            .fixture-meta {
                display: flex;
                flex-wrap: wrap;
                gap: 6px;
                margin-top: 10px;
                align-items: center;
                justify-content: center;
            }

            .custom-table tbody td:nth-child(5) {
                order: 2;
                display: none !important;
            }

            .custom-table tbody td:nth-child(6) {
                flex: 1 1 100%;
                max-width: 100%;
                width: 100%;
                order: 3;
                margin-top: 12px;
                padding-top: 12px !important;
                border-top: 1px solid #e2e8f0 !important;
            }

            .action-cell {
                display: flex;
                align-items: stretch;
                justify-content: flex-start !important;
                gap: 10px;
                width: 100%;
            }

            .btn-score-action {
                flex: 1;
                display: flex;
                align-items: center;
                justify-content: center;
                padding: 0 16px;
                height: 40px;
                border-radius: 10px;
                font-size: 13px;
                font-weight: 700;
            }

            .menu-btn {
                width: 40px;
                height: 40px;
                border-radius: 10px;
                background: #f8fafc;
                color: #64748b;
                font-size: 18px;
            }
        }

        @media (max-width: 480px) {
            .top-bar {
                height: 56px;
                padding: 0 10px;
            }
            .btn-toggle-sidebar {
                width: 36px;
                height: 36px;
                font-size: 20px;
                padding: 4px;
            }
            .btn-header-fb,
            .btn-header-yt {
                width: 34px;
                height: 34px;
                font-size: 16px;
                min-width: 34px;
                padding: 6px;
            }
            .avatar {
                width: 34px;
                height: 34px;
                font-size: 12px;
            }
            .page-title {
                font-size: 14px;
            }
            .content-body {
                padding: 12px 8px;
            }
            .sd-cricket-orb {
                width: 60px;
                height: 60px;
                font-size: 28px;
            }
            .sd-hero-title {
                font-size: 18px;
            }
            .sd-hero-subtitle {
                font-size: 12px;
                margin-bottom: 16px;
            }
            .sd-btn {
                padding: 8px 14px;
                font-size: 12px;
                border-radius: 8px;
            }

            .toolbar {
                padding: 12px;
                gap: 10px;
            }
            .toolbar-left {
                flex-direction: column;
                width: 100%;
            }
            .toolbar-right {
                width: 100%;
            }
            .filter-wrapper {
                min-width: 100%;
                width: 100%;
            }
            .btn-toolbar {
                width: 100%;
                justify-content: center;
                font-size: 12px;
                padding: 8px 12px;
                height: 38px;
            }
            .toolbar-divider {
                display: none;
            }
            .fixture-cell .team-name {
                font-size: 12px;
            }
            .btn-score-action {
                font-size: 12px;
                height: 36px;
                padding: 0 12px;
            }
            .menu-btn {
                width: 36px;
                height: 36px;
                font-size: 16px;
            }
        }