/* LIVE Rosenau */

body, h1, h2, h3 {
	/*margin: auto;
	padding-inline: var(--paddding);
	max-inline-size: var(--stage);*/
  font-family: var(--font-body) !important;
}
/* table */
td, th {
	padding-inline-start: 0;
	vertical-align: top;
}
th {
		white-space: nowrap; /* Prevents wrapping in the first column */
}
a {
  color: var(--color-link);
}
p a {
  text-decoration: underline;
  text-underline-offset: 0.125em;
}
dl {
  --display: grid;
  --dl-columns: auto 1fr;
  display: var(--display);
  grid-template-columns: var(--dl-columns);
}
dt, dd {
  margin: 0;
}






  /********************************************************
   CHECK
   ********************************************************/


/*
p {
  max-inline-size: 64ch;
}
*/

/*
nav li {
  display: block;
}
*/

/*
main > article > * + * {
	margin-block-start: 2em;
}
main > article > section > * + * {
	margin-block-start: 1em;
}
*/
	
/* list */
/*
.list {
	padding: 0;
}
.list li {
	list-style-type: none;
}
.list--inline li {
	display: inline-block;
}
.list--inline li:not(:first-child):before {
	content: ", ";
}
*/

/* definition list */
/*
dl {
	display: grid;
	grid-template-columns: auto auto;
	gap: 1em;
	justify-items: start;
}
.dl {
	grid-template-columns: auto 1fr;
}
*/

.table {
	width: 100%;
}
.table td:first-child {
		white-space: nowrap; /* Prevents wrapping in the first column */
}

.table td:last-child {
		width: 100%; /* The last column takes up the remaining space */
		/* This is implied; you can also use a flexbox layout if needed */
}