html,
body {
  font-family: "Source Sans 3", sans-serif;
  font-size: 16px;
  height: 100%;
  /* line-height: 26px; */
  margin: 0;
}

body {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100vh;
}

header {
  background: linear-gradient(to right, #f5f5dc, #fff8dc);
  border: 2px solid black;
  padding: 4px;
}

footer {
  background: linear-gradient(to right, #f0e68c, #f5f5dc);
  border: 2px solid black;
  padding: 4px;
}

main {
  background: white;
  border: 2px solid black;
  padding: 4px;
  overflow-y: auto;
}

button.inline-button {
  width: auto;
  display: inline-block;
}

p {
  text-align: justify;
}

table {
  border-collapse: collapse;
  border: 1px solid #dddddd;
}



blockquote {
  margin-left: 30px;
}

td {
  border: 1px solid #dddddd;
  padding: 5px 5px;
  text-align: center;
  vertical-align: top;
}

.tabla-caption {
  background-color: #559549;
  color: white;
  font-weight: bold;
  /*font-size: 1.2em;*/
  text-align: center;
  padding: 8px;
  border: 1px solid #dddddd;
  border-bottom: none;
  width: fit-content;
  margin: auto;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

th {
  background-color: #758371;
  border: 1px solid #dddddd;
  color: white;
  /*font-family: 'Poppins', sans-serif;*/
  padding: 5px 5px;
  text-align: center;
}

th.left {
  text-align: left;
  vertical-align: top;
}

ul {
  list-style: disc;
}

td.left {
  text-align: left;
}

td.right {
  text-align: right;
}

td.justify {
  text-align: justify;
}

.yellow {
  background: yellow;
  color: black;
}

.green {
  background-color: green;
  color: black;
}

.orange {
  background: orange;
  color: black;
}

.grey {
  background: lightgrey;
  color: black;
  text-align: center;
  font-weight: bold;
}

.lightgreen {
  background: lightgreen;
  color: black;
  text-align: center;
  font-weight: bold;
}

.red {
  background: red;
  color: white;
  text-align: center;
  font-weight: bold;
}

.blue {
  background: lightblue;
  color: black;
  text-align: center;
  font-weight: bold;
}

.pink {
  background: pink;
  color: black;
  text-align: center;
  font-weight: bold;
}

.verde1BT {
  background: #5B984D;
  color: white;
  font-weight: bold;
}

.verde2BT {
  background: #758371;
  color: white;
  font-weight: bold;
}

.nover {
  display: none;
}

.debug {
  font-size: 12px;
}

.small {
  font-size: small;
}

.x-small {
  font-size: x-small;
}

.xx-small {
  font-size: xx-small;
}

.large {
  font-size: large;
}

.x-large {
  font-size: x-large;
}

.xx-large {
  font-size: xx-large;
}

.numbering {
  text-align: right;
  font-weight: bold;
}

.asth {
  background-color: #006a6c;
  border: 1px solid #dddddd;
  color: white;
  font-weight: bold;
  padding: 5px 5px;
  text-align: left;
}

.dataframe {
  font-size: xx-small;
}

.center {
  text-align: center;
}

.wide {
  /*font-family: 'Poppins', sans-serif;*/
  font-weight: bold;
}

.nowrap {
  white-space: nowrap;
}

table.invisible {
  border: none;
  border-collapse: collapse;
}

td.invisible {
  border: none;
  border-collapse: collapse;
  padding: 5px 5px;
  text-align: left;
  vertical-align: top;
}

.nowrap-nobreak {
  white-space: nowrap;
  word-break: keep-all;
  overflow-wrap: normal;
}

.espaciado {
  line-height: 1.8;
}

.notification-container {
  border: 2px solid black;
  border-radius: 5px;
  display: block;
  padding: 10px;
}


pre.html {
  background-color: black;
  color: white;
  font-family: 'Consolas', Monaco, 'Courier New', monospace;
  font-size: 10px;
  white-space: pre-wrap;
}

td button.full-width {
  box-sizing: border-box;
  height: 100%;
  margin: 0;
  padding: 20;
  width: 100%;
}

td input.full-width {
  border: none;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  width: 100%;
}

.cuadro {
  width: 200px;
  height: 200px;
  border: 2px solid black;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px;
  box-sizing: border-box;
}