body {
  background: #f8f9fa !important;
}

.filter-bar {
  background: #fff;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.match-header {
  background: #003049;
  color: #fff;
  padding: 10px 15px;
  border-radius: 6px 6px 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.odds-scroll {
  display: flex;
  overflow-x: auto;
  gap: 10px;
  padding: 15px;
  background: #fff;
  border-radius: 0 0 6px 6px;
  -webkit-overflow-scrolling: touch;
}

.odd-card {
  flex: 0 0 auto;
  position: relative;
  width: 100px;
  height: 80px;
  border-radius: 8px;
  color: #fff;
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translateZ(0);
}

.odd-green {
  background: #198754;
}

.odd-red {
  background: #dc3545;
}

.odd-grey {
  background: #6c757d;
}

.odd-blue {
  background: #105897 !important;
}

.odd-card small {
  position: absolute;
  top: 5px;
  left: 8px;
  font-size: 0.65rem;
  opacity: 0.85;
  background: rgba(255, 255, 255, 0.5);
  padding: 2px 5px;
  border-radius: 4px;
}

.odd-card span {
  position: absolute;
  bottom: 5px;
  right: 8px;
  font-size: 0.75rem;
  font-weight: bold;
  background: rgba(255, 255, 255, 0.5);
  padding: 2px 5px;
  border-radius: 4px;
}

.odd-card .label {
  font-weight: 600;
  font-size: 0.85rem;
}

.odd-card .change {
  position: absolute;
  top: 5px;
  right: 8px;
  font-size: 0.65rem;
  background: rgba(255, 255, 255, 0.5);
  padding: 2px 5px;
  border-radius: 4px;
}

.backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.spinner {
  width: 60px;
  height: 60px;
  border: 6px solid #ccc;
  border-top-color: #007bff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.cursor-pointer {
  cursor: pointer;
}

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