/* =========================================================
   Livescores Page — Matches GoalLogic Machine filter style
   ========================================================= */

/* ── Page Header ─────────────────────────────────────────── */
.ls-page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0 18px 0;
    border-bottom: 1px solid var(--border);
    margin-bottom: 16px;
}

.ls-page-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -0.01em;
}

.ls-page-title i {
    color: var(--accent-red);
    font-size: 16px;
}

/* ── Date Picker ─────────────────────────────────────────── */
.ls-date-picker input[type="date"] {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    color: var(--text-primary);
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    outline: none;
    cursor: pointer;
    transition: border-color 0.15s;
}

.ls-date-picker input[type="date"]:hover,
.ls-date-picker input[type="date"]:focus {
    border-color: var(--accent-blue, #3b82f6);
}

.ls-date-control-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
}

.ls-sound-toggle-slot {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    min-width: 32px;
}

.status-btn.live-status-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #ef4444;
}

.status-btn.live-status-btn.active,
.status-btn.live-status-btn:hover {
    color: #dc2626;
}

.live-count-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    box-sizing: border-box;
    font-size: 10px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0;
    white-space: nowrap;
}

.live-count-badge[hidden] {
    display: none !important;
}

.ls-live-count-badge {
    color: #ffffff;
    background: linear-gradient(135deg, #ef4444, #b91c1c);
    box-shadow: 0 3px 8px rgba(239, 68, 68, 0.28);
}

/* ── League Accordion Group ──────────────────────────────── */
.ls-league-group {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-bottom: 8px;
    overflow: hidden;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.ls-league-group.open {
    border-color: var(--border-hover, rgba(255,255,255,0.12));
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05);
}

/* ── League Header (accordion trigger) ───────────────────── */
.ls-league-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 12px;
    cursor: pointer;
    user-select: none;
    background: var(--bg-secondary);
    min-height: 56px;
    gap: 16px;
    outline: none;
}

.ls-league-header:hover {
    background: var(--bg-hover, rgba(120, 120, 160, 0.08));
}

.ls-league-header:focus-visible {
    box-shadow: inset 0 0 0 2px var(--accent-blue, #3b82f6);
}

.ls-league-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
}

.ls-league-logo,
.ls-league-logo-fallback {
    width: 32px;
    height: 32px;
    object-fit: contain;
    flex-shrink: 0;
}

.ls-league-logo-fallback {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    color: var(--text-tertiary);
    background: var(--bg-tertiary, rgba(120, 120, 160, 0.08));
}

.ls-league-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
    min-width: 0;
}

.ls-league-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-decoration: none;
    transition: opacity 0.15s, color 0.15s;
}

.ls-league-name:hover {
    text-decoration: underline;
    opacity: 0.85;
}

.ls-league-country {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    width: fit-content;
    max-width: 100%;
    font-size: 12px;
    font-weight: 400;
    color: var(--text-tertiary);
    text-decoration: none;
    transition: opacity 0.15s, color 0.15s;
}

.ls-league-country span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ls-country-flag {
    width: 16px;
    height: 12px;
    object-fit: cover;
    border-radius: 2px;
    flex-shrink: 0;
}

.ls-country-fallback {
    width: 16px;
    text-align: center;
    font-size: 10px;
}

