:root {
  --bg-primary-bar: var(--primary);
  --bg-secondary: #f2f2f2;
}
#resultado {
  width: 100%;
  padding: 20px;
  border: none;
  border-radius: 5px;
  margin-top: 20px;
  display: none;
}
#resultado table {
  margin: 0 auto;
  width: 100%;
  animation: show-suave 0.5s ease-in-out;
}

#resultado .contenedor-BL,
#resultado .contenedor-bar {
  width: 100%;
  margin: 1.5rem auto;
  /* background-color: var(--bg-primary-bar); */
  border: none;
  padding: 1rem;
  border-radius: 1rem;
}

#resultado .contenedor-BL {
  background-color: inherit;
  padding: 1rem 0;

}
#resultado .text-h1,
#resultado .text-h2 {
  margin: 0;
  font-size: 2rem ;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #151515;
}
#resultado .text-h2 {
  font-size: 1.5rem ;
}
#resultado .contenedor-bar {
  background-color: inherit;
  border: solid 1px var(--bg-primary-bar);
  box-shadow: 0 0.3rem 6.6rem -2.5rem rgba(34, 34, 33, 0.5);
}

#resultado tr > * {
  padding: 0.25rem 1rem;
}

#resultado tr > th {
  font-size: 0.85em;
  font-weight: normal;
  text-align: left;
}

#resultado tr > td {
  font-size: 1.1em;
  font-weight: bold;
}

#resultado .contenedor-track {
  width: 100%;
  margin: 1rem auto;
  padding: 1rem 0;
}

#resultado .contenedor-track thead {
  margin-bottom: 1rem;
  /* background-color: var(--bg-secondary); */
}
#resultado .contenedor-track thead tr > * {
  background-color: var(--bg-secondary);
}

#resultado .contenedor-track thead tr th:first-child{
  border-radius: 14px 0 0 14px  ; /* Replace with your desired radius */
  padding-left: 2rem;
}
#resultado .contenedor-track thead tr th:last-child{
  border-radius: 0 14px 14px 0 ; /* Replace with your desired radius */
}


#resultado .contenedor-track tr {
  position: relative; /* Enable positioning for pseudo-element */
}

#resultado .contenedor-track tr > * {
  font-size: 14px;
  font-weight: normal;
  min-height: 3rem;
  vertical-align: sub;
  padding: 1em;
  border-bottom: 1px solid #f3f3f3;
}

#resultado .contenedor-track tbody tr > * {
  height: 2rem;
}
.alert:not(:empty) {
  animation: show-suave 0.3s ease-in-out;
  padding: 20px 30px;
  background-color: #ff00002c;
  border-radius: 5px;
  margin-top: -20px;
  display: block;
}
.alert {
  display: none;
}

@keyframes show-suave {
  from {
    opacity: 0.5;
    scale: 85%;
  }
  to {
    opacity: 1;
    scale: 100%;
  }
}
