/* WordPress/Flatsome Reset for ty-le-keo-container */
.ty-le-keo-container * {
    box-sizing: border-box;
}

/* Prevent Flatsome grid/column interference */
.ty-le-keo-container div,
.ty-le-keo-container span {
    float: none;
    clear: none;
}

.ty-le-keo-container {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #f5f7fa;
    color: #1f2937;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    display: block;
    box-sizing: border-box;
    position: relative;
}

.ty-le-keo-container .container {
    margin: 0 auto;
    padding: 5px;
    width: 100%;
    box-sizing: border-box;
    display: block;
}

/* Reset input/button/select styles to prevent Flatsome conflicts */
.ty-le-keo-container input,
.ty-le-keo-container button,
.ty-le-keo-container select {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    box-sizing: border-box;
    outline: none;
    box-shadow: none;
    border-radius: 0;
    text-transform: none;
    letter-spacing: normal;
    font-weight: normal;
    text-decoration: none;
    background-image: none;
}

.ty-le-keo-container input[type="text"],
.ty-le-keo-container input[type="date"],
.ty-le-keo-container input[type="checkbox"] {
    margin: 0;
    vertical-align: baseline;
}

.ty-le-keo-container button {
    cursor: pointer;
    background-color: transparent;
    border: none;
    padding: 0;
    margin: 0;
}

.ty-le-keo-container select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 16px;
    padding-right: 32px;
}

/* ========== FILTER SECTION ========== */
.ty-le-keo-container .filter-container {
    background: white;
    border-radius: 10px;
    padding: 5px;
    margin-bottom: 5px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    width: 100%;
    box-sizing: border-box;
}

.ty-le-keo-container .filter-tabs {
    display: flex;
    flex-direction: row;
    gap: 4px;
    flex-wrap: nowrap;
}

.ty-le-keo-container .filter-tab {
    padding: 6px 10px;
    background: transparent;
    border: 1.5px solid #e0e0e0;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    position: relative;
    white-space: nowrap;
    line-height: 1;
    min-height: auto;
}

.ty-le-keo-container .filter-tab:hover {
    background: #f5f5f5;
    border-color: #e1c978;
}

.ty-le-keo-container .filter-tab-active {
    background: linear-gradient(135deg, #e1c978 0%, #f0d589 100%);
    color: #1a1f36;
    border-color: #e1c978;
    font-weight: 800;
}

.ty-le-keo-container .live-icon {
    color: #ef4444;
    font-size: 16px;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.ty-le-keo-container .tab-badge {
    background: #1a1f36;
    color: white;
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 700;
    margin-left: 4px;
}

.ty-le-keo-container .filter-actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
}

.ty-le-keo-container .date-picker,
.ty-le-keo-container .bookmaker-select {
    padding: 6px 12px;
    border: 1.5px solid #e0e0e0;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    color: #1a1f36;
    cursor: pointer;
    background: white;
    min-width: auto;
    width: auto;
    height: auto;
    margin-bottom: 0;
}

.ty-le-keo-container .date-picker:hover,
.ty-le-keo-container .bookmaker-select:hover {
    border-color: #e1c978;
}

.ty-le-keo-container .refresh-btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: linear-gradient(135deg, rgb(0, 155, 58) 0%, rgb(0, 57, 34) 100%);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    min-height: auto;
    line-height: 1.6;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ty-le-keo-container .refresh-btn:hover {
    background: linear-gradient(135deg, rgb(0, 155, 58) 0%, rgb(0, 57, 34) 100%);
    transform: translateY(-1px);
}

.ty-le-keo-container .refresh-btn.spinning #refresh-icon {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ========== SUB FILTER BAR ========== */
.ty-le-keo-container .sub-filter-bar {
    background: white;
    border-radius: 10px;
    padding: 8px 12px;
    margin-bottom: 16px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    width: 100%;
    box-sizing: border-box;
}

.ty-le-keo-container .left-filters {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    flex-wrap: nowrap;
}

.ty-le-keo-container .search-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
}

.ty-le-keo-container .search-input {
    width: 220px;
    padding: 6px;
    border: 1.5px solid #e0e0e0;
    border-radius: 6px;
    font-size: 13px;
}

.ty-le-keo-container .search-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 10px;
    background: linear-gradient(135deg, #e1c978 0%, #f0d589 100%);
    color: #1a1f36;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
    min-height: auto;
}

.ty-le-keo-container .search-btn:hover {
    background: linear-gradient(135deg, #f0d589 0%, #e1c978 100%);
    transform: translateY(-1px);
}

.ty-le-keo-container .search-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.ty-le-keo-container .competition-select {
    min-width: 180px;
    max-width: 200px;
    padding: 3px 6px;
    border: 1.5px solid #e0e0e0;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    min-height: auto;
    margin-bottom: 0;
}

.ty-le-keo-container .competition-select:hover {
    border-color: #009b3a;
}

.ty-le-keo-container .stats-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
}

