/* =====================================================
   League Prediction Hub — league.css
   ===================================================== */

.dsn-main { min-height: 60vh; }

/* Breadcrumb */
.pl-breadcrumb {
    display: flex; align-items: center; gap: 6px;
    font-size: 13px; color: #6b7280; padding: 20px 0 0;
}
.pl-breadcrumb a { color: #6b7280; text-decoration: none; }
.pl-breadcrumb a:hover { color: #e8192c; }
.pl-breadcrumb span { color: #374151; }
.pl-breadcrumb svg { color: #4b5563; flex-shrink: 0; }


/* Layout */
.lh-layout {
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: 20px;
    align-items: start;
    padding-bottom: 48px;
}
.lh-sidebar {
    position: sticky;
    top: 76px;
    align-self: start;
}
@media (max-width: 900px) {
    .lh-layout { grid-template-columns: 1fr; }
    .lh-sidebar { position: static; }
}
@media (max-width: 600px) {
    .lh-title { font-size: 18px; }
    .lh-match-card { padding: 12px; }
    .lh-team { font-size: 13px; gap: 6px; }
    .lh-team img { width: 18px; height: 18px; }
    .lh-match-card__center { min-width: 52px; }
    .lh-score-pred { font-size: 15px; }
    .lh-odd { padding: 5px 2px; }
    .lh-odd__pct { font-size: 12px; }
}
@media (max-width: 420px) {
    .lh-match-card__odds { gap: 4px; }
    .lh-odd__label { font-size: 9px; }
    .lh-team { font-size: 12px; }
}

/* Title */
.lh-title {
    font-size: 22px; font-weight: 700; color: #111827;
    margin: 0 0 20px;
}

/* Day header */
.lh-day-header {
    font-size: 12px; font-weight: 600; color: #6b7280;
    text-transform: uppercase; letter-spacing: .06em;
    padding: 16px 0 8px;
    border-bottom: 1px solid rgba(0,0,0,.08);
    margin-bottom: 2px;
}
.lh-day-header:first-child { padding-top: 0; }

/* Match card */
.lh-match-card {
    display: block;
    background: #1a1d2e;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 8px;
    text-decoration: none;
    transition: border-color .15s;
}
.lh-match-card:hover { border-color: #e8192c; }
.lh-match-card__teams {
    display: flex; align-items: center; gap: 12px; margin-bottom: 12px;
}
.lh-team {
    display: flex; align-items: center; gap: 8px; flex: 1;
    font-size: 14px; font-weight: 600; color: #f3f4f6;
}
.lh-team img { width: 22px; height: 22px; object-fit: contain; flex-shrink: 0; }
.lh-team--home { justify-content: flex-end; text-align: right; }
.lh-team--away { text-align: left; }
.lh-match-card__center { text-align: center; flex-shrink: 0; min-width: 64px; }
.lh-time { font-size: 11px; color: #6b7280; margin-bottom: 2px; }
.lh-score-pred {
    font-size: 18px; font-weight: 800; color: #f9fafb;
    letter-spacing: .05em;
}

/* Odds row */
.lh-match-card__odds {
    display: flex; gap: 6px; border-top: 1px solid rgba(255,255,255,.07); padding-top: 10px;
}
.lh-odd {
    flex: 1; text-align: center;
    background: #12151f;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 7px;
    padding: 6px 4px;
    transition: all .15s;
}
.lh-odd--tip {
    background: rgba(232,25,44,.1);
    border-color: rgba(232,25,44,.4);
}
.lh-odd--over { border-style: dashed; }
.lh-odd__label {
    display: block; font-size: 10px; color: #6b7280;
    font-weight: 600; text-transform: uppercase; letter-spacing: .04em;
    margin-bottom: 2px;
}
.lh-odd__pct {
    display: block; font-size: 13px; font-weight: 700; color: #d1d5db;
}
.lh-odd--tip .lh-odd__pct { color: #e8192c; }

.lh-empty {
    text-align: center; color: #6b7280; font-size: 14px; padding: 48px 0;
}

/* Sidebar */
.lh-card {
    background: #1a1d2e;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 14px;
}
.lh-card__title {
    font-size: 13px; font-weight: 700; color: #f9fafb;
    padding: 12px 16px; border-bottom: 1px solid rgba(255,255,255,.07);
}
.lh-card__more {
    display: block; text-align: center;
    font-size: 12px; color: #6b7280;
    padding: 10px; border-top: 1px solid rgba(255,255,255,.07);
    text-decoration: none; transition: color .15s;
}
.lh-card__more:hover { color: #e8192c; }

/* Mini standings */
.lh-table { width: 100%; border-collapse: collapse; }
.lh-table th {
    font-size: 11px; color: #4b5563; font-weight: 600;
    padding: 8px 12px 6px; text-align: left; text-transform: uppercase;
}
.lh-table td { padding: 8px 12px; font-size: 13px; color: #9ca3af; }
.lh-table tr { border-bottom: 1px solid rgba(255,255,255,.04); }
.lh-table tr:last-child { border-bottom: none; }
.lh-table__pos { color: #6b7280; font-weight: 500; width: 24px; }
.lh-table__pts { font-weight: 700; color: #f9fafb; text-align: right; }
.lh-table__team {
    display: flex; align-items: center; gap: 8px;
    text-decoration: none; color: #d1d5db; font-weight: 500;
}
.lh-table__team img { width: 18px; height: 18px; object-fit: contain; }
.lh-table__team:hover { color: #f9fafb; }

/* Top scorers */
.lh-scorers { padding: 4px 0; }
.lh-scorer {
    display: flex; align-items: center; gap: 10px;
    padding: 8px 16px; border-bottom: 1px solid rgba(255,255,255,.04);
    font-size: 13px;
}
.lh-scorer:last-child { border-bottom: none; }
.lh-scorer__pos { color: #4b5563; font-weight: 600; width: 18px; flex-shrink: 0; }
.lh-scorer__name { color: #d1d5db; text-decoration: none; flex: 1; }
.lh-scorer__name:hover { color: #e8192c; }
.lh-scorer__goals { font-weight: 700; color: #f9fafb; }

/* Other leagues */
.lh-other-leagues { padding: 6px 8px; }
.lh-other-league {
    display: block; padding: 8px 8px; border-radius: 6px;
    font-size: 13px; color: #9ca3af; text-decoration: none;
    transition: all .15s;
}
.lh-other-league:hover { background: rgba(255,255,255,.06); color: #f3f4f6; }
