/* World Cup Live Scores Banner Styles */
.wc-live-banner-container {
    background-color: #1a1a1a;
    color: #ffffff;
    border-radius: 8px;
    padding: 15px;
    font-family: Arial, sans-serif;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    overflow: hidden;
}

.wc-banner-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    font-size: 1.2em;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #333;
}

/* The Pulsing Live Dot */
.wc-live-dot {
    color: #ff4757;
    font-size: 0.9em;
    display: flex;
    align-items: center;
    gap: 5px;
}

.wc-live-dot::before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #ff4757;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 71, 87, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255, 71, 87, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 71, 87, 0); }
}

/* Horizontal Scrolling for Multiple Matches */
.wc-matches-scroll {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding-bottom: 10px;
    scrollbar-width: thin; 
}

.wc-matches-scroll::-webkit-scrollbar {
    height: 6px;
}

.wc-matches-scroll::-webkit-scrollbar-thumb {
    background-color: #555;
    border-radius: 10px;
}

/* Individual Match Cards */
.wc-match-card {
    background-color: #2a2a2a;
    border-radius: 6px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 260px;
    justify-content: space-between;
}

.wc-team {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.wc-team img {
    width: 24px;
    height: auto;
    border-radius: 2px;
}

.wc-score-box {
    background-color: #111;
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: bold;
    letter-spacing: 2px;
    white-space: nowrap;
}

.wc-no-matches {
    text-align: center;
    color: #888;
    font-style: italic;
    width: 100%;
    padding: 20px 0;
}