:root {
  /* --c3: #eff0f3; */
  --c3: #dcdcdc;
}

@media (prefers-color-scheme: dark) {
	:root {  
    --c3:#0e2439;
 	}
}

/* 
body {
  font-family: sans-serif;
  font-size: 1.25rem;
} 
*/

label {
  display: block;
  font-weight: bold;
}

[disabled] {
  background-color: gray;
  cursor: not-allowed;
}

textarea {
  width: 100%;
}

a {
  cursor: pointer;
}

select,
option {
  max-width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 0.25rem;
}

.field-label {
  font-weight: bold;
}

.field-value {
  margin-left: 1rem;
  /* 
  border: 2px solid var(--c1);
  border-radius: 0.25rem; 
  */
  padding: 1rem;
  background-color: var(--c2);
  overflow: auto;
}

.field-value pre,
.field-value .field-value {
  margin-left: 1rem;
  /*
  border: 2px solid var(--c1);
  border-radius: 0.25rem;
  */
  padding: 1rem;
  background-color: var(--c3);
}