/* Dark mode styles */
body.dark-mode {
    background-color: #121212;
    color: #ffffff;
}

#fvc-matches-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.fvc-match-card {
    background-color: #1e1e1e;
    border-radius: 10px;
    padding: 20px;
    width: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.fvc-match-card.upcoming {
    border-left: 5px solid #f39c12;
}

.fvc-match-card.live {
    border-left: 5px solid #e74c3c;
}

.fvc-match-card.finished {
    border-left: 5px solid #2ecc71;
}

.fvc-match-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fvc-team-logo {
    width: 50px;
    height: 50px;
}

.fvc-team-name {
    font-weight: bold;
}

.fvc-match-details {
    margin-top: 20px;
}

.fvc-countdown-timer,
.fvc-final-score {
    font-size: 1.2em;
    font-weight: bold;
    text-align: center;
}

.fvc-watch-now-btn {
    background-color: #e74c3c;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 20px;
}

.fvc-filter-buttons {
    margin-bottom: 20px;
}

.fvc-filter-btn {
    background-color: #333;
    color: #fff;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
}

.fvc-filter-btn.active {
    background-color: #555;
}