.ls-league-country:hover {
    text-decoration: underline;
    color: var(--text-secondary, #64748b);
}

.ls-league-meta {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    flex-shrink: 0;
}

.ls-league-count {
    display: inline-flex;
    align-items: baseline;
    justify-content: center;
    min-width: 18px;
    padding: 0;
    font-size: 12px;
    font-weight: 800;
    color: var(--text-tertiary);
    background: transparent;
    letter-spacing: 0;
}

.ls-league-live-count {
    color: #cb1818;
}

.ls-league-count-divider {
    padding: 0 1px;
    color: var(--text-tertiary);
}

.ls-chevron-button {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: var(--bg-primary);
}

.ls-chevron-slot {
    width: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ls-chevron {
    font-size: 12px;
    color: var(--text-tertiary);
    transition: transform 0.25s ease;
    flex-shrink: 0;
}

.ls-league-group.open .ls-chevron {
    transform: rotate(180deg);
}

/* ── League Body (fixture rows container) ────────────────── */
.ls-league-body {
    border-top: 1px solid var(--border);
}

/* ── Match Row ───────────────────────────────────────────── */
.ls-match-row {
    display: flex;
    align-items: center;
    padding: 7px 12px;
    border-bottom: 1px solid var(--border);
    gap: 0;
    min-height: 46px;
    transition: background 0.15s;
}

.ls-match-row:last-child {
    border-bottom: none;
}

.ls-match-row:hover {
    background: var(--bg-hover, rgba(255,255,255,0.03));
}

.ls-match-row--clickable {
    cursor: pointer;
}

.ls-match-row--clickable:hover {
    background: rgba(16, 185, 129, 0.06);
}

.ls-return-highlight {
    outline: 2px solid rgba(16, 185, 129, 0.5);
    background: rgba(16, 185, 129, 0.08) !important;
    box-shadow: inset 3px 0 0 var(--accent-green, #10b981);
    transition: outline-color 0.2s ease, background 0.2s ease;
}

/* ── Column: Time / Minute ───────────────────────────────── */
.ls-col-time {
    width: 68px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1px;
}

.ls-col-time .pc-minute-label {
    font-size: 11px;
    font-weight: bold;
    color: var(--text-tertiary);
    text-align: left;
    display: block;
}

.ls-col-time .pc-minute-label.label-finished {
    font-size: 11px;
    font-weight: bold;
    color: var(--text-tertiary);
    text-transform: capitalize;
}

.ls-col-time .pc-minute-label.label-live {
    color: var(--accent-red, #ef4444) !important;
}

.ls-time-text {
    font-size: 12px;
    font-weight: bold;
    color: var(--text-secondary);
}

.ls-minute {
    font-size: 12px;
    font-weight: bold;
}

.ls-ft-label {
    font-size: 11px;
    font-weight: bold;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.ls-disrupted-label {
    font-size: 11px;
    font-weight: bold;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

/* ── Column: Teams ───────────────────────────────────────── */
.ls-col-teams {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-width: 0;
    padding: 0 8px;
}

.ls-team-line-row {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.ls-crest {
    width: 18px;
    height: 18px;
    object-fit: contain;
    flex-shrink: 0;
}

.ls-crest-ph {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--bg-tertiary, rgba(255,255,255,0.08));
    flex-shrink: 0;
    display: inline-block;
}

.ls-team-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ── Column: Score ───────────────────────────────────────── */
.ls-col-score {
    width: 32px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ls-score-vertical {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 100%;
}

.ls-score-line {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 18px; /* matches .ls-crest height of 18px */
}

.ls-score-num {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
}

/* Reuse match_state.js classes */
.score-live {
    color: var(--accent-red, #ef4444) !important;
}

.score-strong {
    color: var(--text-primary) !important;
    font-weight: 700 !important;
}

.score-faded {
    color: var(--text-tertiary) !important;
    font-weight: 400 !important;
}

/* Label injected by match_state.js */
.pc-minute-label {
    font-size: 10px;
    font-weight: 500;
    color: var(--text-tertiary);
    letter-spacing: 0.02em;
    line-height: 1;
    text-align: center;
}

.pc-minute-label.label-live {
    color: var(--accent-red, #ef4444);
}

.pc-minute-label.label-finished {
    color: var(--text-tertiary);
}

.pc-minute-label.label-status-disrupted {
    color: var(--text-tertiary);
}

/* live-tick from match_state.js startLiveClock */
.live-tick {
    font-size: 10px;
}

/* injury time badge injected by match_state.js */
.injury-time-container {
    font-size: 10px;
    font-weight: 600;
    color: var(--accent-orange, #f59e0b);
    text-align: center;
}

/* ── Column: Actions ─────────────────────────────────────── */
.ls-col-actions {
    width: 90px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.ls-stats-link {
    color: var(--text-tertiary);
    font-size: 14px;
    padding: 4px 6px;
    border-radius: 4px;
    transition: color 0.15s, background 0.15s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.ls-stats-link:hover {
    color: var(--text-primary);
    background: var(--bg-tertiary, rgba(255,255,255,0.06));
}

/* ── Preview Button (scoped override for inline row context) ─────────────────
   The global .pc-preview-btn uses position:absolute (for prediction cards).
   Inside a livescores row we need it inline, so we override only what breaks.
────────────────────────────────────────────────────────────────────────────── */
.ls-preview-btn.pc-preview-btn {
    position: relative;        /* override the absolute from match_result.css */
    bottom: auto;
    right: auto;
    padding: 3px 9px;
    font-size: 10px;
    border-radius: 4px;
    white-space: nowrap;
    flex-shrink: 0;
}

.ls-preview-btn.pc-preview-btn .pc-preview-tooltip {
    top: auto;
    bottom: calc(100% + 6px);  /* pop up above the button */
    right: 0;
    left: auto;
}

.ls-preview-btn.pc-preview-btn:hover .pc-preview-tooltip {
    top: auto;
    bottom: calc(100% + 10px);
}

/* ── Skeleton Loading ────────────────────────────────────── */
.ls-skeleton-row {
    display: flex;
    align-items: center;
    padding: 10px 14px;
    border-bottom: 1px solid var(--border);
    gap: 10px;
    min-height: 52px;
}

.ls-skeleton-row:last-child {
    border-bottom: none;
}

.ls-shimmer {
    background: linear-gradient(
        90deg,
        var(--bg-tertiary, rgba(255,255,255,0.06)) 25%,
        var(--border, rgba(255,255,255,0.10)) 50%,
        var(--bg-tertiary, rgba(255,255,255,0.06)) 75%
    );
    background-size: 200% 100%;
    animation: ls-shimmer 1.4s ease-in-out infinite;
    border-radius: 4px;
}

@keyframes ls-shimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.ls-time-skeleton {
    width: 36px;
    height: 12px;
    flex-shrink: 0;
}

.ls-teams-skeleton {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ls-team-line {
    height: 12px;
    border-radius: 4px;
}

.ls-score-skeleton {
    width: 36px;
    height: 18px;
    border-radius: 4px;
    flex-shrink: 0;
}

/* ── Empty States ────────────────────────────────────────── */
.ls-empty-league {
    padding: 16px 14px;
    font-size: 12px;
    font-weight: 400;
    color: var(--text-tertiary);
    font-style: italic;
    text-align: center;
}

.ls-no-matches {
    text-align: center;
    padding: 48px 20px;
    color: var(--text-secondary);
    background: var(--bg-secondary);
    border: 1px dashed var(--border);
    border-radius: 8px;
}

.ls-no-matches i {
    font-size: 28px;
    color: var(--text-tertiary);
    margin-bottom: 10px;
    display: block;
}

.ls-no-matches p {
    font-size: 14px;
    font-weight: 400;
    margin: 0;
}

/* ────────────────────────────────────────────────────────── */
/* 🔴 PREMIUM GOAL INTERACTIVE ANIMATIONS                     */
/* ────────────────────────────────────────────────────────── */

/* ── Container for Dot & Badge ── */
.ls-goal-indicator {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
    vertical-align: middle;
    flex-shrink: 0;
}

/* ── Stage 1: Pre-alert Blinking Dot ── */
.ls-goal-dot-outer {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    border: 1.5px solid rgba(239, 68, 68, 0.4);
    border-radius: 50%;
    background: transparent;
    animation: goalDotPulse 1.2s infinite ease-in-out;
}

.ls-goal-dot {
    width: 6px;
    height: 6px;
    background-color: #ef4444;
    border-radius: 50%;
    box-shadow: 0 0 6px #ef4444;
}

/* ── Stage 2: GOAL Text Badge ── */
.ls-goal-badge {
    font-size: 10px;
    font-weight: 800;
    color: #ffffff;
    background: linear-gradient(135deg, #ef4444 0%, #ff7878 100%);
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.6);
    animation: goalBadgeBlink 1s infinite alternate;
}

/* ── Live minute & score changes during Alert ── */
.minute-goal-alert {
    color: #ef4444 !important;
    font-weight: 800 !important;
    animation: textBlinkRed 1s infinite alternate;
}

.score-just-scored {
    color: #ef4444 !important;
    font-weight: 800 !important;
    transform: scale(1.15);
    transition: transform 0.2s ease, color 0.2s ease;
    text-shadow: 0 0 8px rgba(239, 68, 68, 0.6);
}

/* ── Stage 2: Main Match Row/Card Highlight ── */
.goal-stage-active {
    background: linear-gradient(90deg, rgba(239, 68, 68, 0.12) 0%, rgba(239, 68, 68, 0.04) 40%, rgba(0,0,0,0) 100%) !important;
    border-left: 3px solid #ef4444 !important;
    animation: rowGoalPulse 2s infinite ease-in-out;
    position: relative;
    overflow: hidden;
}

/* Make the scoring team's text color pop elegantly */
.goal-stage-active .ls-team-name {
    font-weight: 800 !important;
    color: var(--text-primary);
}

/* ── Fade-out back to Normal ── */
.goal-stage-fadeout {
    transition: background 1.5s ease, border-left 1.5s ease;
    background: transparent;
    border-left: 3px solid transparent;
}

/* ── Keyframe Animations ── */
@keyframes goalDotPulse {
    0% {
        transform: scale(0.9);
        border-color: rgba(239, 68, 68, 0.4);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.3);
    }
    50% {
        transform: scale(1.1);
        border-color: rgba(239, 68, 68, 0.8);
        box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.2);
    }
    100% {
        transform: scale(0.9);
        border-color: rgba(239, 68, 68, 0.4);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
    }
}

@keyframes goalBadgeBlink {
    0% {
        opacity: 0.8;
        transform: scale(0.95);
        box-shadow: 0 0 6px rgba(239, 68, 68, 0.4);
    }
    100% {
        opacity: 1;
        transform: scale(1.05);
        box-shadow: 0 0 12px rgba(239, 68, 68, 0.8);
    }
}

@keyframes textBlinkRed {
    0% { opacity: 0.6; }
    100% { opacity: 1; text-shadow: 0 0 6px rgba(239, 68, 68, 0.6); }
}

@keyframes rowGoalPulse {
    0% {
        background-color: rgba(239, 68, 68, 0.08);
    }
    50% {
        background-color: rgba(239, 68, 68, 0.16);
    }
    100% {
        background-color: rgba(239, 68, 68, 0.08);
    }
}

/* ==========================================================================
   LIVE / BET WIDGET (FLASHSCORE STYLE)
   ========================================================================== */

.ls-bet-live-widget {
    display: inline-flex !important;
    position: relative !important;
    align-items: center !important;
    width: 48px !important;
    height: 20px !important;
    background: #ff0043;
    border-radius: 4px !important;
    overflow: hidden !important;
    text-decoration: none !important;
    cursor: pointer;
    box-shadow: 0 0 6px rgba(255, 0, 67, 0.4);
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s ease;
    flex: 0 0 48px !important;
    box-sizing: border-box !important;
}

.ls-bet-live-widget:hover {
    transform: scale(1.06);
    box-shadow: 0 2px 10px rgba(255, 0, 67, 0.7);
}

.ls-bet-live-widget:active {
    transform: scale(0.95);
}

.ls-bet-live-arrow {
    position: absolute !important;
    right: 4px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    color: #ffffff !important;
    font-size: 7px !important;
    font-weight: 800 !important;
    pointer-events: none !important;
    z-index: 3 !important;
}

.ls-bet-live-text-wrapper {
    position: absolute !important;
    left: 4px !important;
    top: 0 !important;
    width: 32px !important;
    height: 20px !important;
    overflow: hidden !important;
    z-index: 1 !important;
}

.ls-bet-live-track {
    display: flex !important;
    flex-direction: row !important;
    width: 64px !important;
    height: 20px !important;
    animation: betLiveSlide 4s infinite cubic-bezier(0.85, 0, 0.15, 1) !important;
    box-sizing: border-box !important;
}

.ls-bet-live-slide {
    width: 32px !important;
    height: 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #ffffff !important;
    font-size: 8px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    box-sizing: border-box !important;
    flex: 0 0 32px !important;
}

@keyframes betLiveSlide {
    0%, 40% {
        transform: translateX(0);
    }
    50%, 90% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

/* ── PREMIUM STATUS TABS (FLASHSCORE STYLE OVERRIDES) ── */
#ls-status-filters.status-filters {
    background: var(--bg-secondary, #f3f4f6);
    border: 1px solid var(--border, #e5e7eb);
    padding: 4px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 2px;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);
}

#ls-status-filters .status-btn {
    border-radius: 16px;
    padding: 6px 16px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--text-tertiary, #9ca3af);
    background: transparent;
    border: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    user-select: none;
}

#ls-status-filters .status-btn:hover {
    color: var(--text-primary, #111827);
    background: var(--bg-primary-hover, rgba(0, 0, 0, 0.03));
}

#ls-status-filters .status-btn.active {
    background: var(--bg-primary, #ffffff);
    color: var(--text-primary, #111827);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
}

/* Match the Date Navigator */
.date-navigator {
    background: var(--bg-secondary, #f3f4f6);
    border: 1px solid var(--border, #e5e7eb);
    padding: 4px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);
    margin-left: auto;
}

.date-btn {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: none;
    background: transparent;
    color: var(--text-tertiary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    transition: all 0.2s ease;
}

.date-btn:hover {
    background: var(--bg-primary-hover, rgba(0, 0, 0, 0.03));
    color: var(--text-primary);
}

.current-date {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-primary);
    padding: 0 12px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

/* ── ODDS TAB COLUMNS (FLASHSCORE STYLE) ── */
.ls-odds-header-labels {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ls-odds-header-labels span {
    width: 58px; /* Match the exact width of ls-odd-box */
    text-align: center;
    font-size: 11px;
    font-weight: 800;
    color: var(--text-tertiary, #9ca3af);
    text-transform: uppercase;
}

@media (max-width: 768px) {
    #livescores-ajax-container .ls-odds-header-labels {
        display: none !important;
    }

    #livescores-ajax-container .ls-preview-btn .pc-preview-tooltip,
    #livescores-ajax-container .ls-preview-btn .pc-preview-tooltip::after {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
        content: none !important;
    }
}

.ls-col-odds {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-right: 12px;
}

.ls-odd-box {
    width: 58px;
    height: 28px;
    box-sizing: border-box;
    border: 1px solid var(--border, #e5e7eb);
    background: var(--bg-primary, #ffffff);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-primary, #111827);
    text-decoration: none !important;
    transition: all 0.15s ease;
    user-select: none;
    box-shadow: 0 1px 2px rgba(0,0,0,0.02);
}

.ls-odd-box:hover {
    border-color: var(--text-tertiary, #9ca3af);
    background: var(--bg-secondary, #f9fafb);
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.ls-odd-box.fav {
    background: #ffcc00 !important; /* Premium yellow favorite / winner background */
    border-color: #e6b800 !important;
    color: #000000 !important;
}

.ls-odd-trend {
    font-size: 9px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
}

.ls-odd-trend.up {
    color: #00b050 !important; /* Green up trend */
}

.ls-odd-trend.down {
    color: #ff0000 !important; /* Red down trend */
}

/* SOLID BET BUTTON (FLASHSCORE LIVE STYLE) */
.ls-bet-btn-solid {
    width: 52px;
    height: 24px;
    background: #ff003c !important; /* Solid vibrant red */
    color: #ffffff !important;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    text-decoration: none !important;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 4px rgba(255, 0, 60, 0.25);
    transition: all 0.2s ease;
}

.ls-bet-btn-solid:hover {
    background: #e60036 !important;
    transform: scale(1.05);
}

/* OUTLINE LIVE LABEL BUTTON */
.ls-live-label-pill {
    width: 52px;
    height: 24px;
    border: 1px solid var(--border, #e5e7eb);
    background: var(--bg-primary, #ffffff);
    color: var(--text-tertiary, #9ca3af);
    font-size: 9px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    letter-spacing: 0.05em;
}