.ty-le-keo-container .stat-item {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 4px;
    flex-wrap: nowrap;
}

.ty-le-keo-container .stat-number {
    font-size: 18px;
    font-weight: 800;
    color: #009b3a;
}

.ty-le-keo-container .stat-label {
    font-size: 12px;
    color: #666;
    font-weight: 500;
}

.ty-le-keo-container .auto-refresh-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    background: #f5f5f5;
    border-radius: 6px;
}

.ty-le-keo-container .auto-refresh-toggle input[type="checkbox"] {
    width: 14px;
    height: 14px;
    cursor: pointer;
}

.ty-le-keo-container .auto-refresh-toggle label {
    font-size: 12px;
    font-weight: 600;
    color: #333;
    margin-bottom: 0;
    cursor: pointer;
}

.ty-le-keo-container .last-update {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #666;
    display: none;
    font-weight: 600;
}

/* ========== LOADING & EMPTY STATES ========== */
.ty-le-keo-container .loading-spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background: white;
    border-radius: 10px;
    margin: 20px 0;
}

.ty-le-keo-container .spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f4f6;
    border-top-color: #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.ty-le-keo-container .empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background: white;
    border-radius: 10px;
    margin: 20px 0;
}

.ty-le-keo-container .empty-icon {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.5;
}

