@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');

body {
    font-family: 'Inter', system-ui, sans-serif;
}

table {
    border-collapse: collapse;
}

th, td {
    border: 2px solid #000000;
    padding: 12px 16px;
    text-align: left;
    vertical-align: top;
}

th {
    background-color: #f8a5d8;
    font-weight: 600;
    color: #111827;
}

.caption {
    font-size: 0.95rem;
    line-height: 1.4;
}

/* MOBIL */
@media (max-width: 640px) {
    th, td {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .caption {
        font-size: 0.875rem;
    }
    
    /* Litt mindre luft */
    main > section:first-of-type {
        gap: 1.25rem;
    }
}