:root {
  --destacar: green;
  --counter: lightgreen;
  --raw_counter: salmon;
  font-size: 100%;
}

body {
  display: grid;
  grid-template-columns: auto 40em 20em auto ;
  grid-template-rows: 3em 1fr;
  grid-template-areas: "nav nav nav nav"
    ". edss score .";
  align-items: start; /* Permite que la EDSS y el score sean sticky */
  gap: 1em;
  background: white;
  margin-top: 0;
  
}

#cerebelo_subelementos {
  display: none;
}

.circle {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 1.75em;
  height: 1.75em;
  border-radius: 50%;
  text-align: center;
  float: right;
  margin: 0 0.1em
}

.counter {
  background-color: var(--counter);
}

.edss_form {
  grid-area: edss;
}

.h1_title {
  grid-area: score;
  position: -webkit-sticky;
  position: sticky;
  top: 1.5em;
}

h2, h3{
  display: inline;
}

label strong, td strong {
  color: var(--destacar);
}

nav {
  grid-area: nav;
  position: sticky;
  position: -webkit-sticky;
  z-index: 100;
  top: 0;
  display: inline-block;
  background-color: white;
  align-self: center;
}

nav li {
  display: inline;
}

.raw_counter {
  background-color: var(--raw_counter);
}

.subtitle {
  background-color: lightsteelblue;
  padding: 0.5em 1em;
  margin: 0.75em;
  border-radius: 0.75em;
}

td {
  vertical-align: top;
}

textarea {
  resize: none;
}

.title {
  background-color: lightgrey;
  padding: 0.5em 1em;
  border-radius: 0.75em;
  margin: 0.25em 0;
  position: -webkit-sticky;
  position: sticky;
  top: 3.45em;
}

#visual_main {
  display: none;
}
