.page-jadwal-wrapper {
    padding: 1.5rem 0 3rem;
    min-height: 70vh;
    background: linear-gradient(to bottom, var(--bg-body) 0%, var(--bg-surface) 100%);
    color: var(--text);
}
.page-jadwal-wrapper .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 10px;
    width: 100%;
    box-sizing: border-box;
}
.jadwal-header,
.jadwal-date-group,
.date-header,
.jadwal-matches-list,
.football-match-card {
    width: 100%;
    box-sizing: border-box;
}
.jadwal-header {
    margin-bottom: 1.25rem;
}
.jadwal-league-info {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: color-mix(in srgb, var(--bg-surface) 85%, transparent);
    border: 1px solid var(--border);
    border-radius: 12px;
    border-bottom: 3px solid var(--accent);
}
.jadwal-league-info img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    background: var(--text);
    border-radius: 8px;
    padding: 4px;
    flex-shrink: 0;
}
.jadwal-league-info h1 {
    margin: 0;
    font-size: 1.15rem;
    color: var(--text);
}
.jadwal-league-info p {
    margin: 4px 0 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}
.jadwal-date-group {
    margin-bottom: 1.5rem;
}
.date-header {
    display: flex;
    align-items: center;
    margin: 12px 0 4px;
    padding: 6px 12px;
    border-bottom: 1px solid var(--border);
}
.date-header h3 {
    margin: 0;
    font-size: 13px;
    font-weight: bold;
    color: var(--text);
}
.date-header .day-name {
    color: var(--accent);
    font-weight: 500;
}
.jadwal-empty {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-muted);
}
.football-match-card {
    background: var(--bg-surface);
    padding: 10px 12px;
    margin: 4px 0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    border-left: 4px solid #FF9800;
    cursor: pointer;
    line-height: 1;
    transition: background 0.2s;
}
.football-match-card:hover {
    background: color-mix(in srgb, var(--text) 8%, var(--bg-surface));
}
.football-match-card.finished {
    border-left-color: var(--text-muted);
    opacity: 0.95;
}
.football-match-card.fixture {
    border-left-color: #FF9800;
}
.football-match-card .team-section {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0;
    min-width: 0;
}
.football-match-card .team-home,
.football-match-card .team-away {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 1 1 0;
    min-width: 0;
}
.football-match-card .team-home {
    justify-content: flex-end;
}
.football-match-card .team-away {
    justify-content: flex-start;
}
.football-match-card .team-name {
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    color: var(--text);
    margin: 0;
    line-height: 24px;
}
.football-match-card .team-logo {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: contain;
    background: #444;
    flex-shrink: 0;
}
.football-match-card .ls-red-card-icon {
    color: #ff4444;
    font-size: 12px;
    margin: 0 2px;
    filter: drop-shadow(0 0 3px #ff0000);
    flex-shrink: 0;
}
.football-match-card .match-center,
.football-match-card .score-container,
.football-match-card .fixture-time {
    width: 72px;
    min-width: 72px;
    max-width: 72px;
    margin: 0;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.football-match-card .fixture-time {
    font-family: monospace;
    font-size: 13.5px;
    color: #FF9800;
    font-weight: 600;
}
.football-match-card .score {
    font-weight: bold;
    font-size: 15px;
    padding: 0 4px;
    color: var(--text);
}
.football-match-card .score-dash {
    color: var(--text-muted);
    font-weight: bold;
    font-size: 15px;
}
.football-match-card .status-time {
    font-family: monospace;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 12px;
    width: 48px;
    min-width: 48px;
    max-width: 48px;
    text-align: center;
    margin-left: 4px;
    flex-shrink: 0;
    box-sizing: border-box;
}
.football-match-card .status-time.finished {
    background: var(--text-muted);
    color: var(--text);
}
.football-match-card .status-time.fixture {
    background: transparent;
    color: transparent;
}
@media (max-width: 640px) {
    .football-match-card .team-name {
        font-size: 12px;
    }
    .jadwal-league-info h1 {
        font-size: 1rem;
    }
}
