/* UPDATED CSS - Modern styling for your exact structure */

:root {
  --primary-green: #10b981;
  --primary-green-dark: #059669;
  --primary-green-light: #34d399;
  --accent-orange: #f59e0b;
  --accent-orange-dark: #d97706;
  --danger-red: #ef4444;
  --danger-red-dark: #dc2626;
  --info-blue: #3b82f6;
  --neutral-50: #f9fafb;
  --neutral-100: #f3f4f6;
  --neutral-200: #e5e7eb;
  --neutral-300: #d1d5db;
  --neutral-400: #9ca3af;
  --neutral-600: #4b5563;
  --neutral-700: #374151;
  --neutral-800: #1f2937;
  --neutral-900: #111827;
}

/* Keep your original structure but add modern styling */
html, body, .container {
  margin: 0px;
  max-width: 100%;
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', Roboto, sans-serif;
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
  color: var(--neutral-900);
}

/* Modern scoreboard */
.scoreboard-display {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 20px;
  padding: 16px 16px 0px 16px;
  margin-bottom: 8px;
  text-align: center;
  box-shadow: 
    0 10px 25px -5px rgba(0, 0, 0, 0.1),
    0 8px 10px -6px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
}

.score-line {
  position: relative;
  display: flex;
  justify-content: center; /* Keep score centered */
  align-items: center;
  margin-bottom: 8px;
}


.scoreboard-display::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-green) 0%, var(--accent-orange) 100%);
  border-radius: 20px 20px 0 0;
}

.score-container {
  display: flex;
  align-items: baseline;
  justify-content: center; /* Score stays centered */
  gap: 8px;
}


.score-number {
  font-weight: 800 !important;
  color: var(--primary-green) !important;
  font-size: clamp(48px, 15vw, 80px) !important;
  line-height: 0.9 !important;
  letter-spacing: -0.02em !important;
}

.score-separator {
  color: var(--neutral-400) !important;
  font-weight: 300 !important;
  font-size: clamp(36px, 12vw, 60px) !important;
}

.over-display {
  color: var(--neutral-600) !important;
  font-weight: 600 !important;
  background: var(--neutral-100) !important;
  padding: 8px 12px !important;
  border-radius: 12px !important;
  font-size: clamp(14px, 3.5vw, 16px) !important;
  white-space: nowrap;
  position: absolute; /* Position absolutely to not affect centering */
  right: 0; /* Align to right edge */
  top: 50%;
  transform: translateY(-50%); /* Center vertically */
}

/* Modern batsmen cards */
.batsmen-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.batsman-card {
  background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
  border: 1px solid var(--neutral-200);
  border-radius: 16px;
  padding: 8px 16px 8px 16px;
  box-shadow: 
    0 4px 6px -1px rgba(0, 0, 0, 0.05),
    0 2px 4px -2px rgba(0, 0, 0, 0.05);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.batsman-card.striker::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent-orange);
}

.batsman-card:hover {
  transform: translateY(-1px);
  box-shadow: 
    0 8px 12px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.batsman-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-bottom: 4px;
}

.batsman-name {
  font-weight: 700;
  color: var(--neutral-800);
  font-size: 14px;
  cursor: pointer;
  border-bottom: 1px dashed var(--primary-green);
}

.batsman-name:hover {
  color: var(--primary-green);
}

.batsman-stats {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-green);
}

/* Modern action buttons */
.action-buttons-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 8px 0;
}

.action-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}

.extras-group {
  display: flex;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

.extras-group .btn {
  flex: 1; /* This makes each button take equal space */
}

.wicket-retire-group {
  display: flex;
  gap: 4px;
}

.modern-btn {
  border-radius: 12px !important;
  font-weight: 600 !important;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
  position: relative !important;
  overflow: hidden !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  border: none !important;
  height: 56px !important;
  font-size: 16px !important;
}

.modern-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.modern-btn:hover::before {
  left: 100%;
}

.modern-btn:hover {
  transform: translateY(-1px);
}

.btn-run {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%) !important;
  color: white !important;
  box-shadow: 
    0 4px 6px -1px rgba(16, 185, 129, 0.3),
    0 2px 4px -2px rgba(16, 185, 129, 0.3);
}

