/* Shared NHL page styles — loaded by all NHL views */

/* ── Injury report header (h4 + toggle button side by side) ─ */
.injury-report-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.injury-report-header h4 {
    margin: 0;
}

.btn-toggle-rest {
    cursor: pointer;
    background: rgba(147, 197, 253, 0.15);
    color: #93c5fd;
    padding: 4px 12px;
    border: 1px solid rgba(147, 197, 253, 0.3);
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: background 0.15s;
    white-space: nowrap;
}

.btn-toggle-rest:hover {
    background: rgba(147, 197, 253, 0.25);
    color: #fff;
}

/* ── Viewport fill + sticky footer ───────────────────────── */
body.nhl-body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

body.nhl-body .nhl-page {
    flex: 1;
}

/* ── Page container offset (navbar is position:absolute) ─── */
.nhl-page {
    color: #e2e8f0;
    padding: 90px 0 2rem;
}

/* ── Shared table chrome ─────────────────────────────────── */
.nhl-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.nhl-table thead th {
    background: rgba(147, 197, 253, 0.12);
    color: #93c5fd;
    font-weight: 600;
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.nhl-table tbody tr:last-child td {
    border-bottom: none;
}

.nhl-table tbody tr:hover td {
    background: rgba(255, 255, 255, 0.05);
}

.nhl-table a {
    color: #93c5fd;
    text-decoration: none;
}

.nhl-table a:hover {
    color: #fff;
    text-decoration: underline;
}
