body {
  font-family: "Dosis", sans-serif;
  background-color: #fff;
  font-size: 20px;
  color: #212049;
}

.material-icons {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  vertical-align: middle;
}
.material-icons.fa-3x {
  font-size: 3rem;
}
.material-icons.me-1 {
  margin-right: 0.25rem;
}
.material-icons.me-2 {
  margin-right: 0.5rem;
}

.live-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.live-indicator .live-dot {
  width: 8px;
  height: 8px;
  background-color: #dc3545;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.live-indicator .live-text {
  color: #dc3545;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
}

@keyframes pulse {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.connection-status {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.match-card {
  height: auto;
  min-height: 200px;
  transition: box-shadow 0.2s ease;
}
.match-card .card-header {
  border-bottom: none;
  align-items: center;
  display: flex;
}
.match-card .card-header h6 {
  margin: 0;
  padding: 0;
}
.match-card .card-header .match-status {
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 600;
  display: inline-flex;
}
.match-card .card-header .match-status .material-icons {
  margin-right: 0.25rem;
}
.match-card .card-header .match-duration {
  font-size: 0.7rem;
  opacity: 0.9;
}
.match-card .card-body {
  padding: 0.7rem 1rem;
}

.live-match-card .match-status {
  color: #dc3545;
}

.completed-match-card .match-status {
  color: #198754;
}

.tennis-score-display .score-line {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  border-bottom: 1px solid #141f42;
  background-color: #2b4b86;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
.tennis-score-display .score-line .left .player-name {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: left;
}
.tennis-score-display .score-line .left .player-name .text {
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 600;
  position: relative;
  padding: 0.5rem 0 0.5rem 0.5rem;
  color: white;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 26ch;
}
.tennis-score-display .score-line .left .serve-indicator {
  margin-left: 0.5rem;
  top: -0.08rem;
  color: yellow;
}
.tennis-score-display .score-line .left .serve-indicator.material-icons {
  font-size: 0.8rem;
}
.tennis-score-display .score-line .right {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 0;
}
.tennis-score-display .score-line .right .set-score {
  width: 40px;
  height: 40px;
  background-color: #2b4b86;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 600;
  border-left: 1px solid white;
}
.tennis-score-display .score-line .right .set-score.loser {
  color: #6b81aa;
}
.tennis-score-display .score-line .right .set-score.current {
  background-color: white;
  color: #2b4b86;
}
.tennis-score-display .score-line .right .current-points {
  font-size: 1.2rem;
  font-weight: 600;
  width: 40px;
  height: 40px;
  background-color: #141f42;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}
.tennis-score-display .score-line .right .current-points.tiebreak {
  background-color: #fff700;
  color: #141f42;
}

.match-metadata {
  font-size: 0.8rem;
  color: #6c757d;
  margin-bottom: 1rem;
}
.match-metadata .metadata-item {
  display: inline-flex;
  align-items: center;
  margin-right: 1rem;
}
.match-metadata .metadata-item .material-icons {
  font-size: 0.9rem;
  vertical-align: middle;
  margin-right: 0.25rem;
}

.tournament-link {
  margin: 0.25rem;
}
.tournament-link .btn {
  font-size: 0.9rem;
}

.youtube-stream-card .card-img-top {
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
}
.youtube-stream-card .stream-title {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}
.youtube-stream-card .stream-meta {
  font-size: 0.8rem;
  color: #6c757d;
}
.youtube-stream-card .live-badge {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  z-index: 10;
}
.youtube-stream-card .live-badge .badge {
  font-size: 0.7rem;
}
.youtube-stream-card .live-badge .badge .material-icons {
  animation: pulse 2s infinite;
}
.youtube-stream-card .stream-stats {
  display: flex;
  flex-direction: row;
  gap: 0.25rem;
}
.youtube-stream-card .stream-stats .stat-item {
  font-size: 0.75rem;
  color: #6c757d;
  margin-bottom: 0.25rem;
  margin-right: 0.25rem;
  display: flex;
  align-items: center;
}

@keyframes pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@media (max-width: 768px) {
  .container-fluid {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .tennis-score-display .score-line .left .player-name .text {
    max-width: 20ch;
    font-size: 0.7rem;
  }
  .tennis-score-display .score-line .right .set-score,
  .tennis-score-display .score-line .right .current-points {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
  .match-metadata .metadata-item {
    display: block;
    margin-right: 0;
    margin-bottom: 0.25rem;
  }
}
.loading-state {
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.empty-state {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

footer {
  margin-top: auto;
}

.main-logo img {
  width: 80px;
  height: auto;
  margin-bottom: 1rem;
}

.section-card .card-title {
  display: inline-flex;
  align-items: center;
  margin: 0.1rem 0 0.2rem 0;
}
.section-card .card-title .material-icons {
  margin-right: 0.5rem;
}

.powered-by {
  font-size: 0.8rem;
  color: #6c757d;
  padding-left: 1rem;
}/*# sourceMappingURL=public-livescore.css.map */