.btn-run:hover {
  box-shadow: 
    0 8px 12px -3px rgba(16, 185, 129, 0.4),
    0 4px 6px -2px rgba(16, 185, 129, 0.4);
}

.btn-boundary {
  background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-orange-dark) 100%) !important;
  color: white !important;
  box-shadow: 
    0 4px 6px -1px rgba(245, 158, 11, 0.3),
    0 2px 4px -2px rgba(245, 158, 11, 0.3);
}

.btn-boundary:hover {
  box-shadow: 
    0 8px 12px -3px rgba(245, 158, 11, 0.4),
    0 4px 6px -2px rgba(245, 158, 11, 0.4);
}

.btn-action {
  background: linear-gradient(135deg, var(--info-blue) 0%, #2563eb 100%) !important;
  color: white !important;
  box-shadow: 
    0 4px 6px -1px rgba(59, 130, 246, 0.3),
    0 2px 4px -2px rgba(59, 130, 246, 0.3);
}

.btn-action:hover {
  box-shadow: 
    0 8px 12px -3px rgba(59, 130, 246, 0.4),
    0 4px 6px -2px rgba(59, 130, 246, 0.4);
}

.btn-wicket {
  background: linear-gradient(135deg, var(--danger-red) 0%, var(--danger-red-dark) 100%) !important;
  color: white !important;
  box-shadow: 
    0 4px 6px -1px rgba(239, 68, 68, 0.3),
    0 2px 4px -2px rgba(239, 68, 68, 0.3);
  flex: 1;
}

.btn-wicket:hover {
  box-shadow: 
    0 8px 12px -3px rgba(239, 68, 68, 0.4),
    0 4px 6px -2px rgba(239, 68, 68, 0.4);
}

.btn-retire {
  background: var(--neutral-600) !important;
  color: white !important;
  box-shadow:
    0 2px 4px -1px rgba(0, 0, 0, 0.1),
    0 1px 2px -1px rgba(0, 0, 0, 0.1);
  width: 36px;
  height: 56px; /* Add explicit height to match other buttons */
  flex: 0 0 auto;
  display: flex !important; /* Force flex display */
  align-items: center !important; /* Center vertically */
  justify-content: center !important; /* Center horizontally */
  padding: 0 !important; /* Remove any padding */
}

.retire-icon {
  width: 56px !important; /* Smaller icon to fit properly */
  height: 56px !important;
  object-fit: contain !important; /* Ensure image scales properly */
}

.btn-retire:hover {
  background: var(--neutral-700) !important;
}

/* Modern over balls */
.modern-over-ball {
  width: 32px !important;
  height: 32px !important;
  border-radius: 50% !important;
  font-weight: 700 !important;
  font-size: 12px !important;
  border: none !important;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.btn-primary.modern-over-ball {
  background: var(--primary-green) !important;
  color: white !important;
  box-shadow: 
    0 4px 8px -2px rgba(16, 185, 129, 0.4),
    0 0 0 3px rgba(16, 185, 129, 0.1) !important;
  transform: scale(1.1) !important;
}

.btn-light.modern-over-ball {
  background: var(--neutral-100) !important;
  color: var(--neutral-400) !important;
  border: 2px dashed var(--neutral-300) !important;
}

/* Keep all your existing functionality CSS but add modern styling */
/* This preserves all your working layout while adding modern visuals */

.utility-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin: 8px 0;
  padding: 0 8px;
}

.btn-utility {
  background: linear-gradient(135deg, var(--neutral-100) 0%, var(--neutral-50) 100%) !important;
  color: var(--primary-green) !important;
  border: 1px solid var(--primary-green) !important;
  box-shadow: 
    0 2px 4px -1px rgba(16, 185, 129, 0.1),
    0 1px 2px -1px rgba(16, 185, 129, 0.1) !important;
  flex: 1;
  max-width: 150px;
  height: 48px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
}

.btn-utility:hover {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%) !important;
  color: white !important;
  transform: translateY(-1px);
  box-shadow: 
    0 4px 6px -1px rgba(16, 185, 129, 0.3),
    0 2px 4px -2px rgba(16, 185, 129, 0.3) !important;
}

