/* För hela tabellen */
.tablepress {
	border-collapse: separate;
	border-spacing: 0 10px; /* Mellanrum mellan rader */
	width: 100%;
	font-family: 'Inter', sans-serif;
	border: none; /* Tar bort eventuell kantlinje runt tabellen */
}

/* För rubrikraden med avrundade hörn både uppe och nere */
.tablepress thead th {
	font-family: 'DM Sans', sans-serif;
	font-weight: bold;
	background-color: #f5f5f5;
	padding: 10px;
	font-size: 16px;
	text-align: left;
	border: none; /* Tar bort alla kantlinjer runt rubrikcellerna */
/* Tar bort linjen ovanför rubrikraden */
}

/* Avrundade hörn för både övre och nedre delen av första och sista cellen i rubrikraden */
.tablepress thead th:first-child {
	border-top-left-radius: 12px;
	border-bottom-left-radius: 12px;
}

.tablepress thead th:last-child {
	border-top-right-radius: 12px;
	border-bottom-right-radius: 12px;
}

/* För varje rad */
.tablepress tbody tr {
	background-color: #f9f9f9;
}

/* För varje cell i tabellkroppen */
.tablepress tbody td {
	padding: 10px;
	font-size: 14px;
	border-top: none; /* Tar bort eventuell linje överst i cellerna */
}

/* Border-radius för första och sista cellen i varje rad i tabellkroppen */
.tablepress tbody tr td:first-child {
	border-top-left-radius: 12px;
	border-bottom-left-radius: 12px;
}

.tablepress tbody tr td:last-child {
	border-top-right-radius: 12px;
	border-bottom-right-radius: 12px;
}