.lm-league{
margin-bottom:20px;
border-radius:8px;
overflow:hidden;
background:#fff;
}

.lm-league h3{
background:#1e293b;
color:#fff;
padding:10px;
font-size:16px;
}

.lm-match{
display:flex;
justify-content:space-between;
align-items:center;
padding:10px;
border-bottom:1px solid #eee;
font-size:14px;
}

.lm-match:hover{
background:#f1f5f9;
}

.lm-team{
display:flex;
align-items:center;
gap:6px;
}

.lm-team img{
width:18px;
height:18px;
}

.lm-score{
font-weight:bold;
color:#e11d48;
font-size:15px;
min-width:50px;
text-align:center;
}
.score-updated{

animation: scoreFlash 1.2s ease;

}

@keyframes scoreFlash{

0%{
background:#fde047;
transform:scale(1.2);
}

100%{
background:transparent;
transform:scale(1);
}

}
.lm-time{
font-size:12px;
color:#64748b;
min-width:50px;
}

.lm-minute{
color:#ef4444;
font-weight:bold;
margin-left:6px;
margin-right:6px;
}
