.fs-widget {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    max-width: 480px;
    width: 100%;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,.07);
}
.fs-header {
    background: #004d40;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.fs-header__title {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    margin: 0;
}
.fs-header__date {
    color: rgba(255,255,255,.75);
    font-size: 12px;
}
.fs-match {
    border-bottom: 1px solid #f0f0f0;
}
.fs-match:last-child {
    border-bottom: none;
}
.fs-match__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 14px 4px;
    background: #f9f9f9;
    border-bottom: 1px solid #f0f0f0;
}
.fs-match__group {
    font-size: 10px;
    font-weight: 700;
    color: #555;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.fs-match__status {
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 999px;
}
.fs-status--live {
    background: #fff0f0;
    color: #d32f2f;
    animation: mwc26pulse 1.4s ease-in-out infinite;
}
.fs-status--ft {
    background: #f0f0f0;
    color: #555;
}
.fs-status--upcoming {
    background: #eef4ff;
    color: #1565c0;
}
@keyframes mwc26pulse {
    0%,100% { opacity: 1; }
    50%      { opacity: .5; }
}
.fs-match__row {
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    align-items: center;
    padding: 12px 14px;
    gap: 6px;
}
.fs-team {
    display: flex;
    align-items: center;
    gap: 8px;
}
.fs-team--home {
    justify-content: flex-end;
    flex-direction: row;
}
.fs-team--away {
    justify-content: flex-start;
    flex-direction: row;
}
.fs-team__flag {
    width: 26px;
    height: 18px;
    object-fit: cover;
    border-radius: 3px;
    border: 1px solid rgba(0,0,0,.1);
    flex-shrink: 0;
}
.fs-team__flag-placeholder {
    width: 26px;
    height: 18px;
    background: #e0e0e0;
    border-radius: 3px;
    flex-shrink: 0;
}
.fs-team__name {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.2;
}
.fs-team--home .fs-team__name {
    text-align: right;
}
.fs-team--away .fs-team__name {
    text-align: left;
}
.fs-score {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    background: #1a1a2e;
    border-radius: 6px;
    padding: 6px 4px;
    min-width: 72px;
}
.fs-score__num {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    min-width: 20px;
    text-align: center;
}
.fs-score__sep {
    font-size: 18px;
    font-weight: 700;
    color: rgba(255,255,255,.5);
    line-height: 1;
}
.fs-score--vs {
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
}
.fs-score--vs span {
    font-size: 14px;
    font-weight: 700;
    color: #1565c0;
}
.fs-footer {
    padding: 8px 14px;
    text-align: center;
    font-size: 11px;
    color: #aaa;
    border-top: 1px solid #f0f0f0;
    background: #fafafa;
}
.mwc26-empty {
    padding: 16px 14px;
    color: #888;
    font-size: 13px;
    text-align: center;
}