.cmcdf-match-center {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Header */
.cmcdf-match-header {
    background: #1a202c;
    color: #fff;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.cmcdf-match-header .team {
    text-align: center;
    width: 30%;
}

.cmcdf-match-header .team-logo {
    max-width: 60px;
    height: auto;
    display: block;
    margin: 0 auto 10px;
}

.cmcdf-match-header .team-name {
    font-size: 1.1em;
    margin: 0;
    color: #fff;
}

.match-score-board {
    text-align: center;
    width: 40%;
}

.match-score-board .score {
    font-size: 3em;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 5px;
}

.match-score-board .match-status.finished {
    background-color: #e74c3c;
    color: white;
}

.team-scorers {
    margin-top: 10px;
    font-size: 0.75em;
    color: #ddd;
    line-height: 1.4;
    white-space: pre-line;
}

.match-score-board .match-status {
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #a0aec0;
}

.match-status.live .live-indicator {
    color: #e53e3e;
    animation: blink 2s infinite;
}

@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

.match-meta-info {
    margin-top: 10px;
    font-size: 0.9em;
    color: #cbd5e0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

/* Tabs */
.cmcdf-tabs-nav {
    display: flex;
    border-bottom: 1px solid #e5e5e5;
    background: #f7fafc;
}

.cmcdf-tabs-nav .tab-btn {
    flex: 1;
    padding: 15px;
    border: none;
    background: none;
    cursor: pointer;
    font-weight: 600;
    color: #4a5568;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
}

.cmcdf-tabs-nav .tab-btn:hover {
    background: #edf2f7;
}

.cmcdf-tabs-nav .tab-btn.active {
    color: #2b6cb0;
    border-bottom-color: #2b6cb0;
    background: #fff;
}

/* Content */
.cmcdf-tabs-content {
    padding: 20px;
    min-height: 300px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

/* Live Feed */
.live-event-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #edf2f7;
}

.live-event-item:last-child {
    border-bottom: none;
}

.event-meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 50px;
    gap: 5px;
}

.event-minute {
    font-weight: bold;
    color: #2b6cb0;
}

.event-icon {
    font-size: 1.2em;
}

.event-content {
    flex-grow: 1;
    line-height: 1.5;
    color: #2d3748;
}

/* Compo */
.compo-container {
    display: flex;
    gap: 20px;
}

.compo-col {
    flex: 1;
}

.compo-col h4 {
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 10px;
    margin-bottom: 15px;
    color: #2d3748;
}

.compo-text {
    white-space: pre-line;
    line-height: 1.6;
    color: #4a5568;
}

/* Responsive */
@media (max-width: 600px) {
    .cmcdf-match-header {
        flex-direction: row;
        gap: 5px;
        padding: 10px;
    }

    .cmcdf-match-header .team-logo {
        display: none;
    }

    .cmcdf-match-header .team {
        width: 30%;
        font-size: 0.9em;
    }

    .match-score-board {
        width: 40%;
    }

    .match-score-board .score {
        font-size: 2em;
    }

    .compo-container {
        flex-direction: column;
    }
}

/* Hide Theme Meta on Single Match Pages */
.single-match_live .entry-meta,
.single-match_live .post-meta,
.single-match_live .byline,
.single-match_live .entry-footer,
.single-match_live .posted-on,
.single-match_live .author,
.single-match_live .entry-date,
.single-match_live .date {
    display: none !important;
}