/* Genel kart stili */
.mpm-grid-cards{
    display:grid;
    grid-template-columns: repeat(auto-fill, minmax(260px,1fr));
    gap:16px;
}
.mpm-card{
    background:#000;
    border-radius:14px;
    padding:18px;
    box-shadow:0 2px 10px rgba(0,0,0,.06);
    border:1px solid rgba(255,255,255,.06);
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
    color:#fff;
}
.mpm-card-top{
    width:100%;
    display:flex;
    justify-content:space-between;
    font-size:12px;
    color:#fff;
    margin-bottom:8px;
}
.mpm-league{
    font-weight:700;
    color:#fff;
}
.mpm-date{
    font-weight:700;
    color:#fff;
    opacity:1;
}
.mpm-logos{
    display:flex;
    align-items:center;
    gap:12px;
    margin:8px 0;
}
.mpm-logos .team{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:6px;
    min-width:90px;
}
.mpm-logos img{
    width:52px;
    height:52px;
    object-fit:contain;
}
.mpm-logos .vs{
    font-weight:700;
    opacity:.6;
}
.mpm-time{
    font-size:28px;
    font-weight:800;
    margin:10px 0;
}
.mpm-venue,
.mpm-channel,
.mpm-notes{
    font-size:12px;
    color:#bbb;
    margin-top:4px;
}
#mpm-admin-preview.mpm-card{
    max-width:420px;
    margin:auto;
}

/* Countdown widget */ 
.mpm-countdown-wrapper{
    margin-bottom:24px;
}

.mpm-countdown-title{
    font-weight:700;
    margin-bottom:4px;
}

.mpm-countdown-match{
    margin-bottom:16px;
    opacity:.85;
}

/* Sayaç ana satırı */
.mpm-countdown-items{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    align-items:flex-start;
    gap:16px;
}

/* Tek blok: sayı(lar) + etiket */
.mpm-countdown-item{
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
}

/* Sayı + : grubu */
.mpm-count-top{
    display:flex;
    align-items:baseline;
    justify-content:center;
}

.mpm-count-value,
.mpm-count-sep{
    font-weight:inherit;
    line-height:1;
}

/* Etiketler */
.mpm-count-label{
    font-size:11px;
    text-transform:uppercase;
    letter-spacing:.12em;
    margin-top:4px;
}

/* Hizalamalar */
.mpm-countdown-wrapper.mpm-align-left{
    text-align:left;
}
.mpm-countdown-wrapper.mpm-align-left .mpm-countdown-items{
    justify-content:flex-start;
}
.mpm-countdown-wrapper.mpm-align-center{
    text-align:center;
}
.mpm-countdown-wrapper.mpm-align-center .mpm-countdown-items{
    justify-content:center;
}
.mpm-countdown-wrapper.mpm-align-right{
    text-align:right;
}
.mpm-countdown-wrapper.mpm-align-right .mpm-countdown-items{
    justify-content:flex-end;
}

/* İki nokta ayırıcı kontrolü */
.mpm-countdown-wrapper:not(.mpm-has-colons) .mpm-count-sep{
    display:none;
}

/* Son elemandaki iki noktayı gizle */
.mpm-countdown-items .mpm-countdown-item:last-child .mpm-count-sep{
    display:none;
}

/* Mobil uyum */
@media (max-width:767px){
    .mpm-countdown-items{
        justify-content:center;
    }
    .mpm-countdown-item{
        margin:0 4px;
    }
}

/* === Medyaport Maç Takvimi 2.5.5 – Countdown layout fixes === */
.mpm-countdown-wrapper{
    text-align:center;
}
.mpm-countdown-items{
    display:inline-flex;
    flex-wrap:nowrap;
    justify-content:center;
    align-items:flex-end;
    gap:1.75rem;
}
.mpm-countdown-item{
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
}
.mpm-count-top{
    display:flex;
    flex-direction:row;
    align-items:baseline;
    justify-content:center;
}
.mpm-count-value,
.mpm-count-sep{
    font: inherit;
    line-height:1;
}
.mpm-count-sep{
    display:inline-block;
    padding:0 0.15em;
}
.mpm-countdown-item:last-child .mpm-count-sep{
    display:none;
}
.mpm-count-label{
    margin-top:0.35em;
}
@media (max-width:767px){
    .mpm-countdown-items{
        gap:1.1rem;
    }
}


/* === Medyaport Maç Takvimi 2.5.7 – Colon positioning fixes === */
.mpm-count-top{
    position:relative;
    display:inline-block;
}
.mpm-count-value{
    display:inline-block;
}
.mpm-count-sep{
    position:absolute;
    top:0;
    left:100%;
    margin-left:0.25em;
    padding:0;
}
