* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #0f172a;
    color: #fff;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

h1 {
    margin-bottom: 20px;
}

.filter-box {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.filter-box input,
.filter-box button,
.input-pred {
    padding: 10px 12px;
    border: 1px solid #334155;
    border-radius: 10px;
    background: #111827;
    color: #fff;
}

.filter-box button,
button {
    cursor: pointer;
    background: #f59e0b;
    color: #111827;
    font-weight: bold;
    border: none;
}

.card {
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 16px;
}

.league-row,
.teams,
.meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.league-row {
    margin-bottom: 14px;
}

.league-name {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
}

.league-name img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.team {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 30%;
    min-width: 220px;
}

.team img {
    width: 38px;
    height: 38px;
    object-fit: contain;
    background: #fff;
    border-radius: 50%;
    padding: 3px;
}

.score {
    font-size: 28px;
    font-weight: bold;
    min-width: 90px;
    text-align: center;
}

.meta {
    margin-top: 14px;
    font-size: 14px;
    color: #cbd5e1;
}

.prediction {
    margin-top: 14px;
    background: #0f172a;
    padding: 12px;
    border-radius: 12px;
}

.status {
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: bold;
    background: #334155;
}

.status.ft {
    background: #14532d;
}

.status.live,
.status.1h,
.status.2h {
    background: #991b1b;
}

.status.ns,
.status.tbd {
    background: #1d4ed8;
}

.input-pred {
    width: 100%;
    margin-top: 10px;
}