/* General styles for the body */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    line-height: 1 !important;
}

/* Container for live games */
.live-games-container {
    margin: 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Container for scheduled games */
.scheduled-games-container {
    margin: 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Section for each sport */
.live-sport-section, .scheduled-sport-section {
    border-bottom: 1px solid #eee;
    padding: 10px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;
}

.live-sport-section:last-child,
.scheduled-sport-section:last-child {
    border-bottom: none;
}

/* Individual game display */
.game {
    margin: 0;
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 4px;
    padding: 15px;
    height: fit-content;
    display: flex;
    flex-direction: column;
}

/* Only show hover effects when modal is available */
.game[style*="cursor: pointer"]:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    background-color: #f0f0f0;
}


/* Status styles */
.status {
    font-weight: bold; /* Make status text bold */
    color: #333; /* Darker color for better visibility */
}

/* Team stats styles */
.team-stats {
    margin-top: 10px;
    padding: 10px;
    background-color: #f9f9f9; /* Light background for team stats */
    border: 1px solid #ddd; /* Light gray border */
    border-radius: 3px;
}

/* Stats table styles with improved spacing */
.stat-table {
    width: 100%;
    margin: 8px 0;
    border-collapse: separate;
    border-spacing: 0;
}

.stat-table tr {
    background-color: white;
}

.stat-table th {
    background-color: #f8f8f8;
    padding: 12px 10px;  /* Increased padding */
    text-align: left;
    font-size: 0.9em;  /* Slightly larger */
    font-weight: 600;
    color: #444;
    border-bottom: 2px solid #eee;
}

.stat-table td {
    padding: 10px;  /* Increased padding */
    border: none;
    font-size: 0.9em;
    color: #333;
    background-color: white;
    line-height: 1.4;  /* Added line height */
}

.stat-table tr:hover {
    background-color: white;
}

.stat-table .player {
    font-weight: 600;
    padding: 0;
    border: none;
    min-width: 140px;  /* Ensure player names have enough space */
}

/* Team header in table */
.stat-table th.team {
    background-color: white;
    color: #2196f3;
    font-size: 1.1em;
    padding: 20px 10px 12px 10px;  /* More top padding for section separation */
    font-weight: bold;
    border-bottom: none;
}

/* Category headers */
.stat-table th.category {
    background-color: #f0f0f0;
    color: #666;
    font-size: 1em;
    padding: 12px 10px;
    font-weight: 600;
    border-bottom: 1px solid #ddd;
}

/* Add vertical spacing between rows */
.stat-table tr:not(:last-child) td {
    border-bottom: 1px solid #f5f5f5;  /* Very light separator */
}

/* Spacing between sections */
.stat-table tr.spacer td {
    height: 20px;
    border-bottom: none;
}

/* Responsive design */
@media (max-width: 900px) {
    .live-sport-section, .scheduled-sport-section {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .live-sport-section, .scheduled-sport-section {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .live-games-container, .scheduled-games-container {
        margin: 10px;
    }

    .game {
        padding: 10px;
    }

    /* Adjust font sizes for mobile */
    .team.away.short, .team.home.short {
        font-size: 0.9em;
    }

    .score.away.mid, .score.home.mid {
        font-size: 1.1em;
    }
}

.event-name {
    font-weight: bold;
    display: block;
    margin-bottom: 4px;
}

.location {
    color: #666;
    font-size: 0.9em;
}

.game {
    padding: 10px;
    margin: 5px 0;
    border-bottom: 1px solid #eee;
}

/* Individual sports styling */
.event-name {
    font-weight: bold;
    display: block;
    margin-bottom: 4px;
    color: #333;
}

.location {
    color: #666;
    font-size: 0.9em;
    display: block;
    margin-bottom: 2px;
}

.round {
    color: #444;
    font-size: 0.9em;
    display: block;
    margin-bottom: 2px;
}

.players {
    margin-top: 8px;
}

.player {
    padding: 4px 0;
    font-size: 1em;
    color: #333;
}

/* Sport-specific styling */
.PGA .game, .DARTS .game {
    background-color: #f9f9f9;
    border-radius: 4px;
    padding: 12px;
    margin: 8px 0;
}

.status {
    font-size: 0.9em;
    color: #666;
    display: inline-block;
    padding: 2px 6px;
    border-radius: 3px;
    background-color: #eee;
    margin-top: 4px;
}

/* Darts specific styling */
.darts-game {
    padding: 12px;
}

.darts-game .players {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.darts-game .player {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    border-radius: 4px;
    background: none;
    border-left: 4px solid transparent;
}

.darts-game .player.winner {
    border-left-color: #4caf50;
    font-weight: bold;
}

.darts-game .player.throwing {
    border-left-color: #2196f3;
}

.darts-game .score {
    font-weight: bold;
    font-size: 1.1em;
    color: #333;
}

.darts-game .throwing-indicator {
    margin-left: 8px;
    font-size: 1.2em;
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* Section headers */
h2 {
    color: #333;
    padding: 10px;
    margin: 0;
    background-color: #f8f8f8;
    border-bottom: 2px solid #ddd;
}

h3 {
    color: #666;
    padding: 8px 10px;
    margin: 0;
    font-size: 1.1em;
}

/* Team sports specific styling */
.team-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
    width: 100%;
}

.team.away.short, .team.home.short {
    font-weight: normal;  /* Remove default bold */
}

.team.away.short .team-name, 
.team.home.short .team-name {
    font-weight: bold;  /* Bold just the team name */
}

/* Record styling */
.team-record {
    font-weight: normal;
    font-size: 0.75em;  /* Make record 75% of team name size */
}

.team.winning {
    color: #4caf50;  /* Green for leading team */
}

.team.won {
    color: #2e7d32;  /* Darker green for winning team */
}

.score.away.mid, .score.home.mid {
    font-size: 1.2em;
    font-weight: bold;
    min-width: 30px;
    text-align: center;
    margin: 0 10px;
    transition: color 0.2s ease;  /* Smooth color transition */
}

/* Override flex direction for team sports */
.game:not(.DARTS):not(.PGA) {
    flex-direction: column;
}

.status {
    display: none;
}

.status.live {
display: none;
}

.status.live:hover {
    text-decoration: underline;
}

/* Darts specific updates for grid layout */
.game.DARTS {
    height: auto;
}

.players {
    margin: 8px 0;
}

/* Container spacing adjustments */
.live-games-container, .scheduled-games-container {
    margin: 20px;
    padding-bottom: 10px;
}

/* Sport header adjustments */
h3 {
    grid-column: 1 / -1;
    margin-bottom: 10px;
}

/* Darts event grouping styles */
.darts-event-header {
    grid-column: 1 / -1;
    background-color: #f0f0f0;
    color: #333;
    padding: 10px 15px;
    font-weight: bold;
    font-size: 1.1em;
    margin: 10px 0 5px 0;
    border-radius: 4px;
    border-left: 4px solid #2196f3;
}

.darts-event-games {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;
    padding: 0 5px;
}

.darts-game {
    margin: 0;
    background-color: #fff;
}

/* Update existing styles */
.game.darts-game {
    height: auto;
    padding: 12px;
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .darts-event-games {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .darts-event-games {
        grid-template-columns: 1fr;
    }
    
    .darts-event-header {
        padding: 8px 12px;
        font-size: 1em;
    }
}

/* Sub-section styling */
.sub-header {
    grid-column: 1 / -1;
    background-color: #f8f8f8;
    color: #666;
    padding: 8px 15px;
    font-size: 1em;
    font-weight: bold;
    border-left: 4px solid #2196f3;
    margin: 10px 0 5px 0;
}

/* Live sub-header styling */
.live-games-section .sub-header {
    color: #d32f2f;  /* Red text color */
    border-left-color: #d32f2f;  /* Red left border */
    background-color: #ffebee;  /* Very light red background - now static */
}

/* Update the dot animation */
.sub-header i.fa-circle {
    color: #d32f2f;
    font-size: 0.8em;
    animation: dot-pulse 2s infinite;
}

/* Remove the subtle-pulse animation */
@keyframes dot-pulse {
    0% { 
        opacity: 1;
        transform: scale(1);
    }
    50% { 
        opacity: 0.5;
        transform: scale(0.8);
    }
    100% { 
        opacity: 1;
        transform: scale(1);
    }
}

/* Remove the previous subtle-pulse animation */
@keyframes subtle-pulse {
    /* Remove this animation */
}

/* Keep Final sub-header with blue styling */
.final-games-section .sub-header {
    color: #2e7d32;
    border-left-color: #2e7d32;
    background-color: #e8f5e9;
}

.live-games-section, .final-games-section {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;
    padding: 0 5px;
    grid-column: 1 / -1;
}

/* Empty section handling */
.live-games-section:empty, .final-games-section:empty {
    display: none;
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .live-games-section, .final-games-section {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .live-games-section, .final-games-section {
        grid-template-columns: 1fr;
    }
    
    .sub-header {
        padding: 6px 12px;
        font-size: 0.9em;
    }
}

/* Add score highlighting styles */
.score.winning {
    color: #4caf50;  /* Green for leading team */
}

.score.won {
    color: #2e7d32;  /* Darker green for winning team */
    font-weight: bold;
}

/* Remove the previous team-info winning/tied styles */
.team-info.winning, .team-info.tied {
    background-color: transparent;
    border-radius: 0;
    padding: 5px 0;
    border-left: none;
}

/* Modal styling */
.preview {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    display: none;  /* Initial state */
}

.preview.active {
    display: flex;  /* When active */
    align-items: center;
    justify-content: center;
}

.modal-content {
    position: relative;
    background-color: white;
    padding: 20px;
    width: 90%;
    max-width: 500px;
    max-height: 70vh;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    overflow: auto;
    font-size: clamp(1.7rem, 2vw, 0.9rem);
    margin: auto;
    transform: translateY(-5%);
}

.close-button {
    position: absolute;
    right: 15px;
    top: 12px;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    transition: color 0.2s ease;
    padding: 5px;
    line-height: 1;
}

.close-button:hover {
    color: #333;
}

/* Game header styles */
.game-header {
    margin: -20px -20px 15px -20px;
    padding: 15px 20px;
    background-color: #f8f8f8;
    border-bottom: 1px solid #eee;
}

.game-header h2 {
    font-size: 1.1em;
    color: #333;
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    font-weight: bold;
}

.game-status {
    color: #666;
    font-size: 0.9em;
    margin-top: 5px;
}

/* Responsive adjustments */
@media (max-height: 700px) {
    .modal-content {
        font-size: 0.7rem;
        max-height: 90vh;
        padding: 15px;
    }

    .game-header {
        margin: -15px -15px 12px -15px;
        padding: 12px 15px;
    }
}

/* Prevent body scrolling when modal is open */
body.modal-open {
    overflow: hidden;
}

/* Add this to your existing CSS */
.stat-table th.category {
    background-color: #f0f0f0;
    color: #666;
    font-size: 0.9em;
    padding: 8px 6px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

/* PGA Boxscore specific styles */
.pga-game {
    padding: 15px;
}

.pga-tournament-info {
    margin-bottom: 10px;
}

.tournament-name {
    font-weight: bold;
    font-size: 1.1em;
    color: #333;
    margin-bottom: 4px;
}

.tournament-details {
    font-size: 0.9em;
    color: #666;
    display: flex;
    justify-content: space-between;
}

.pga-mini-table {
    background-color: white;
    width: 100%;
    font-size: 0.9em;
    border-collapse: collapse;
    margin-top: 8px;
}

.pga-mini-table tr {
    background-color: white;
}

.pga-mini-table td {
    background-color: white;
}

.pga-mini-table th {
    text-align: left;
    padding: 4px;
    color: #666;
    font-weight: 600;
    border-bottom: 1px solid #eee;
    background: none;
}

.pga-mini-table td {
    padding: 4px;
    border: none;
    background: none;
}

/* Set column widths */
.pga-mini-table th:first-child,
.pga-mini-table td:first-child {
    width: 40px;  /* Position column */
}

.pga-mini-table th:last-child,
.pga-mini-table td:last-child {
    width: 50px;  /* Total column */
}

.pga-mini-table .player {
    padding: 4px;
    background: none;
}

.course {
    color: #666;
    font-style: italic;
}

.purse {
    color: #2e7d32;
}

/* Update modal styling for wide displays */
.modal-content {
    position: relative;
    background-color: white;
    padding: 20px;
    width: 90%;
    max-width: 500px;  /* Default for narrow content */
    max-height: 70vh;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    overflow: auto;
    font-size: clamp(1.2em, 2vw, 0.9em);
    margin: auto;
    transform: translateY(-5%);
}

/* When content requires scrolling, expand to wide layout */
.modal-content.wide {
    max-width: 90vw;  /* Use most of the viewport width */
    display: flex;
    flex-direction: column;
}

.modal-content.wide .stat-table {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.modal-content.wide .team-section {
    flex: 1;
    min-width: 300px;  /* Ensure minimum readable width */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .modal-content.wide {
        max-width: 95vw;
        padding: 15px;
        font-size: clamp(0.75em, 2vw,0.9em);
        
    }

    .modal-content.wide .team-section {
        min-width: 100%;  /* Stack on mobile */
    }
}

/* Modal table layout */
.tables-container {
    display: flex;
    gap: 20px;
    padding: 0;  /* Remove padding */
    width: fit-content;  /* Only use space needed */
    margin: 0 auto;  /* Center the container */
}

.team-table {
    flex: 0 1 auto;  /* Don't force flex grow */
    min-width: auto;  /* Remove min-width */
}

.modal-content {
    width: auto;  /* Only use space needed */
    max-width: 90vw;  /* Limit maximum width */
    padding: 15px;
}

.game-header {
    margin: -15px -15px 10px -15px;  /* Reduce margin */
    padding: 10px 15px;  /* Reduce padding */
}

.stat-table {
    margin: 0;  /* Remove margin */
    width: auto;  /* Only use space needed */
}

.stat-table th,
.stat-table td {
    padding: 4px 8px;  /* Reduce padding */
    white-space: nowrap;  /* Keep content on one line */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .tables-container {
        flex-direction: column;
        gap: 10px;
    }
    
    .team-table {
        width: 100%;
    }
}

/* Quarter scores styling */
.quarter-scores {
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
    padding-bottom: 8px;
}

.quarter-table {
    width: 100%;
    font-size: 0.85em;
    border-collapse: collapse;
}

.quarter-table tr,
.quarter-table td {
    background: transparent;
}

/* Combined hover effect for game div and quarter table */
.game[style*="cursor: pointer"]:hover,
.game[style*="cursor: pointer"]:hover .quarter-table tr,
.game[style*="cursor: pointer"]:hover .quarter-table td {
    background-color: #f0f0f0;
}

.quarter-table th:first-child,
.quarter-table td:first-child {
    text-align: left;
    font-weight: bold;
}

h2 i, h3 i, .sub-header i {
    margin-right: 8px;
}

.sub-header i.fa-circle {
    color: #d32f2f;
    font-size: 0.8em;
    animation: dot-pulse 2s infinite;
}

.sub-header i.fa-flag-checkered {
    color: #2e7d32;
}

/* Add pulsing animation for the dot */
@keyframes dot-pulse {
    0% { 
        opacity: 1;
        transform: scale(1);
    }
    50% { 
        opacity: 0.5;
        transform: scale(0.8);
    }
    100% { 
        opacity: 1;
        transform: scale(1);
    }
}

/* Live header styling */
.live-header {
    background-color: #f8f8f8;
    border-bottom: 2px solid #ddd;
    padding: 10px;
}

.live-header h2 {
    margin: 0;
    padding: 0;
    background: none;
    border: none;
}

.live-datetime {
    color: #666;
    font-size: 0.9em;
    margin-top: 5px;
    font-weight: 500;
}

/* Add to your Darts specific styling */
.current-leg {
    text-align: center;
    color: #2196f3;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 0.9em;
}

.throwing-icon {
    color: #2196f3;
    margin-right: 8px;
    animation: pulse 1s infinite;
}

.player-name {
    flex: 1;
}

.darts-game .player {
    display: flex;
    align-items: center;
}

/* Update Darts specific styling */
.darts-game .player-name {
    flex: 1;
    transition: color 0.2s ease;
}

.darts-game .player-name.won {
    color: #2e7d32;  /* Same dark green as other sports */
    font-weight: bold;
}

.darts-game .score {
    font-weight: bold;
    font-size: 1.1em;
    transition: color 0.2s ease;
}

.darts-game .score.winning {
    color: #4caf50;  /* Same green as other sports for leading */
}

.darts-game .score.won {
    color: #2e7d32;  /* Same dark green as other sports for winner */
}

/* Navigation styling */
.sports-nav {
    background-color: #fff;
    border-bottom: 1px solid #ddd;
    margin: 20px 20px 0 20px;
    border-radius: 4px 4px 0 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    overflow-x: auto;
}

.nav-content {
    display: flex;
    flex-wrap: wrap;
    padding: 10px;
    gap: 15px;
}

.sport-nav-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 5px 10px;
    border-radius: 4px;
    background-color: #f8f8f8;
}

.sport-name {
    font-weight: 500;
    color: #333;
    display: flex;
    align-items: center;
    gap: 5px;
}

.sport-links {
    display: flex;
    gap: 5px;
}

.nav-link {
    padding: 3px 8px;
    border-radius: 3px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.nav-link.live {
    color: #d32f2f;
    background-color: #ffebee;
}

.nav-link.live:hover {
    background-color: #ffcdd2;
}

.nav-link.scheduled {
    color: #1976d2;
    background-color: #e3f2fd;
}

.nav-link.scheduled:hover {
    background-color: #bbdefb;
}

.nav-link.final {
    color: #2e7d32;
    background-color: #e8f5e9;
}

.nav-link.final:hover {
    background-color: #c8e6c9;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .sports-nav {
        margin: 10px 10px 0 10px;
    }
    
    .nav-content {
        padding: 5px;
        gap: 8px;
    }
    
    .sport-nav-item {
        padding: 3px 8px;
    }
}

/* Scheduled game time styling */
.scheduled-time {
    text-align: center;
    color: #1976d2;
    font-weight: 500;
    font-size: 0.9em;
    margin-bottom: 8px;
    padding: 4px 0;
    border-bottom: 1px solid #e3f2fd;
}

/* Adjust team info spacing for scheduled games */
.scheduled-time + .team-info {
    margin-top: 8px;
}

/* Sport header link styling */
.sport-header-link {
    color: inherit;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: color 0.2s ease;
}

.sport-header-link:hover {
    color: #2196f3;
}

.sport-header-link i {
    margin-right: 8px;
}

/* Sport toggle styling */
.sport-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.sport-checkbox {
    width: 16px;
    height: 16px;
    margin: 0;
    cursor: pointer;
}

/* Update sport-nav-item to accommodate checkbox */
.sport-nav-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 5px 10px;
    border-radius: 4px;
    background-color: #f8f8f8;
}

/* Adjust sport name spacing */
.sport-toggle .sport-name {
    margin-left: 4px;
}
/* umbraco styling fixes */
input[type=checkbox], input[type=radio] {
    margin: 0px 0 0;
    margin-top: 0px;
}

.sport-toggle {
    margin-bottom: 0px;
}

table {
    background-color: #fff;
}

/*
html.no-touch a:hover {
    color: #FFA939;
}
*/

#card {
    -webkit-box-shadow: 1px 0px 25px 0px rgba(50, 50, 50, 0.27);
    -moz-box-shadow: 1px 0px 25px 0px rgba(50, 50, 50, 0.27);
    box-shadow: 1px 0px 25px 0px rgba(50, 50, 50, 0.27);
    background-color:#FFFFFF;
}
    
h2.heading.main.c3-text {
    background-color: #dfdbdc;
}

/* Game status for live games styling */
.game-status-live {
    text-align: center;
    color: #666666;  /* Changed to grey */
    font-weight: 500;
    font-size: 0.9em;
    margin-bottom: 8px;
    padding: 4px 0;
    border-bottom: 1px solid #eeeeee;  /* Changed to light grey */
}

/* Add team name winning styling */
.team.short.won {
    color: #2e7d32;  /* Same dark green as winning score */
    font-weight: bold;
}

/* Add styling for Final SO/OT status */
.game-status-final {
    text-align: center;
    color: #666666;
    font-weight: 500;
    font-size: 0.9em;
    margin-top: 8px;
    padding: 4px 0;
    border-top: 1px solid #eeeeee;
}

.pga-mini-table th,
.pga-mini-table td {
    white-space: nowrap;
}

/* LaLiga coming soon overlay */
.laliga-coming-soon-overlay {
    position: relative;
}

.laliga-coming-soon-overlay::before {
    content: "COMING SOON";
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 40px; /* Adjusted to leave space for the header */
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.75);
    color: #0077C8; /* LaLiga blue color */
    font-weight: bold;
    font-size: 1.5rem;
    z-index: 10;
    text-align: center;
    pointer-events: none; /* Disable pointer events on pseudo-element */
}

/* Clickable overlay for COMING SOON text */
.laliga-coming-soon-link {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 40px; /* Match the ::before element */
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 15; /* Above the overlay but below the header */
    text-decoration: none;
    color: transparent; /* Make text transparent */
    font-weight: bold;
    font-size: 1.5rem;
    cursor: pointer;
}

.laliga-coming-soon-overlay .game {
    filter: blur(1px);
    pointer-events: none;
}

/* Keep the sport header readable */
.laliga-coming-soon-overlay h3 {
    position: relative;
    z-index: 20; /* Higher z-index than the overlay */
    margin-bottom: 10px;
    pointer-events: auto; /* Ensure clickability */
}

