/**
 * LIVESCORES CSS - LSC VERSION
 * Advanced styling for the football livescores with gradient backgrounds
 */

/* Custom color variables */
:root {
  --lsc-background-gradient: linear-gradient(0deg, #181820 50%, #181818 100%);
  --lsc-text-color: #fff;
  --lsc-secondary-text: rgba(23, 28, 39, 1);
  --lsc-highlight-color: #29A81E;
  --lsc-border-color: 1px solid rgba(60, 68, 89, 1);
  --lsc-dark-bg: #171718;
  --lsc-light-bg: #303037;
  
  /* New variables */
  --lsc-font-family: 'Oswald', sans-serif;
  --lsc-border-radius: 4px;
  --lsc-font-size-xs: 10px;
  --lsc-font-size-sm: 11px;
  --lsc-font-size-md: 12px;
  --lsc-font-size-lg: 13px;
  --lsc-font-size-xl: 14px;
  --lsc-spacing-xs: 4px;
  --lsc-spacing-sm: 8px;
  --lsc-spacing-md: 10px;
  --lsc-spacing-lg: 15px;
  --lsc-team-logo-size: 24px;
  --lsc-team-logo-size-mobile: 18px;
  
  /* Breakpoints */
  --lsc-breakpoint-lg: 992px;
  --lsc-breakpoint-md: 768px;
  --lsc-breakpoint-sm: 576px;
  --lsc-breakpoint-xs: 375px;
}

/* Basic Layout & Container */
.livescores-container {
  max-width: 100%;
  font-family: 'Oswald', sans-serif;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 20px;
  background: var(--lsc-background-gradient);
  color: var(--lsc-text-color);
  border: none;
}

/* HEADER AND NAVIGATION */
.livescores-tabs {
  display: flex;
  background-color: var(--lsc-dark-bg);
  overflow-x: auto;
  white-space: nowrap;
  border-bottom: var(--lsc-border-color);
}

.livescores-tabs .tab {
  padding: 10px 15px;
  font-size: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.livescores-tabs .tab:hover {
  background-color: var(--lsc-secondary-text);
}

.livescores-tabs .tab.active {
  color: var(--lsc-highlight-color);
  border-bottom: 2px solid var(--lsc-highlight-color);
}

.livescores-tabs .tab-count {
  background-color: var(--lsc-light-bg);
  border-radius: 8px;
  padding: 0 6px;
  margin-left: 5px;
  font-size: 11px;
}

/* Current time info and date selector */
.current-time-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 8px 15px;
  font-size: 12px;
  background-color: var(--lsc-dark-bg);
  border-bottom: var(--lsc-border-color);
}

.date-selector {
  display: flex;
  align-items: center;
}

.date-link {
  margin-left: 8px;
  padding: 2px 8px;
  border-radius: 4px;
  background-color: var(--lsc-light-bg);
  color: var(--lsc-text-color);
  text-decoration: none;
}

.date-link.active {
  background-color: var(--lsc-highlight-color);
  color: var(--lsc-dark-bg);
}

/* Controls section */
.livescores-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 15px;
  background-color: var(--lsc-dark-bg);
  border-bottom: var(--lsc-border-color);
}

.livescores-refresh {
  background-color: var(--lsc-light-bg);
  color: var(--lsc-text-color);
  border: none;
  padding: 5px 10px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 12px;
}

.livescores-refresh:hover {
  background-color: var(--lsc-highlight-color);
  color: var(--lsc-dark-bg);
}

.odds-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.odds-type-toggle, .bookmaker-selector, .odds-language-selector {
  display: flex;
  align-items: center;
  font-size: 12px;
}

.odds-label {
  margin-right: 5px;
}

/* Toggle switch styling */
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 24px;
}

.odds-type-checkbox {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-label {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--lsc-light-bg);
  border-radius: 12px;
  transition: .4s;
}

