
body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: #f5f5f5;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.pagina {
  display: grid;
  grid-template-columns: 1fr 4fr 1fr;
  min-height: calc(100vh - 104px);
}
.contenido {
  background-color: white;
  padding: 2px 30px;
}
@media (max-width: 600px) {
  .pagina {
    display: flex;
    flex-direction: column;
    padding: 0;
  }
  .contenido {
    padding: 2px 10px;
  }
}

h6 {
  color: #52585b;
}

.header {
  background-color: #0055daf1;
  display: flex;
  text-align: center;
  align-items: center;
  margin: 0;
}

.header h1 {
  color: white;
  margin: 0;
  padding: 10px;
  font-size: xx-large;
  font-weight: bold;
}

.welcome {
  /* font-size: large; */
  text-wrap: wrap;
  margin-top: 40px;
}

.menu {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  justify-items: center;
  margin-bottom: 30px;
}

.card{
  margin-top: 20px;
  width: 17rem; 
  min-height: 13rem;
}

.menu-anidado {
  margin-bottom: 50px;
}
.footer {
  display: flex;
  justify-content: center;
  margin-top: auto;
  padding-top: 3px;
  padding-bottom: 3px;
  background-color: #e2e2e2f1;
  color: rgb(94, 94, 94);
  text-align: center;
  bottom: 0;
  width: 100%;
  font-size: small;
}

.liston  {
  display: flex;
  flex-direction: column;
  /* background: #79797af1; */
  background: #e4e3db;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  white-space: nowrap;
  color: #52585b;
  font-weight: bold;
}

.titulo {
  display: flex;
  justify-content: center;
  background-color: #e2e2e2f1;
  font-size: larger;
  font-weight: bold;
  margin: 15px 0 20px 0;
  padding: 10px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 4;
}

.navigate {
  position: fixed;
  bottom: 30px;
  right: 50%;
  transform: translateX(50%);
  z-index: 3;
}

/* @media (max-width: 600px) {
  .navigate {
    right: 6px;
    transform: translateX(0);
  }
} */

.btnCard{
  margin-top: auto;
  margin-bottom: 5px;
}

.card-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}


#search {
  padding: 4px;
  margin-bottom: 10px;
}

.highlight {
  background-color: yellow;
  font-weight: bold;
}

.highlight-accordion {
  border: 2px solid red;
}

.block-search {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 8px;
}

.msg-search {
  display: flex;
  justify-content: center;
  font-size: medium;
  font-weight: bold;
  color: darkgray
}

.content {
  margin-bottom: 60px;
}
.btn-link{
  border: none;
  background: none;
  outline: none;
  padding: 0;
  margin: 0;
  position: absolute; 
  right: 2px; 
  bottom: 12px;
}

ol {
  list-style-type: none;
  counter-reset: item;
}

ol li {
  counter-increment: item;
}
li {
  list-style-position: inside;
  margin-top: 8px;
  margin-bottom: 8px;
}

li p:first-of-type {
  margin-top: 10px;
}

ol li::before {
  font-weight: bold;
  content: counter(item) ". ";
}