.material-symbols-outlined {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 1em;
            height: 1em;
            overflow: hidden;
            font-family: 'Material Symbols Outlined';
            font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
            line-height: 1;
            text-transform: none;
            white-space: nowrap;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: #faf8ff;
        }

        .live-pulse {
            position: relative;
        }

        .live-pulse::before {
            content: '';
            position: absolute;
            width: 8px;
            height: 8px;
            background-color: #ba1a1a;
            border-radius: 50%;
            left: -12px;
            top: 50%;
            transform: translateY(-50%);
        }

        .live-page-wrap {
            width: 60vw;
            max-width: none;
            min-width: 0;
            margin: 0 auto;
            padding: 0px 0 48px;
            box-sizing: border-box;
        }

        .live-page-head {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 24px;
            margin-bottom: 22px;
        }

        .live-filter-area,
        .live-type-tabs {
            display: flex;
            align-items: center;
            gap: 12px;
            }

        .live-filter-row {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 8px;
            min-width: 0;
            width: 100%;
            flex-wrap: nowrap;
        }

        .live-filter-row .live-filter-area {
            flex: 1 1 auto;
            min-width: 0;
            margin-bottom: 0 !important;
        }

        .live-filter-row .live-type-tabs {
            flex: none;
            margin-bottom: 0;
            white-space: nowrap;
            flex-wrap: nowrap;
        }

        .live-date-tabs {
            display: flex;
            gap: 10px;
            min-width: 0;
            overflow-x: auto;
            overflow-y: hidden;
            flex-wrap: nowrap;
        }

        .live-date-tab,
        .live-type-tab,
        .live-calendar-btn,
        .live-back-home {
            border: 1px solid #c3c6d5;
            background: #fff;
            color: #26334d;
            border-radius: 10px;
            text-decoration: none;
            box-sizing: border-box;
        }

        .live-date-tab.active,
        .live-type-tab.active {
            border-color: #0047ab;
            color: #0047ab;
            background: #eef4ff;
        }

        .live-table-card {
            background: #fff;
            border: 1px solid #bbc3d5;
            border-radius: 10px;
            overflow: hidden;
        }

        .live-table-head,
        .live-match-item {
            display: grid;
            grid-template-columns: 112px 170px minmax(360px, 1fr) 260px;
            align-items: center;
        }

        .live-table-head {
            height: 44px;
            background: #f2f2fa;
            border-bottom: 1px solid #bbc3d5;
            color: #59657a;
            font-size: 13px;
            font-weight: 800;
        }

        .live-match-item {
            min-height: 102px;
            border-bottom: 1px solid #c4cadb;
            background: #fff;
        }

        .live-match-item[data-type="football"] {
            display: none;
        }

        .live-meta-row {
            display: contents;
        }

        .live-teams-col {
            display: grid;
            grid-template-columns: minmax(120px, 1fr) 72px minmax(120px, 1fr);
            align-items: center;
            gap: 12px;
            min-width: 0;
        }

        .live-team,
        .live-action-col,
        .live-league-col {
            display: flex;
            align-items: center;
            min-width: 0;
        }

        .live-home-team {
            justify-content: flex-end;
            text-align: right;
        }

        .live-away-team {
            justify-content: flex-start;
            text-align: left;
        }

        .live-team strong,
        .live-league-col em {
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        @media(max-width:760px) {
            .live-page-wrap {
                width: 100%;
                min-width: 0;
                padding: 60px 10px 32px;
            }

            .live-page-head,
            .live-filter-area {
                display: flex;
            }

            .live-filter-row {
                display: flex;
                align-items: center;
                gap: 8px;
                width: 100%;
                overflow: hidden;
                flex-wrap: nowrap;
            }

            .live-date-tabs {
                flex: 1 1 auto;
                min-width: 0;
                overflow-x: auto;
                overflow-y: hidden;
                padding-bottom: 4px;
                gap: 8px;
            }

            .live-date-tab {
                flex: 0 0 auto;
            }

            .live-type-tabs {
                flex: none;
                white-space: nowrap;
            }

            .live-calendar-btn,
            .live-table-head {
                display: none;
            }

            .live-match-item {
                grid-template-columns: 90px 1fr;
                gap: 0px;
                padding: 5px 14px !important;
            }

            .live-meta-row {
                grid-column: 1/3;
                display: flex;
                align-items: center;
                justify-content: space-between;
                min-width: 0;
                width: 100%;
            }

            .live-meta-row .live-time-col,
            .live-meta-row .live-league-col {
                grid-column: auto;
                width: auto;
                min-width: 0;
                padding: 0;
            }

            .live-meta-row .live-time-col strong {
                margin-bottom: 0;
            }

            .live-meta-row .live-league-col {
                justify-content: flex-end;
            }

            .live-league-col,
            .live-teams-col,
            .live-action-col {
                grid-column: 1/3;
            }

            .live-teams-col {
                grid-template-columns: minmax(0, 1fr) 64px minmax(0, 1fr);
            }
        }