.toggle-label:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: var(--lsc-text-color);
  border-radius: 50%;
  transition: .4s;
}

.toggle-label:after {
  content: attr(data-asian);
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  font-size: 10px;
}

.odds-type-checkbox:checked + .toggle-label:before {
  transform: translateX(36px);
}

.odds-type-checkbox:checked + .toggle-label:after {
  content: attr(data-euro);
  right: auto;
  left: 30px;
}

/* Dropdown selects styling */
.bookmaker-select, .odds-language-select {
  background-color: var(--lsc-light-bg);
  color: var(--lsc-text-color);
  border: none;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
}

/* Match list styling */
.livescores-matches {
  background-color: var(--lsc-background-gradient);
}

.matches-list {
  width: 100%;
}

/* Match header styling */
.match-header {
  display: flex;
  padding: 10px 15px;
  background-color: var(--lsc-dark-bg);
  font-weight: bold;
  font-size: 12px;
  color: var(--lsc-highlight-color);
  border-bottom: var(--lsc-border-color);
}

.match-header .match-odds-section {
  display: flex;
  justify-content: flex-end;
}

.match-header .odds-header[data-odds-type="1x2"] {
  display: none; /* Hide European odds header by default */
}

.euro-odds-active .match-header .odds-header[data-odds-type="1x2"] {
  display: block; /* Show European odds header when active */
}

.euro-odds-active .match-header .odds-header[data-odds-type="handicap"],
.euro-odds-active .match-header .odds-header[data-odds-type="overunder"] {
  display: none; /* Hide Asian odds headers when European odds are active */
}

/* Common team styles */
.match-home, .match-away {
  display: flex;
  align-items: center;
  width: 150px;
  overflow: hidden;
}

.match-home {
  justify-content: flex-end;
  text-align: right;
}

.match-away {
  justify-content: flex-start;
  text-align: left;
}

/* Common team logo styles */
.team-logo {
  width: var(--lsc-team-logo-size);
  height: var(--lsc-team-logo-size);
  object-fit: contain;
}

.match-home .team-logo {
  margin-left: var(--lsc-spacing-xs);
}

.match-away .team-logo {
  margin-right: var(--lsc-spacing-xs);
}

.team-name {
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 120px;
}

.match-score {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  font-weight: bold;
  margin: 0 10px;
}

.score-home, .score-away {
  padding: 2px 5px;
  min-width: 15px;
  text-align: center;
}

.upcoming-match {
  color: var(--lsc-highlight-color);
}

.match-halftime {
  width: 40px;
  min-width: 40px;
  text-align: center;
  font-size: 12px;
  opacity: 0.7;
}

/* Common odds section styles */
.match-odds-section {
  display: flex;
  width: 400px;
}

.match-odds-container {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

/* Asian odds (handicap and over/under) - visible by default */
.match-odds-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 90px;
}

/* Display settings for all odds pairs */
.asian-odds-pair,
.overunder-odds-pair {
  display: flex;
  width: 100%;
  justify-content: space-between;
}

/* Labels for Asian handicap and over/under */
.asian-handicap, .over-under {
  font-size: 11px;
  color: var(--lsc-highlight-color);
  margin-bottom: 3px;
  text-align: center;
  width: 100%;
}