.match-status {
  flex: 1;
  text-align: center;
  padding: 0 8px;
}

.match-code-text {
  font-size: 12px !important;
  color: var(--neutral-600) !important;
  font-weight: 600 !important;
  padding: 8px 12px !important;
  background: rgba(255, 255, 255, 0.8) !important;
  border-radius: 8px !important;
  border: 1px solid var(--neutral-200) !important;
  display: inline-block;
  box-shadow: 
    0 1px 3px rgba(0, 0, 0, 0.1),
    0 1px 2px rgba(0, 0, 0, 0.06) !important;
}

.bowler-section {
  margin: 8px 0;
}

.bowler-info-card {
  background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
  border: 1px solid var(--primary-green-light);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 
    0 4px 6px -1px rgba(16, 185, 129, 0.1),
    0 2px 4px -2px rgba(16, 185, 129, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 60px;
}

.bowler-details {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-green);
  font-weight: 600;
}

.bowler-name {
  font-weight: 700 !important;
  color: var(--primary-green) !important;
  font-size: 16px !important;
  cursor: pointer !important;
  border-bottom: 1px dashed var(--primary-green) !important;
  transition: color 0.2s ease !important;
}

.bowler-name:hover {
  color: var(--primary-green-dark) !important;
}

.bowler-icon {
  height: 1em;
  width: auto;
  margin: 0 4px;
}

.bowler-stats {
  font-weight: 600;
  color: var(--primary-green);
  font-size: 16px;
}

.swap-btn {
  background: linear-gradient(135deg, var(--info-blue) 0%, #2563eb 100%) !important;
  color: white !important;
  border: none !important;
  border-radius: 12px !important;
  padding: 8px 12px !important;
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  min-width: 80px !important;
  height: 40px !important;
  cursor: pointer !important;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
  box-shadow: 
    0 2px 4px -1px rgba(59, 130, 246, 0.3),
    0 1px 2px -1px rgba(59, 130, 246, 0.3) !important;
}

.swap-btn:hover {
  transform: translateY(-1px) !important;
  box-shadow: 
    0 4px 6px -1px rgba(59, 130, 246, 0.4),
    0 2px 4px -2px rgba(59, 130, 246, 0.4) !important;
}

.swap-btn:active {
  transform: translateY(0) !important;
}

.swap-text {
  flex: 1;
  text-align: center;
}

.swap-icon {
  height: 16px;
  width: auto;
  flex-shrink: 0;
}


/* Over balls container */
.position-relative {
  margin: 8px 8px !important;
  height: 50px !important; /* Fixed height for consistent positioning */
  position: relative !important;
}

/* Progress bar styling */
.progress {
  background: var(--neutral-200) !important;
  border-radius: 2px !important;
  height: 2px !important;
  position: absolute !important;
  top: 50% !important;
  left: 0 !important;
  right: 0 !important;
  transform: translateY(-50%) !important;
}

.progress-bar {
  background: var(--primary-green) !important;
  border-radius: 2px !important;
}

/* Modern over balls - consistent positioning */
.modern-over-ball {
  width: 36px !important;
  height: 36px !important;
  border-radius: 50% !important;
  font-weight: 700 !important;
  font-size: 12px !important;
  border: none !important;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
  position: absolute !important;
  top: 50% !important;
  transform: translate(-50%, -50%) !important; /* Center both horizontally and vertically */
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 2 !important; /* Above progress bar */
}

/* Current/Played ball - green with glow */
.btn-primary.modern-over-ball {
  background: var(--primary-green) !important;
  color: white !important;
  box-shadow: 
    0 4px 8px -2px rgba(16, 185, 129, 0.4),
    0 0 0 3px rgba(16, 185, 129, 0.1) !important;
  transform: translate(-50%, -50%) scale(1.1) !important; /* Keep centered while scaling */
}

/* Pending/Unplayed balls - dashed */
.btn-light.modern-over-ball {
  background: var(--neutral-100) !important;
  color: var(--neutral-400) !important;
  border: 2px dashed var(--neutral-300) !important;
  transform: translate(-50%, -50%) !important; /* Same transform as others */
}

/* Specific positioning for each ball */
#ball_no_1, #ball_no_4 {
  left: 5% !important;
}

