body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #f4f4f9;
    margin: 0;
    padding: 20px;
    color: #333;
}

.container {
    max-width: 900px;
    margin: 0 auto;
}

h1 {
    text-align: center;
    color: #1e293b;
    margin-bottom: 30px;
}

.række {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    overflow: hidden;
}

.række h2 {
    background: #1e293b;
    color: white;
    margin: 0;
    padding: 15px 20px;
    font-size: 1.2rem;
}

.kamp {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #e2e8f0;
}

.kamp:last-child {
    border-bottom: none;
}

.match-info {
    display: flex;
    align-items: center;
    flex: 1;
}

.team {
    flex: 1;
    font-weight: 500;
}

.team:first-child {
    text-align: right;
    padding-right: 20px;
}

.team:last-child {
    text-align: left;
    padding-left: 20px;
}

.score-box {
    background: #f1f5f9;
    padding: 8px 15px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 1.1rem;
    min-width: 60px;
    text-align: center;
    color: #0f172a;
}

.match-link a {
    display: inline-block;
    padding: 6px 12px;
    background: #3b82f6;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.85rem;
    transition: background 0.2s;
}

.match-link a:hover {
    background: #2563eb;
}

#last-updated {
    text-align: center;
    margin-bottom: 10px;
    font-size: 0.85rem;
    color: #64748b;
}