/* Đảm bảo cả hai loại kèo hiển thị giống nhau */
.match-odds-group[data-odds-type="handicap"] {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.match-odds-group[data-odds-type="handicap"] .asian-handicap {
  margin-bottom: 3px;
  text-align: center;
  width: 100%;
}

.match-odds-group[data-odds-type="handicap"] .asian-odds {
  display: flex;
  width: 100%;
  justify-content: space-between;
}

/* Common styles for all odds buttons */
.match-odds, .asian-home, .asian-away, .over-odds, .under-odds {
  font-size: 12px;
  padding: 2px 4px;
  border-radius: 3px;
  background-color: var(--lsc-light-bg);
  min-width: 28px;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.2s;
}

/* Đảm bảo width của các odds giống nhau */
.asian-odds-pair .asian-home,
.asian-odds-pair .asian-away,
.overunder-odds-pair .over-odds,
.overunder-odds-pair .under-odds {
  width: 48%;
}

/* European odds (1X2) - hidden by default */
.european-odds {
  display: none !important; /* Hidden by default with !important to ensure it's hidden */
  flex-direction: row !important;
  justify-content: space-between;
  width: 190px !important; /* Equal to combined width of Asian handicap and over/under */
  padding: 0 5px;
}

.european-odds .match-odds {
  width: 30%;
}

/* Toggle between Asian and European odds */
.euro-odds-active .european-odds {
  display: flex !important; /* Show with !important when active */
}

.euro-odds-active .match-odds-group[data-odds-type="handicap"],
.euro-odds-active .match-odds-group[data-odds-type="overunder"] {
  display: none !important; /* Hide with !important when European odds are active */
}

/* Match header odds display */
.match-header .match-odds-section {
  display: flex;
  width: 400px;
}

.match-header .match-odds-container {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.match-header .odds-header {
  font-size: 12px;
  color: var(--lsc-highlight-color);
  width: 90px;
  text-align: center;
  display: flex;
  justify-content: center;
}

.match-header .odds-header[data-odds-type="1x2"] {
  display: none; /* Hide European odds header by default */
  width: 190px; /* Equal to combined width of Asian handicap and over/under */
}

.euro-odds-active .match-header .odds-header[data-odds-type="1x2"] {
  display: block; /* Show European odds header when active */
}

.euro-odds-active .match-header .odds-header[data-odds-type="handicap"],
.euro-odds-active .match-header .odds-header[data-odds-type="overunder"] {
  display: none; /* Hide Asian odds headers when European odds are active */
}

/* Compact layout specific styles */
.matches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 10px;
  padding: 10px;
}

.match-card {
  background-color: var(--lsc-dark-bg);
  border-radius: 4px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  border: var(--lsc-border-color);
  position: relative;
}

.match-card.match-live {
  border: 1px solid var(--lsc-highlight-color);
}

.match-league, .match-date, .match-teams, .match-status {
  margin-bottom: 8px;
}

.match-league {
  display: flex;
  align-items: center;
}

.league-logo-small {
  width: 16px;
  height: 16px;
  margin-right: 8px;
}

.league-name-small {
  font-size: 12px;
  opacity: 0.8;
}

.match-date {
  font-size: 12px;
  opacity: 0.7;
}

.match-teams {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.match-teams-section {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* New container for teams and score */
.teams-score-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: calc(100% - 40px);
}

.match-result {
  text-align: center;
  font-weight: bold;
  margin: 5px 0;
}

.match-status {
  text-align: center;
  font-size: 12px;
  color: var(--lsc-highlight-color);
}

/* Card layout odds styling */
.match-card .match-odds-container {
  display: flex;
  width: 100%;
  justify-content: space-between;
  margin-top: 10px;
}

.match-card .european-odds {
  width: 100% !important;
  margin-top: 5px;
}

.match-card .match-odds-group {
  width: 48%;
}

.match-card .european-odds .match-odds {
  width: 32%;
}

/* Skeleton screen */
.skeleton-container {
  padding: 10px;
}

.skeleton-loading {
  background: linear-gradient(90deg, var(--lsc-dark-bg) 25%, var(--lsc-light-bg) 50%, var(--lsc-dark-bg) 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
}

@keyframes skeleton-loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.skeleton-league-header {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  margin-bottom: 10px;
  border-radius: 4px;
}

.skeleton-league-logo {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-right: 10px;
}

.skeleton-league-name {
  width: 150px;
  height: 14px;
  border-radius: 2px;
}

.skeleton-match-item {
  display: flex;
  padding: 10px 15px;
  margin-bottom: 8px;
  border-radius: 4px;
}

.skeleton-time {
  width: 40px;
  height: 14px;
  border-radius: 2px;
  margin-right: 15px;
}

.skeleton-team {
  display: flex;
  width: 120px;
  align-items: center;
}

.skeleton-logo {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  margin: 0 10px;
}

.skeleton-name {
  width: 80px;
  height: 12px;
  border-radius: 2px;
}

.skeleton-score {
  width: 40px;
  height: 14px;
  border-radius: 2px;
  margin: 0 15px;
}

.skeleton-odds {
  width: 80px;
  height: 14px;
  border-radius: 2px;
  margin-left: 15px;
}

/* Show more button */
.show-more-wrapper-lsc {
  text-align: center;
  padding: 15px;
}

.show-more-btn-lsc {
  background-color: var(--lsc-light-bg);
  color: var(--lsc-text-color);
  border: none;
  padding: 8px 15px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 13px;
  transition: all 0.2s;
}

.show-more-btn-lsc:hover {
  background-color: var(--lsc-highlight-color);
  color: var(--lsc-dark-bg);
}

/* Responsive styles */
@media (max-width: var(--lsc-breakpoint-lg)) {
  .match-odds-section {
    width: 240px;
  }
  
  .match-odds-group[data-odds-type="handicap"] {
    width: 70px;
  }
  
  .match-odds-group[data-odds-type="handicap"] .asian-handicap {
    min-width: 30px;
    font-size: var(--lsc-font-size-xs);
  }
  
  .european-odds {
    width: 150px !important;
  }
  
  .match-home, .match-away {
    width: 120px;
  }
  
  .team-name {
    max-width: 90px;
  }
}

@media (max-width: var(--lsc-breakpoint-md)) {
  .match-item {
    flex-wrap: wrap;
    padding: var(--lsc-spacing-md) var(--lsc-spacing-lg) var(--lsc-spacing-lg);
  }
  
  .match-time-section {
    width: 60px;
  }
  
  .match-teams-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    width: calc(100% - 60px);
    margin-bottom: var(--lsc-spacing-sm);
  }
  
  .teams-score-container {
    width: 100%;
    margin-bottom: var(--lsc-spacing-xs);
    justify-content: space-between;
  }
  
  .match-halftime {
    width: auto;
    text-align: right;
    margin-top: var(--lsc-spacing-xs);
    font-size: var(--lsc-font-size-sm);
  }
  
  .match-odds-section {
    width: 100%;
    margin-left: 60px;
  }
  
  .match-odds-container {
    width: 100%;
  }
  
  .european-odds {
    width: 100% !important;
    justify-content: space-around;
    margin-left: 0;
  }
  
  .match-home, .match-away {
    width: auto;
    max-width: 45%;
  }
  
  .team-name {
    max-width: 100px;
  }
  
  .match-score {
    min-width: 50px;
  }
  
  .odds-controls {
    flex-direction: column;
    align-items: flex-end;
    gap: var(--lsc-spacing-xs);
  }
  
  .current-time-info {
    flex-direction: column;
    gap: var(--lsc-spacing-xs);
  }
}

@media (max-width: var(--lsc-breakpoint-sm)) {
  body, .livescores-container {
    background-color: var(--lsc-dark-bg);
    color: var(--lsc-text-color);
    font-family: var(--lsc-font-family);
  }
  
  .match-item {
    position: relative;
    padding: var(--lsc-spacing-sm) var(--lsc-spacing-md);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  
  /* Date row and controls */
  .match-date-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-right: 0;
    margin-bottom: var(--lsc-spacing-xs);
  }
  
  .match-date-time {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--lsc-font-size-sm);
    font-family: var(--lsc-font-family);
  }
  
  .match-controls {
    display: flex;
    align-items: center;
    gap: var(--lsc-spacing-lg);
  }
  
  .play-button {
    width: 16px;
    height: 16px;
    background-color: #ff3333;
    border-radius: 50%;
    display: block;
  }
  
  /* Remove star button styles */
  .star-button {
    display: none;
  }
  
  /* Hide time section */
  .match-time-section {
    display: none;
  }
  
  /* Content wrapper */
  .match-content-wrapper {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    margin-top: 0;
  }
  
  /* Teams section */
  .match-teams-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-left: 0;
    margin-bottom: 0;
    justify-content: center;
    margin-right: var(--lsc-spacing-sm);
    max-width: calc(100% - 70px);
    width: auto;
  }
  
  .match-halftime {
    display: none;
  }
  
  .teams-score-container {
    flex-direction: column;
    width: 100%;
    gap: var(--lsc-spacing-xs);
    align-items: flex-start;
    margin-bottom: 0;
  }
  
  .match-home, .match-away {
    width: 100%;
    max-width: 100%;
    flex-direction: row;
    align-items: center;
    text-align: left;
    margin: 0;
    justify-content: flex-start;
  }
  
  .match-home .team-logo, 
  .match-away .team-logo {
    margin: 0 var(--lsc-spacing-sm) 0 0;
    width: var(--lsc-team-logo-size-mobile);
    height: var(--lsc-team-logo-size-mobile);
    order: -1;
  }
  
  .team-name {
    font-size: var(--lsc-font-size-sm);
    max-width: none;
    text-align: left;
    color: var(--lsc-text-color);
    overflow: visible;
    white-space: normal;
    font-family: var(--lsc-font-family);
    letter-spacing: 0.2px;
  }
  
  .match-score {
    display: none;
  }
  
  /* Odds styling */
  .match-odds-section {
    margin: 0;
    min-width: 65px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 2px;
    align-items: center;
    align-self: center;
    max-width: 70px;
  }
  
  .match-odds-container {
    display: contents;
  }
  
  .match-odds-group {
    width: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--lsc-spacing-xs);
  }
  
  .match-odds-group[data-odds-type="handicap"] {
    order: 1;
  }
  
  .match-odds-group[data-odds-type="overunder"] {
    order: 2;
  }
  
  .european-odds {
    display: flex !important;
    flex-direction: column !important;
    align-items: center;
    gap: var(--lsc-spacing-xs);
    width: auto !important;
    padding: 0;
    order: 3;
  }
  
  .asian-handicap, .over-under {
    color: var(--lsc-text-color);
    font-size: var(--lsc-font-size-xs);
    margin-bottom: 0;
    text-align: center;
    opacity: 0.7;
    font-family: var(--lsc-font-family);
  }
  
  .asian-odds-pair,
  .overunder-odds-pair {
    flex-direction: column;
    align-items: center;
    gap: var(--lsc-spacing-xs);
    width: 100%;
  }
  
  .asian-odds-pair .asian-home,
  .overunder-odds-pair .over-odds,
  .european-odds .home-odds {
    font-size: var(--lsc-font-size-xs);
    width: 100%;
    margin: 0;
    padding: 0;
    text-align: center;
    background: none;
    color: #0088ff;
    min-width: 0;
    font-family: var(--lsc-font-family);
  }
  
  .asian-odds-pair .asian-away,
  .overunder-odds-pair .under-odds,
  .european-odds .draw-odds, 
  .european-odds .away-odds {
    font-size: var(--lsc-font-size-xs);
    width: 100%;
    margin: 0;
    padding: 0;
    text-align: center;
    background: none;
    color: var(--lsc-text-color);
    min-width: 0;
    font-family: var(--lsc-font-family);
  }
  
  /* Hide elements */
  .match-item:after,
  .follow-toggle,
  .match-header,
  .current-time-info,
  .livescores-controls,
  .show-more-wrapper-lsc,
  .live-indicator {
    display: none;
  }
  
  /* League header */
  .league-header {
    background-color: #222;
    padding: var(--lsc-spacing-xs) var(--lsc-spacing-md);
    border-bottom: none;
    align-items: center;
  }
  
  .league-logo {
    width: 16px;
    height: 16px;
    margin-right: var(--lsc-spacing-sm);
  }
  
  .league-name {
    font-size: var(--lsc-font-size-md);
    color: var(--lsc-text-color);
    font-family: var(--lsc-font-family);
    letter-spacing: 0.3px;
  }
}