#ball_no_2, #ball_no_5 {
  left: 50% !important;
}

#ball_no_3, #ball_no_6 {
  left: 95% !important;
}

  /* Responsive adjustments */
  @media only screen and (orientation: landscape) {
	/* For desktops: */
	.col-left-custom {
	  width: 70%;
	  float: left;
	  padding: 15px;
	}
	
	.col-right-custom {
	  width: 30%;
	  height: 100vh;
	  float: left;
	  padding: 15px;
	  border-left: 1px solid var(--border-color);
	  background-color: white;
	}
  
	.card-container {
	  display: grid;
	  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	  gap: 20px;
	}
  }
  
  /* Material icons styling */
  .material-symbols-outlined {
	font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 200, "opsz" 24;
	vertical-align: middle;
  }

/* Footer actions */
  .footer-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin: 8x 0 8px;
  padding: 0 8px;
}

.footer-btn {
  background: none !important;
  border: none !important;
  color: var(--primary-green) !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  padding: 8px 12px !important;
  border-radius: 8px !important;
  transition: all 0.2s ease !important;
  text-transform: capitalize !important;
  cursor: pointer !important;
  flex: 1;
  text-align: center;
  min-height: 36px;
}

.footer-btn:hover {
  background: rgba(16, 185, 129, 0.1) !important;
  color: var(--primary-green-dark) !important;
  transform: translateY(-1px) !important;
}

.footer-btn:active {
  transform: translateY(0) !important;
}

.editable-player {
  border-bottom: 1px dashed var(--primary-green);
}


/* Cricket Broadcast Scorecard Styles - Exact match to TV graphics */

/* Modal styling for scorecards */
#myModal .modal-dialog {
  max-width: 800px;
}

#myModal .modal-content {
  border-radius: 0;
  border: none;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  background: transparent;
}

#myModal .modal-header {
  display: none; /* Hide default header */
}

#myModal .modal-body {
  padding: 0;
  background: transparent;
}

#myModal .modal-footer {
  background: #1a365d;
  border: none;
  padding: 16px 24px;
}

#myModal .modal-footer .btn-default {
  background: #2d3748;
  color: white;
  border: none;
  padding: 8px 20px;
  border-radius: 4px;
  font-weight: 600;
}

/* Main scorecard container - TV broadcast style */
.scorecard-broadcast {
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 25%, #2563eb  50%, #3b82f6 75%, #60a5fa 100%);
  color: white;
  font-family: 'Arial', sans-serif;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Decorative elements like in broadcast */
.scorecard-broadcast::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 100%;
  background: linear-gradient(45deg, transparent 0%, rgba(255,255,255,0.05) 30%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0.05) 70%, transparent 100%);
  transform: skewX(-15deg);
  z-index: 1;
}

.scorecard-broadcast::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
  z-index: 2;
}

/* Unified header for entire scorecard */
.scorecard-main-header {
  background: rgba(0, 0, 0, 0.2);
  padding: 16px 24px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 3;
}

