.resultats-bloc {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    border: 1px solid #f0f0f0;
}
.resultats-list { padding: 8px 0 12px; }

.res-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 18px 2px;
    gap: 8px;
}
.res-date {
    font-size: 11px;
    color: #aab0bc;
    text-align: center;
    font-style: italic;
    padding-bottom: 8px;
    border-bottom: 1px solid #f4f4f4;
}
.res-date:last-child { border-bottom: none; }

.res-team { flex: 1; display: flex; align-items: center; gap: 5px; min-width: 0; }
.res-team-left  { justify-content: flex-end; text-align: right; }
.res-team-right { justify-content: flex-start; text-align: left; }

.res-team-name {
    font-size: 13px;
    font-weight: 600;
    color: #4a5568;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: "Barlow Semi Condensed", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}
.res-name-win   { color: #0D5C2E !important; font-weight: 800 !important; font-size: 13.5px; }
.res-loser .res-team-name { color: #c5cad4; font-weight: 500; }
.res-draw  .res-team-name { color: #6b7a8d; }

.res-trophy { font-size: 11px; color: #F5C518; flex-shrink: 0; }

.res-score-block {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
    background: #f8f9fa;
    border-radius: 6px;
    padding: 4px 10px;
    border: 1px solid #e9ecef;
}
.res-score {
    font-size: 17px;
    font-weight: 900;
    font-family: "Oswald", "Barlow Semi Condensed", sans-serif;
    min-width: 18px;
    text-align: center;
    line-height: 1;
}
.res-score-win  { color: #0D5C2E; font-size: 20px; }
.res-score-draw { color: #6b7a8d; }
.res-score-lose { color: #c5cad4; }
.res-score-sep  { font-size: 14px; color: #c5cad4; font-weight: 700; margin: 0 2px; }