@media (max-width: var(--lsc-breakpoint-xs)) {
  .match-date-row {
    margin-bottom: var(--lsc-spacing-xs);
  }
  
  .match-date-time {
    font-size: var(--lsc-font-size-xs);
  }
  
  .teams-score-container {
    margin-bottom: 0;
  }
  
  .team-name {
    font-size: var(--lsc-font-size-xs);
  }
  
  .match-odds-group {
    width: auto;
    font-size: var(--lsc-font-size-xs);
  }
  
  .asian-handicap, .over-under {
    font-size: 7px;
  }
  
  .asian-odds-pair .asian-home,
  .overunder-odds-pair .over-odds,
  .european-odds .home-odds,
  .asian-odds-pair .asian-away,
  .overunder-odds-pair .under-odds,
  .european-odds .draw-odds, 
  .european-odds .away-odds {
    font-size: 8px;
  }
  
  .match-odds-section {
    min-width: 55px;
    max-width: 60px;
  }
  
  .match-teams-section {
    max-width: calc(100% - 60px);
  }
}

/* Desktop follow button styles */
.follow-toggle {
  /* position: absolute; */
  /* top: 10px; */
  /* right: 10px; */
  font-size: 18px;
  color: var(--lsc-light-bg);
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 10;
  display: inline-block;
  margin-left: 8px;
  vertical-align: middle;
}