.scorecard-main-header h3 {
  margin: 0;
  font-weight: 800;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Section headers within scorecard */
.scorecard-section-header {
  background: rgba(0, 0, 0, 0.15);
  padding: 12px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
  z-index: 3;
}

.scorecard-section-header h5 {
  margin: 0;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: white;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Table styling to match broadcast graphics */
.broadcast-table {
  width: 100%;
  border-collapse: collapse;
  background: transparent;
  margin: 0;
  position: relative;
  z-index: 3;
}

.broadcast-table thead {
  background: rgba(0, 0, 0, 0.2);
}

.broadcast-table thead th {
  padding: 10px 12px;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.9);
  border: none;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.broadcast-table thead th:first-child {
  text-align: left;
  padding-left: 24px;
}

.broadcast-table thead th:last-child {
  border-right: none;
}

.broadcast-table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background-color 0.2s ease;
}

.broadcast-table tbody tr:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.broadcast-table tbody tr:last-child {
  border-bottom: none;
}

.broadcast-table tbody td {
  padding: 12px;
  font-weight: 600;
  font-size: 14px;
  color: white;
  border: none;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.broadcast-table tbody td:first-child {
  text-align: left;
  padding-left: 24px;
  font-weight: 700;
}

.broadcast-table tbody td:last-child {
  border-right: none;
}

/* Special row styling for broadcast look */
.broadcast-extras-row {
  background: rgba(0, 0, 0, 0.15) !important;
}

.broadcast-extras-row td {
  font-weight: 600 !important;
  color: rgba(255, 255, 255, 0.95) !important;
  font-style: italic;
}

.broadcast-total-row {
  background: rgba(0, 0, 0, 0.25) !important;
  border-top: 2px solid rgba(255, 255, 255, 0.2) !important;
}

.broadcast-total-row td {
  font-weight: 800 !important;
  color: white !important;
  font-size: 15px !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5) !important;
}

/* Player status indicators */
.broadcast-player-name {
  color: white;
  cursor: pointer;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.5);
  transition: all 0.2s ease;
}

.broadcast-player-name:hover {
  color: #fbbf24;
  border-bottom-color: #fbbf24;
  text-shadow: 0 0 8px rgba(251, 191, 36, 0.5);
}

.broadcast-bat-icon, 
.broadcast-status-icon {
  height: 14px;
  width: auto;
  margin-left: 6px;
  vertical-align: middle;
  filter: brightness(0) invert(1);
}

.broadcast-status-text {
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
  font-size: 11px;
  margin-left: 6px;
  text-shadow: none;
}

/* Score change section styling */
.broadcast-score-section {
  background: rgba(0, 0, 0, 0.2);
  padding: 20px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
  z-index: 3;
}

.broadcast-score-section .input-group {
  max-width: 600px;
  margin: 0 auto;
}

.broadcast-score-section .form-control {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  border-radius: 4px;
  padding: 8px 12px;
  font-weight: 500;
}

.broadcast-score-section .form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.broadcast-score-section .form-control:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fbbf24;
  box-shadow: 0 0 0 2px rgba(251, 191, 36, 0.2);
  color: white;
}

.broadcast-score-section .btn-primary {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  border: none;
  border-radius: 4px;
  font-weight: 700;
  padding: 8px 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #1a365d;
  text-shadow: none;
}

.broadcast-score-section .btn-primary:hover {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#edited-scores {
  margin-top: 16px;
  padding: 16px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  border-left: 4px solid #fbbf24;
  font-family: 'Courier New', monospace;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .broadcast-table thead th,
  .broadcast-table tbody td {
    padding: 8px 6px;
    font-size: 12px;
  }
  
  .broadcast-table thead th:first-child,
  .broadcast-table tbody td:first-child {
    padding-left: 12px;
  }
  
  .scorecard-main-header h3 {
    font-size: 20px;
  }
  
  .scorecard-section-header h5 {
    font-size: 14px;
  }
  
  .scorecard-main-header,
  .scorecard-section-header,
  .broadcast-score-section {
    padding: 12px 16px;
  }
}