/* Daily Fixtures Section */
.daily-fixtures-section { margin-bottom: 30px; }
.df-separator { width: 1px; height: 16px; background: #ddd; flex-shrink: 0; }
.df-league-select { font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 600; padding: 4px 8px; border: 1px solid #e0e0e0; border-radius: 4px; background: #fff; color: #666; cursor: pointer; height: 29px; max-width: 160px; }
.df-league-select:focus { border-color: #1e2024; outline: none; }
.df-filter-label { display: flex; align-items: center; gap: 4px; font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 600; color: #666; cursor: pointer; user-select: none; white-space: nowrap; height: 29px; }
.df-filter-label input[type="checkbox"] { width: 13px; height: 13px; accent-color: #1e2024; cursor: pointer; margin: 0; }
.day-selector { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; margin-bottom: 14px; }
.day-btn { font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 600; text-transform: uppercase; padding: 5px 12px; border: 1px solid #e0e0e0; border-radius: 4px; background: transparent; color: #666; cursor: pointer; transition: all .15s ease; white-space: nowrap; }
.day-btn:hover { border-color: #aaa; color: #333; }
.day-btn.active { background: #1e2024; border-color: #1e2024; color: #fff; }
.day-date-picker { font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 600; padding: 4px 8px; border: 1px solid #e0e0e0; border-radius: 4px; background: transparent; color: #666; cursor: pointer; height: 29px; }
.day-date-picker:focus { border-color: #1e2024; outline: none; }
.df-league-header { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: 13px; margin: 12px 0 8px 0; font-family: 'Montserrat', sans-serif; }
.df-league-header img { width: 20px; height: 20px; object-fit: contain; }
.df-matches-grid { display: grid; gap: 10px; grid-template-columns: 1fr; margin-bottom: 14px; }
.df-empty { font-size: 13px; color: #888; padding: 10px 0; }
.df-loading { font-size: 13px; color: #888; padding: 10px 0; }

/* Match Card — ported from MatchScoreComponent.razor */
.match-card {
    border-radius: 8px;
    padding: 8px 12px 6px 12px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .08);
    font-family: 'Montserrat', sans-serif;
    background: #fff;
    transition: box-shadow .18s ease, background .18s ease;
}
.match-card.has-theories { border-left: 3px solid #38a9ff; }

.match-line-grid {
    display: grid;
    grid-template-columns: 24px 1fr minmax(100px, 110px) 1fr 24px;
    align-items: center;
    column-gap: 6px;
    user-select: none;
    cursor: pointer;
    transition: background .18s ease;
    padding: 2px;
    border-radius: 6px;
    margin: -2px;
}
.match-line-grid:hover { background: #ececec; }
.match-line-grid:focus-visible { outline: 2px solid #1a73e8; outline-offset: 2px; }

.team-logo {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: drop-shadow(0 0 1px rgba(0, 0, 0, .15));
    transition: transform .18s ease;
}
.match-line-grid:hover .team-logo { transform: scale(1.04); }

.team-name {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-weight: 500;
    font-size: 13px;
    line-height: 1.3;
    color: #212529;
    word-break: break-word;
    text-transform: none;
}
.team-name.home { text-align: left; }
.team-name.away { text-align: right; }

.score-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
}
.score {
    font-size: 18px;
    font-weight: 700;
    padding: 2px 12px;
    border-radius: 6px;
    background: transparent;
    color: #000;
    line-height: 1;
    white-space: nowrap;
    transition: transform .18s ease, background .18s ease;
    font-family: 'Montserrat', sans-serif;
}
.score.live-score { color: #28a745; background: rgba(40, 167, 69, .08); }
.match-line-grid:hover .score { transform: scale(1.05); }

.status-row {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 11px;
    font-weight: 700;
    margin: 4px 0 2px;
    line-height: 1.05;
    letter-spacing: .25px;
}
.status-row.live { color: #28a745; }
.status-row.non-live { color: #666; }

.theory-indicator {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 10px;
    font-weight: 600;
    color: #38a9ff;
    padding: 1px 6px;
    border-radius: 10px;
    background: rgba(56, 169, 255, 0.08);
    cursor: default;
    white-space: nowrap;
    line-height: 1.2;
    margin-left: 8px;
}
.theory-indicator i { font-size: 9px; }

.toggle-row { display: flex; justify-content: center; margin: 2px 0 6px; }
.toggle-btn-inline {
    cursor: pointer;
    border: none;
    background: transparent;
    padding: 4px 12px 4px 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    color: #444;
    border-radius: 22px;
    transition: background .15s ease, color .15s ease;
}
.toggle-btn-inline:hover,
.toggle-btn-inline:focus-visible { background: #ececec; color: #000; outline: none; }

.caret {
    width: 0; height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid #333;
    transition: transform .22s ease;
}
.caret.open { transform: rotate(180deg); }

.stats {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3px;
    text-align: center;
    font-size: 12px;
    padding: 0 0 8px;
    font-family: 'Montserrat', sans-serif;
}
.stats div { padding: 2px; }
.stat-label {
    color: #111;
    font-weight: 700;
    background: #f0f0f0;
    border-radius: 4px;
    padding: 2px 6px;
    font-size: 11px;
}

@media (max-width: 767px) {
    .match-card .team-name { font-size: 11px; }
    .match-card .score { font-size: 16px; padding: 2px 10px; }
    .match-card .match-line-grid { grid-template-columns: 20px 1fr minmax(80px, 90px) 1fr 20px; column-gap: 4px; }
    .match-card .team-logo { width: 20px; height: 20px; }
}

/* Theory Highlights */
.hl-item { padding: 8px 0; border-bottom: 1px solid #f0f0f0; }
.hl-item:last-child { border-bottom: none; }
.hl-row { display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.hl-content { flex: 1; min-width: 0; }
.hl-title { font-size: 12px; line-height: 1.3; margin-bottom: 3px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.hl-league { font-size: 10px; font-weight: 400; color: #999; margin-left: 4px; }
.hl-rate-row { display: flex; align-items: center; gap: 6px; margin-bottom: 2px; }
.hl-bar-track { flex: 1; height: 4px; background: #eee; border-radius: 2px; overflow: hidden; }
.hl-bar-fill { height: 100%; border-radius: 2px; transition: width .3s ease; }
.hl-rate-value { font-size: 11px; font-weight: 700; font-family: 'Montserrat', sans-serif; min-width: 30px; text-align: right; }
.hl-not-run { font-size: 10px; color: #bbb; font-style: italic; }
.hl-creator { font-size: 10px; color: #aaa; line-height: 1.2; }
.hl-peek-btn { font-family: 'Montserrat', sans-serif; font-size: 10px; font-weight: 600; padding: 3px 10px; white-space: nowrap; flex-shrink: 0; border: 1px solid #ccc; border-radius: 4px; background: #fff; color: #333; cursor: pointer; transition: all .15s ease; }
.hl-peek-btn:hover { background: #1e2024; border-color: #1e2024; color: #fff; }
.hl-peek-btn--locked { background: #f8f9fa; color: #999; border: 1px dashed #ddd; cursor: not-allowed; opacity: 0.7; }
.hl-peek-btn--locked:hover { background: #f8f9fa; border-color: #ddd; color: #999; }
ul.commentary { list-style: none; padding: 0; margin: 0; }