.follow-toggle:hover {
  transform: scale(1.2);
  color: var(--lsc-highlight-color);
}

.follow-toggle.followed {
  color: var(--lsc-highlight-color);
}

.compact-follow {
  top: 10px;
  right: 10px;
}

/* League header styling */
.league-header {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  background-color: var(--lsc-light-bg);
  border-bottom: var(--lsc-border-color);
}

.league-logo {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  object-fit: contain;
}

.league-name {
  font-size: 14px;
  font-weight: bold;
}

/* Match item styling */
.match-item {
  display: flex;
  padding: 10px 15px;
  border-bottom: var(--lsc-border-color);
  transition: background-color 0.2s;
  position: relative;
}

.match-item:hover {
  background-color: rgba(48, 48, 55, 0.5);
}

.match-item.match-live {
  background-color: rgba(var(--lsc-highlight-color, 41, 168, 30), 0.1);
}

.match-time-section, .match-teams-section, .match-odds-section {
  display: flex;
  align-items: center;
}

.match-time-section {
  width: 80px;
}

.match-time {
  color: var(--lsc-text-color);
  font-size: 12px;
  align-items: center;
  display: flex;
  justify-content: center;
}

.live-indicator {
  color: #ff4040;
  font-size: 11px;
  font-weight: bold;
  margin-top: 3px;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { opacity: 0.5; }
  50% { opacity: 1; }
  100% { opacity: 0.5; }
}

.match-teams-section {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* New container for teams and score */
.teams-score-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: calc(100% - 40px);
}

.match-home, .match-away {
  display: flex;
  align-items: center;
  width: 150px;
  overflow: hidden;
}

.match-home {
  justify-content: flex-end;
  text-align: right;
}

.match-away {
  justify-content: flex-start;
  text-align: left;
}

.team-logo {
  width: var(--lsc-team-logo-size);
  height: var(--lsc-team-logo-size);
  object-fit: contain;
}

.match-home .team-logo {
  margin-left: var(--lsc-spacing-xs);
}

.match-away .team-logo {
  margin-right: var(--lsc-spacing-xs);
}

/* MOBILE SPECIFIC CSS - END */