.ty-le-keo-container .empty-text {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.ty-le-keo-container .empty-hint {
    font-size: 14px;
    color: #666;
}

/* ========== MATCHES CONTAINER ========== */
.ty-le-keo-container .matches-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ty-le-keo-container .competition-group {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.ty-le-keo-container .competition-header {
    background: #e6e6e6;
    padding: 4px 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.2s;
}

.ty-le-keo-container .competition-header:hover {
    background: #ddd;
}

.ty-le-keo-container .competition-info {
    display: flex;
    align-items: center;
    gap: 6px;
}

.ty-le-keo-container .competition-flag {
    width: 18px;
    height: 18px;
    object-fit: cover;
    border-radius: 2px;
}

.ty-le-keo-container .competition-country {
    font-weight: bold;
    font-size: 12px;
    color: #cc1b1b;
    line-height: 1;
}

.ty-le-keo-container .competition-name {
    font-weight: bold;
    font-size: 12px;
    color: #000;
    line-height: 1;
}

.ty-le-keo-container .competition-count {
    font-size: 10px;
    color: #666;
    line-height: 1;
}

.ty-le-keo-container .matches-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    margin-bottom: 3px;
}

.ty-le-keo-container .matches-table thead {
    background: #2e2f31;
    color: #fff;
}

.ty-le-keo-container .matches-table thead th {
    padding: 4px 2px;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    border-right: 1px solid #5d5a50;
    line-height: 1.2;
}

/* Column widths for desktop */
.ty-le-keo-container .col-time {
    width: 90px;
}

.ty-le-keo-container .col-teams {
    width: 180px;
}

.ty-le-keo-container .col-score {
    width: 70px;
}

.ty-le-keo-container .col-corner {
    width: 80px;
}

.ty-le-keo-container .col-ft {
    width: 220px;
}

.ty-le-keo-container .col-ht {
    width: 220px;
}

.ty-le-keo-container .col-expand {
    width: 60px;
}

.ty-le-keo-container .matches-table tbody td {
    padding: 4px 2px;
    font-size: 12px;
    border-right: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    text-align: center;
    line-height: 1.3;
}

.ty-le-keo-container .match-row-live {
    background: linear-gradient(135deg, rgba(0, 155, 58, 0.1) 0%, rgba(0, 155, 58, 0.15) 100%);
}

.ty-le-keo-container .match-time {
    font-weight: 600;
    min-width: 70px;
}

.ty-le-keo-container .match-time-live {
    color: #16a34a;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    padding: 4px 8px;
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    border-radius: 6px;
    border: 1px solid #86efac;
}

.ty-le-keo-container .blink {
    animation: blink 1s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.ty-le-keo-container .match-teams {
    text-align: left;
    min-width: 170px;
}

.ty-le-keo-container .team-row {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 1px 0;
}

.ty-le-keo-container .team-logo {
    width: 20px;
    height: 20px;
    object-fit: contain;
    border-radius: 50%;
}

.ty-le-keo-container .team-name {
    font-weight: 600;
    font-size: 12px;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 1.2;
}

.ty-le-keo-container .team-winner {
    color: #16a34a;
}

.ty-le-keo-container .team-loser {
    color: #6b7280;
}

.ty-le-keo-container .team-cards {
    display: flex;
    gap: 4px;
}

.ty-le-keo-container .card {
    min-width: 12px;
    height: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: bold;
    border-radius: 2px;
    padding: 0 2px;
    line-height: 1;
}

.ty-le-keo-container .card-red {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    border: 1px solid #991b1b;
}

.ty-le-keo-container .card-yellow {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: black;
    border: 1px solid #d97706;
}

.ty-le-keo-container .match-score {
    font-weight: bold;
    cursor: pointer;
    min-width: 80px;
    text-align: center;
}

.ty-le-keo-container .score-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 16px;
    line-height: 1;
}

.ty-le-keo-container .score-home {
    font-size: 18px;
    font-weight: bold;
}

.ty-le-keo-container .score-away {
    font-size: 18px;
    font-weight: bold;
}

.ty-le-keo-container .score-halftime {
    font-size: 10px;
    color: #6b7280;
    margin-top: 2px;
    line-height: 1;
}

.ty-le-keo-container .match-corner {
    text-align: center;
    font-weight: 600;
    font-size: 12px;
}

.ty-le-keo-container .odds-cell {
    padding: 2px;
    vertical-align: top;
}

.ty-le-keo-container .odds-grid {
    display: flex;
    gap: 4px;
    min-width: 220px;
}

.ty-le-keo-container .odds-col {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.ty-le-keo-container .odds-label {
    font-size: 10px;
    font-weight: bold;
    text-align: center;
    margin: 0;
    padding: 1px 2px;
    background: #f9fafb;
    border-radius: 2px;
    line-height: 1;
}

.ty-le-keo-container .odds-row {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    border: 1px solid #d1d5db;
    border-radius: 3px;
    padding: 2px 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4px;
    transition: all 0.2s ease;
    min-height: 18px;
    font-size: 11px;
    line-height: 1;
}

.ty-le-keo-container .odds-row:hover {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-color: #93c5fd;
    transform: translateY(-1px);
}

.ty-le-keo-container .odds-box-live,
.ty-le-keo-container .odds-row.odds-box-live {
    border: 1px solid rgba(0, 155, 58, 0.3);
    background: linear-gradient(135deg, rgba(0, 155, 58, 0.05) 0%, rgba(0, 155, 58, 0.1) 100%);
}

.ty-le-keo-container .odds-handicap {
    font-size: 9px;
    color: #2563eb;
    font-weight: 600;
    line-height: 1;
}

.ty-le-keo-container .odds-value {
    font-weight: bold;
    font-size: 13px;
}

.ty-le-keo-container .odds-up {
    color: #16a34a;
}

.ty-le-keo-container .odds-down {
    color: #dc2626;
}

.ty-le-keo-container .odds-1x2-label {
    font-size: 8px;
    color: #dc2626;
    font-weight: bold;
    line-height: 1;
}

.ty-le-keo-container .odds-updating {
    color: #999;
    font-size: 11px;
}

/* ========== LOAD MORE BUTTON ========== */
.ty-le-keo-container .load-more-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #e1c978 0%, #f0d589 100%);
    color: #1a1f36;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.ty-le-keo-container .load-more-btn:hover {
    background: linear-gradient(135deg, #f0d589 0%, #e1c978 100%);
    transform: translateY(-2px);
}

.ty-le-keo-container .load-more-btn:disabled,
.ty-le-keo-container .load-more-btn.loading {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

.ty-le-keo-container .load-more-btn.loading::after {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid #1a1f36;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 0.6s linear infinite;
    margin-left: 8px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ========== DESKTOP/MOBILE VISIBILITY ========== */
.ty-le-keo-container .mobile-only {
    display: none;
}

.ty-le-keo-container .desktop-only {
    display: table-cell;
}

/* Expand Button */
.ty-le-keo-container .expand-btn {
    background: linear-gradient(135deg, #e1c978 0%, #f0d589 100%);
    border: none;
    border-radius: 4px;
    padding: 3px 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 12px;
    line-height: 1;
}

.ty-le-keo-container .expand-btn:hover {
    background: linear-gradient(135deg, #f0d589 0%, #e1c978 100%);
    transform: scale(1.05);
}

.ty-le-keo-container .expand-icon {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.ty-le-keo-container .expand-icon.expanded {
    transform: rotate(180deg);
}

/* Expandable Row */
.ty-le-keo-container .expandable-row {
    background: #f9fafb;
}

.ty-le-keo-container .expandable-content {
    padding: 4px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.ty-le-keo-container .expandable-section {
    background: white;
    padding: 3px 6px;
    border-radius: 4px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.ty-le-keo-container .expandable-inline {
    display: flex;
    align-items: center;
    gap: 6px;
}

.ty-le-keo-container .expandable-label {
    font-weight: 700;
    font-size: 11px;
    color: #1a1f36;
    margin-bottom: 2px;
    line-height: 1;
}

.ty-le-keo-container .expandable-inline .expandable-label {
    margin-bottom: 0;
}

.ty-le-keo-container .expandable-value {
    font-size: 11px;
    font-weight: 600;
    color: #009b3a;
    line-height: 1;
}

/* Mobile Odds Grid */
.ty-le-keo-container .mobile-odds-grid {
    display: flex;
    gap: 3px;
    margin-top: 2px;
    flex-wrap: wrap;
}

.ty-le-keo-container .mobile-odds-col {
    flex: 1;
    min-width: calc(33.333% - 3px);
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.ty-le-keo-container .mobile-odds-header {
    font-size: 9px;
    font-weight: bold;
    text-align: center;
    padding: 1px 3px;
    background: #2e2f31;
    color: white;
    border-radius: 2px;
    line-height: 1;
}

.ty-le-keo-container .mobile-odds-item {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    border: 1px solid #d1d5db;
    border-radius: 2px;
    padding: 1px 3px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2px;
    font-size: 10px;
    min-height: 16px;
    line-height: 1;
}

.ty-le-keo-container .mobile-odds-item.odds-box-live {
    border: 1px solid rgba(0, 155, 58, 0.3);
    background: linear-gradient(135deg, rgba(0, 155, 58, 0.05) 0%, rgba(0, 155, 58, 0.1) 100%);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 930px) {
    .ty-le-keo-container {
        overflow-x: hidden;
    }

    .ty-le-keo-container .container {
        padding: 2px;
        max-width: 100vw;
        overflow-x: hidden;
    }

    /* Toggle visibility */
    .ty-le-keo-container .desktop-only {
        display: none;
    }

    .ty-le-keo-container .mobile-only {
        display: table-cell;
    }

    .ty-le-keo-container .mobile-expand-cell {
        text-align: center;
        padding: 4px;
        vertical-align: middle;
    }

    .ty-le-keo-container .expand-btn {
        padding: 4px 8px;
        font-size: 12px;
    }

    /* Expandable content mobile */
    .ty-le-keo-container .expandable-content {
        padding: 4px;
        gap: 4px;
    }

    .ty-le-keo-container .expandable-section {
        padding: 4px 6px;
    }

    .ty-le-keo-container .expandable-inline {
        gap: 6px;
    }

    .ty-le-keo-container .expandable-label {
        font-size: 12px;
        margin-bottom: 2px;
    }

    .ty-le-keo-container .expandable-inline .expandable-label {
        margin-bottom: 0;
        font-size: 11px;
    }

    .ty-le-keo-container .expandable-value {
        font-size: 12px;
    }

    .ty-le-keo-container .expandable-inline .expandable-value {
        font-size: 11px;
    }

    /* Mobile odds grid */
    .ty-le-keo-container .mobile-odds-grid {
        gap: 3px;
        margin-top: 3px;
    }

    .ty-le-keo-container .mobile-odds-col {
        gap: 2px;
        min-width: calc(33.333% - 3px);
    }

    .ty-le-keo-container .mobile-odds-header {
        font-size: 10px;
        padding: 3px 4px;
    }

    .ty-le-keo-container .mobile-odds-item {
        padding: 0 4px;
        font-size: 11px;
        min-height: 20px;
        gap: 2px;
        line-height: 1.2;
    }
    .ty-le-keo-container .odds-value {
        font-size: 11px;
    }

    .ty-le-keo-container .filter-container {
        flex-direction: column;
        padding: 6px;
        gap: 6px;
        margin-bottom: 6px;
    }

    .ty-le-keo-container .filter-tabs {
        width: 100%;
        gap: 2px;
    }

    .ty-le-keo-container .filter-tab {
        flex: 1;
        justify-content: center;
        padding: 6px 8px;
        font-size: 12px;
        gap: 3px;
        border-width: 1px;
    }

    .ty-le-keo-container .tab-badge {
        padding: 2px 5px;
        font-size: 10px;
        margin-left: 3px;
        display: none;
    }

    .ty-le-keo-container .filter-actions {
        width: 100%;
        justify-content: space-between;
        gap: 4px;
    }

    .ty-le-keo-container .date-picker,
    .ty-le-keo-container .bookmaker-select {
        flex: 1;
        padding: 6px 10px;
        font-size: 12px;
    }

    .ty-le-keo-container .refresh-btn {
        padding: 6px 10px;
        font-size: 12px;
        gap: 4px;
    }

    .ty-le-keo-container .sub-filter-bar {
        flex-direction: column;
        gap: 8px;
        padding: 6px;
        margin-bottom: 10px;
    }

    .ty-le-keo-container .left-filters {
        width: 100%;
        flex-direction: column;
        gap: 6px;
    }

    .ty-le-keo-container .search-container {
        width: 100%;
        gap: 6px;
    }

    .ty-le-keo-container .search-input {
        width: 100%;
        padding: 6px 10px;
        font-size: 13px;
    }

    .ty-le-keo-container .search-btn {
        width: 100%;
        justify-content: center;
        padding: 6px 5px;
        font-size: 13px;
        gap: 4px;
        max-width: 100px;
    }

    .ty-le-keo-container .competition-select {
        width: 100%;
        min-width: 100%;
        max-width: 100%;
        padding: 6px 10px;
        font-size: 13px;
    }

    .ty-le-keo-container .stats-section {
        width: 100%;
        justify-content: space-between;
        gap: 4px;
        flex-wrap: wrap;
    }

    .ty-le-keo-container .stat-item {
        align-items: center;
        gap: 3px;
    }

    .ty-le-keo-container .stat-number {
        font-size: 16px;
    }

    .ty-le-keo-container .stat-label {
        font-size: 11px;
    }

    .ty-le-keo-container .auto-refresh-toggle {
        padding: 3px 6px;
    }

    .ty-le-keo-container .auto-refresh-toggle input[type="checkbox"] {
        width: 14px;
        height: 14px;
    }

    .ty-le-keo-container .auto-refresh-toggle label {
        font-size: 11px;
    }

    .ty-le-keo-container .last-update {
        font-size: 11px;
    }

    /* Matches Container */
    .ty-le-keo-container .matches-container {
        gap: 4px;
    }

    .ty-le-keo-container .competition-group {
        margin: 0;
    }

    .ty-le-keo-container .competition-header {
        padding: 4px 6px;
    }

    .ty-le-keo-container .competition-info {
        gap: 6px;
    }

    .ty-le-keo-container .competition-flag {
        width: 14px;
        height: 14px;
    }

    .ty-le-keo-container .competition-country,
    .ty-le-keo-container .competition-name {
        font-size: 11px;
    }

    .ty-le-keo-container .competition-count {
        font-size: 10px;
    }

    /* Table */
    .ty-le-keo-container .matches-table {
        font-size: 11px;
        width: 100%;
        table-layout: auto;
    }

    .ty-le-keo-container .matches-table thead th {
        padding: 3px 2px;
        font-size: 10px;
    }

    .ty-le-keo-container .matches-table tbody td {
        padding: 3px 2px;
        font-size: 11px;
    }

    /* Column widths for mobile - only 4 columns visible */
    .ty-le-keo-container .col-time {
        width: 70px;
    }

    .ty-le-keo-container .col-teams {
        width: auto;
        min-width: 150px;
    }

    .ty-le-keo-container .col-score {
        width: 80px;
    }

    .ty-le-keo-container .col-expand {
        width: 50px;
    }

    /* Match content */
    .ty-le-keo-container .team-row {
        gap: 4px;
        padding: 4px 2px;
        text-align: left;
    }

    .ty-le-keo-container .team-logo {
        width: 18px;
        height: 18px;
    }

    .ty-le-keo-container .team-name {
        font-size: 12px;
    }

    .ty-le-keo-container .card {
        min-width: 12px;
        height: 14px;
        font-size: 9px;
        padding: 0 2px;
    }

    .ty-le-keo-container .score-display {
        gap: 4px;
        font-size: 13px;
    }

    .ty-le-keo-container .score-home,
    .ty-le-keo-container .score-away {
        font-size: 15px;
    }

    .ty-le-keo-container .score-halftime {
        font-size: 10px;
    }

    .ty-le-keo-container .match-corner {
        font-size: 11px;
    }

    /* Load More */
    .ty-le-keo-container .load-more-btn {
        padding: 10px;
        font-size: 14px;
        margin-top: 10px;
    }

    /* Empty State */
    .ty-le-keo-container .empty-state {
        padding: 40px 10px;
    }

    .ty-le-keo-container .empty-icon {
        font-size: 36px;
    }

    .ty-le-keo-container .empty-text {
        font-size: 14px;
    }

    .ty-le-keo-container .empty-hint {
        font-size: 12px;
    }
}

/* ========================================
   BẢNG XẾP HẠNG (STANDINGS) STYLES
   ======================================== */

/* Container for standings page */
.ty-le-keo-container.bxh-container {
    background: #f8f9fa;
}

/* Compact Header Layout */
.ty-le-keo-container .bxh-header {
    background: #ffffff;
    border-radius: 5px;
    padding: 10px 12px;
    margin-bottom: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 155, 58, 0.1);
}

.ty-le-keo-container .bxh-header-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.ty-le-keo-container .bxh-select-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.ty-le-keo-container .bxh-select-label {
    color: #64748b;
    font-weight: 600;
    font-size: 13px;
    margin: 0;
    white-space: nowrap;
}

.ty-le-keo-container .bxh-league-select {
    min-width: 180px;
    max-width: 300px;
    padding: 6px 28px 6px 10px;
    border: 1.5px solid #e0e0e0;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 14px;
}

.ty-le-keo-container .bxh-league-select:hover {
    border-color: #009b3a;
}

.ty-le-keo-container .bxh-league-select:focus {
    outline: none;
    border-color: #009b3a;
    box-shadow: 0 0 0 2px rgba(0, 155, 58, 0.1);
}

/* Inline Tabs */
.ty-le-keo-container .bxh-tabs-inline {
    display: flex;
    gap: 6px;
    flex-wrap: nowrap;
    flex: 1;
}

.ty-le-keo-container .bxh-tabs-group {

}

.ty-le-keo-container .bxh-tab {
    padding: 6px 14px;
    background: #f5f5f5;
    border: none;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    line-height: 1.2;
}

.ty-le-keo-container .bxh-tab-active, .ty-le-keo-container .bxh-tab:hover  {
    background: linear-gradient(135deg, rgb(0, 155, 58) 0%, rgb(0, 57, 34) 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(0, 155, 58, 0.3);
    transform: translateY(-1px);
}

/* Filter container (Radio buttons) */
.ty-le-keo-container .bxh-filter-container {
    background: #ffffff;
    border-radius: 5px;
    padding: 0;
    margin-bottom: 0;
    box-shadow: none;
    display: flex;
    gap: 0;
    flex-wrap: wrap;
    border-bottom: 1px solid #e0e0e0;
}

.ty-le-keo-container .bxh-radio {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 10px 20px;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
    background: #f5f5f5;
    flex: 1;
    line-height: 1;
}

.ty-le-keo-container .bxh-radio:hover {
    background: #e8e8e8;
}

.ty-le-keo-container .bxh-radio input[type="radio"] {
    display: none;
}

.ty-le-keo-container .bxh-radio span {
    font-size: 13px;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ty-le-keo-container .bxh-radio input[type="radio"]:checked ~ span {
    color: white;
}

.ty-le-keo-container .bxh-radio:has(input[type="radio"]:checked) {
    background: linear-gradient(135deg, rgb(0, 155, 58) 0%, rgb(0, 57, 34) 100%);
    box-shadow: 0 2px 8px rgba(0, 155, 58, 0.3);
}

/* Inline Filter Override */
.ty-le-keo-container .bxh-filter-inline {
    background: transparent;
    border: none;
    padding: 0;
    gap: 4px;
    margin-bottom: 0;
    border-bottom: none;
    display: flex;
}

.ty-le-keo-container .bxh-filter-inline .bxh-radio {
    padding: 6px 12px;
    border-radius: 6px;
    background: #f5f5f5;
    flex: 0 0 auto;
}

.ty-le-keo-container .bxh-filter-inline .bxh-radio span {
    font-size: 11px;
    color: #64748b;
    letter-spacing: 0.3px;
}

.ty-le-keo-container .bxh-filter-inline .bxh-radio:hover {
    background: #e8e8e8;
}

.ty-le-keo-container .bxh-filter-inline .bxh-radio:has(input[type="radio"]:checked) {
    background: linear-gradient(135deg, rgb(0, 155, 58) 0%, rgb(0, 57, 34) 100%);
}

/* Match quantity select */
.ty-le-keo-container .bxh-match-quantity {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: nowrap;
    flex-shrink: 0;
}

.ty-le-keo-container .bxh-match-quantity label {
    font-size: 11px;
    font-weight: 600;
    color: #64748b;
    margin: 0;
    white-space: nowrap;
}

.ty-le-keo-container .bxh-quantity-select {
    padding: 6px 24px 6px 8px;
    border: 1.5px solid #e0e0e0;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 6px center;
    background-size: 12px;
    min-width: 50px;
}

/* Table wrapper */
.ty-le-keo-container .bxh-table-wrapper {
    background: white;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8e8e8;
}

/* Competition Info */
.ty-le-keo-container .bxh-competition-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 15px;
    padding: 10px 15px;
    background: linear-gradient(135deg, rgb(0, 155, 58) 0%, rgb(0, 57, 34) 100%);
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 155, 58, 0.3);
}

.ty-le-keo-container .bxh-comp-logo {
    width: 36px;
    height: 36px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    flex-shrink: 0;
}

.ty-le-keo-container .bxh-comp-details {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
}

.ty-le-keo-container .bxh-comp-name {
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin: 0;
}

.ty-le-keo-container .bxh-comp-season {
    font-size: 14px;
    font-weight: 600;
    color: white;
    background: rgba(0, 0, 0, 0.15);
    padding: 6px 16px;
    border-radius: 6px;
    margin: 0;
    min-width: 132px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Bảng xếp hạng */
.ty-le-keo-container .bxh-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.ty-le-keo-container .bxh-table thead {
    background: linear-gradient(135deg, rgb(0, 155, 58) 0%, rgb(0, 57, 34) 100%);
    border-bottom: 2px solid #009b3a;
}

.ty-le-keo-container .bxh-table th {
    padding: 10px 8px;
    text-align: center;
    font-weight: 700;
    color: #ffffff;
    font-size: 12px;
    text-transform: uppercase;
    white-space: nowrap;
    letter-spacing: 0.3px;
}

.ty-le-keo-container .bxh-table th.bxh-th-rank {
    width: 40px;
    text-align: center;
}

.ty-le-keo-container .bxh-table th.bxh-th-team {
    text-align: left;
    min-width: 150px;
}

.ty-le-keo-container .bxh-table th.bxh-th-player {
    text-align: left;
    min-width: 150px;
}

.ty-le-keo-container .bxh-table th.bxh-th-stat {
    width: 60px;
}

.ty-le-keo-container .bxh-table th.bxh-th-form {
    width: 120px;
}

.ty-le-keo-container .bxh-table tbody tr {
    border-bottom: 1px solid #e8e8e8;
    transition: all 0.2s ease;
    background: white;
}

.ty-le-keo-container .bxh-table tbody tr:hover {
    background: #f5f7fa;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.ty-le-keo-container .bxh-table td {
    padding: 2px 4px;
    text-align: center;
    vertical-align: middle;
}

.ty-le-keo-container .bxh-rank-cell {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
}

.ty-le-keo-container .bxh-rank-number {
    min-width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #94a3b8;
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

/* Rank 1 - Gold Medal */
.ty-le-keo-container .bxh-rank-number[data-rank="1"] {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.5);
    animation: goldShine 2s infinite;
}

@keyframes goldShine {
    0%, 100% { box-shadow: 0 2px 8px rgba(255, 215, 0, 0.5); }
    50% { box-shadow: 0 4px 16px rgba(255, 215, 0, 0.8); }
}

/* Rank 2 - Silver Medal */
.ty-le-keo-container .bxh-rank-number[data-rank="2"] {
    background: linear-gradient(135deg, #C0C0C0 0%, #A8A8A8 100%);
    box-shadow: 0 2px 8px rgba(192, 192, 192, 0.5);
}

/* Rank 3 - Bronze Medal */
.ty-le-keo-container .bxh-rank-number[data-rank="3"] {
    background: linear-gradient(135deg, #CD7F32 0%, #B8722D 100%);
    box-shadow: 0 2px 8px rgba(205, 127, 50, 0.5);
}

/* Ranks 4-6 - Champions League Zone */
.ty-le-keo-container .bxh-rank-number[data-rank="4"],
.ty-le-keo-container .bxh-rank-number[data-rank="5"],
.ty-le-keo-container .bxh-rank-number[data-rank="6"] {
    background: linear-gradient(135deg, rgb(0, 155, 58) 0%, rgb(0, 57, 34) 100%);
    box-shadow: 0 2px 8px rgba(0, 155, 58, 0.3);
}

/* Ranks 7-10 - Blue Zone */
.ty-le-keo-container .bxh-rank-number[data-rank="7"],
.ty-le-keo-container .bxh-rank-number[data-rank="8"],
.ty-le-keo-container .bxh-rank-number[data-rank="9"],
.ty-le-keo-container .bxh-rank-number[data-rank="10"] {
    background: linear-gradient(135deg, rgb(0, 155, 58) 0%, rgb(0, 57, 34) 100%);
    box-shadow: 0 2px 8px rgba(0, 155, 58, 0.3);
}

.ty-le-keo-container .bxh-rank-indicator {
    width: 4px;
    height: 24px;
    border-radius: 2px;
}

.ty-le-keo-container .bxh-team-cell {
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
}

.ty-le-keo-container .bxh-team-logo {
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
}

.ty-le-keo-container .bxh-team-name {
    font-weight: 600;
    color: #1f2937;
    flex: 1;
    font-size: 13px;
    line-height: 1.4;
}

.ty-le-keo-container .bxh-player-cell {
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
}

.ty-le-keo-container .bxh-player-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    background: #f0f0f0;
}

.ty-le-keo-container .bxh-player-info {
    flex: 1;
}

.ty-le-keo-container .bxh-player-name {
    font-weight: 600;
    color: #1f2937;
    display: block;
}

.ty-le-keo-container .bxh-player-number {
    font-size: 11px;
    color: #666;
}

.ty-le-keo-container .bxh-points {
    font-weight: 700;
    font-size: 15px;
    color: #1f2937;
    background: #f0f9ff;
    padding: 6px 10px;
    border-radius: 6px;
    display: inline-block;
}

/* Form indicators (W/D/L) */
.ty-le-keo-container .bxh-form-container {
    display: flex;
    gap: 3px;
    justify-content: center;
}

.ty-le-keo-container .bxh-form-match {
    width: 20px;
    height: 20px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    color: white;
}

.ty-le-keo-container .bxh-form-match.win {
    background: linear-gradient(135deg, rgb(0, 155, 58) 0%, rgb(0, 57, 34) 100%);
}

.ty-le-keo-container .bxh-form-match.draw {
    background: #fbbf24;
}

.ty-le-keo-container .bxh-form-match.loss {
    background: #ef4444;
}

/* HT/FT Cells */
.ty-le-keo-container .bxh-htft-cell {
    font-size: 11px;
    font-weight: 600;
}

/* Legend */
.ty-le-keo-container .bxh-legend {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.ty-le-keo-container .bxh-legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ty-le-keo-container .bxh-legend-color {
    width: 20px;
    height: 4px;
    border-radius: 2px;
}

.ty-le-keo-container .bxh-legend-label {
    font-size: 12px;
    color: #666;
}

/* Mobile responsive */
@media (max-width: 930px) {
    /* Hide less important columns on mobile */
    .ty-le-keo-container .bxh-mobile-hide {
        display: none;
    }

    /* Compact header */
    .ty-le-keo-container .bxh-header {
        padding: 8px;
        margin-bottom: 10px;
    }

    .ty-le-keo-container .bxh-header-row {
        flex-direction: column;
        gap: 8px;
        align-items: stretch;
    }

    .ty-le-keo-container .bxh-select-wrapper {
        width: 100%;
        align-items: center;
        gap: 6px;
    }

    .ty-le-keo-container .bxh-select-label {
        font-size: 11px;
    }

    .ty-le-keo-container .bxh-league-select {
        width: 100%;
        font-size: 11px;
        padding: 6px 24px 6px 8px;
        min-width: auto;
    }

    /* Inline Tabs Mobile */
    .ty-le-keo-container .bxh-tabs-inline {
        width: 100%;
        flex-wrap: wrap;
        gap: 4px;
    }

    .ty-le-keo-container .bxh-tab {
        padding: 6px 10px;
        font-size: 10px;
        letter-spacing: 0;
        flex: 1;
        min-width: calc(50% - 2px);
    }

    /* Inline Filters Mobile */
    .ty-le-keo-container .bxh-filter-inline {
        width: 100%;
        gap: 4px;
    }

    .ty-le-keo-container .bxh-filter-inline .bxh-radio {
        padding: 6px 10px;
        flex: 1;
    }

    .ty-le-keo-container .bxh-filter-inline .bxh-radio span {
        font-size: 10px;
    }

    /* Hide match quantity on mobile */
    .ty-le-keo-container .bxh-match-quantity {
        display: none;
    }

    /* Compact table wrapper */
    .ty-le-keo-container .bxh-table-wrapper {
        padding: 6px;
        overflow-x: visible;
    }

    /* Compact competition info */
    .ty-le-keo-container .bxh-competition-info {
        padding: 8px 10px;
        gap: 8px;
        margin-bottom: 8px;
    }

    .ty-le-keo-container .bxh-comp-logo {
        width: 24px;
        height: 24px;
    }

    .ty-le-keo-container .bxh-comp-name {
        font-size: 13px;
    }

    .ty-le-keo-container .bxh-comp-season {
        font-size: 11px;
        padding: 3px 10px;
        min-width: 100px;
    }

    /* Compact table */
    .ty-le-keo-container .bxh-table {
        font-size: 11px;
        width: 100%;
        table-layout: auto;
    }

    .ty-le-keo-container .bxh-table th {
        padding: 6px 3px;
        font-size: 9px;
    }

    .ty-le-keo-container .bxh-table td {
        padding: 3px 0px;
    }

    /* Override column widths for mobile */
    .ty-le-keo-container .bxh-table th.bxh-th-rank {
        width: 30px;
        min-width: 30px;
    }

    .ty-le-keo-container .bxh-table th.bxh-th-team {
        min-width: auto;
        width: auto;
    }

    .ty-le-keo-container .bxh-table th.bxh-th-player {
        min-width: auto;
        width: auto;
    }

    .ty-le-keo-container .bxh-table th.bxh-th-stat {
        width: 50px;
        min-width: 45px;
    }

    /* Rank number */
    .ty-le-keo-container .bxh-rank-number {
        min-width: 18px;
        height: 18px;
        font-size: 10px;
    }

    .ty-le-keo-container .bxh-rank-indicator {
        width: 3px;
        height: 18px;
    }

    /* Team cell */
    .ty-le-keo-container .bxh-team-cell {
        gap: 4px;
    }

    .ty-le-keo-container .bxh-team-logo {
        width: 16px;
        height: 16px;
    }

    /* Points */
    .ty-le-keo-container .bxh-points {
        font-size: 12px;
        padding: 4px 6px;
        font-weight: 700;
    }

    /* Form badges */
    .ty-le-keo-container .bxh-form-container {
        gap: 2px;
    }

    .ty-le-keo-container .bxh-form-match {
        width: 16px;
        height: 16px;
        font-size: 8px;
        border-radius: 2px;
    }

    /* Player cell */
    .ty-le-keo-container .bxh-player-cell {
        gap: 4px;
    }

    .ty-le-keo-container .bxh-player-avatar {
        width: 20px;
        height: 20px;
    }

    .ty-le-keo-container .bxh-player-name {
        font-size: 11px;
        max-width: 100px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .ty-le-keo-container .bxh-player-number {
        font-size: 9px;
    }

    /* Ensure team name is compact on mobile */
    .ty-le-keo-container .bxh-team-name {
        font-size: 11px;
        line-height: 1.2;
        max-width: 100px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    /* Legend */
    .ty-le-keo-container .bxh-legend {
        margin-top: 10px;
        padding-top: 10px;
        gap: 8px;
    }

    .ty-le-keo-container .bxh-legend-item {
        gap: 6px;
    }

    .ty-le-keo-container .bxh-legend-label {
        font-size: 10px;
    }
}
