*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  /*font-family: 'Source Sans 3', sans-serif;*/
  text-decoration:none;
}

/*LOGIN Y REGISTRO*/
body{
  background-color: #eeedf0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}

main{
  width: 100%;
  margin: auto;
  margin-top: 60px;
  
}

.main-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  margin-top: 100px;
}

.form-container {
  width: 350px;
  height: 440px;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius: 10px;
  padding: 20px 30px;
  text-align: center;
}

.logo {
  height: 70px;
  margin-bottom: 20px;
}

.title {
  margin-left: 0;
  margin-right: 0;
  font-size: 24px;
  font-weight: 600;
}

.form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 15px;
}

.input {
  border-radius: 20px;
  border: 1px solid #c0c0c0;
  outline: 0 !important;
  padding: 12px 15px;
  font-size: 15px;
}

.form-btn {
  padding: 10px 20px;
  border-radius: 20px;
  border: 0 !important;
  outline: 0 !important;
  background: #58aa4d;
  color: white;
  cursor: pointer;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  font-size: 18px;
}

.form-btn:active {
  box-shadow: none;
}

/* Estilos para el cartel de notificación */
.alert-danger {
    font-size: 14px; /* Tamaño de fuente más grande */
    padding: 10px; /* Espaciado interno */
    margin-bottom: 17px; /* Espacio inferior */
    border-radius: 5px; /* Bordes redondeados */
    background-color: #f8d7da; /* Color de fondo para el mensaje de error */
    color: #721c24; /* Color del texto */
    border: 1px solid #f5c6cb; /* Borde del cartel */
}

/* Añade esta clase a tu CSS */
.form-container.alert-active {
    height: 880px; /* Ajusta esta altura según tus necesidades */
}

/* Clase para alargar el contenedor principal al mostrar la alerta */
.main-container.alert-active {
    height: 600px; /* Ajusta esta altura según tus necesidades */
}

.alert-success {
    background-color: #C6F4C6; /* Verde claro */
    color: #2E865F; /* Verde oscuro */
    border-color: #2E865F;
    padding: 15px; /* Espaciado interno */
    border-radius: 5px; /* Bordes redondeados */
    margin-bottom: 20px; /* Espacio inferior */
}

@media (max-width: 500px) {
  .main-container {
    margin-top: 180px; /* Reduce el margen superior */
  }

  .form-container {
    width: 90%; /* Reduce el ancho del contenedor del formulario */
    height: auto; /* Ajusta la altura automáticamente */
    padding: 15px 20px; /* Reduce el padding */
  }

  .logo {
    height: 100px; /* Reduce la altura del logo */
    width: 90%; /* Ajusta el ancho del logo */
    margin-bottom: 10px;
  }

  .title {
    font-size: 22px; /* Reduce el tamaño de la fuente del título */
  }

  .input {
    padding: 10px 12px; /* Reduce el padding de los inputs */
    font-size: 16px; /* Reduce el tamaño de la fuente de los inputs */
  }

  .form-btn {
    padding: 8px 16px; /* Reduce el padding del botón */
    font-size: 18px; /* Reduce el tamaño de la fuente del botón */
    margin-top: 30px; /* Reduce el margen superior del botón */
  }
}


/* EMPIEZA EL HEADER */

header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: #ffff;
  z-index: 9999;
}

/* Barra Menu */
.container__menu {
  width: 100%;
  height: 70px;
  background: #58aa4d;
  padding: 0;
  box-sizing: border-box; /* Asegura que el padding no afecte el tamaño del contenedor */
}

.menu {
  max-width: 1200px;
  margin: auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px; /* Ajusta el padding del menú */
  box-sizing: border-box; /* Asegura que el padding no afecte el tamaño del contenedor */
}

nav {
  height: 100%;
  display: flex;
  flex: 1;
}

nav > ul {
  height: 100%;
  display: flex;
  flex: 1;
  justify-content: flex-start;
  margin: 0; /* Asegura que no haya márgenes externos */
  padding: 0; /* Asegura que no haya padding interno */
  box-sizing: border-box; /* Asegura que el padding no afecte el tamaño del contenedor */
}

nav ul li {
  height: 100%;
  list-style: none;
  position: relative;
}

nav > ul > li:first-child > a {
  background-image: url(../images/casa2.png);
  background-size: 45px;
  background-repeat: no-repeat;
  background-position: center center;
  padding: 20px 40px;
}

nav ul li:last-child {
  display: flex;
  align-items: center; /* Center items vertically */
}

nav > ul > li:first-child:hover > a {
  background-image: url(../images/casa2.png);
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center center;
}

nav > ul > li > a {
  height: 100%;
  width: 100%;
  display: flex;
  padding: 14px;
  color: white;
  text-transform: uppercase;
  font-size: 17px;
  transition: all 300ms ease;
  align-items: center;
}

nav > ul > li > a:hover {
  transform: scale(1.1);
  background: #436EC0;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
}

#selected {
  transform: scale(1.1);
  background-color: #862633;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
}

.logout-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 300ms ease;
}

.logout-icon:hover {
  transform: scale(1.1);
}

/* Ajuste del perfil de usuario */
.profile-menu {
  margin-left: auto; /* Empuja el menú de perfil hacia la derecha */
  display: flex;
  align-items: center;
}

/* Submenu */
nav ul li ul {
  width: 200px;
  display: none; /* Oculta el submenú por defecto */
  flex-direction: column;
  background: #ffff;
  position: absolute;
  top: 100%;
  left: 0;
  padding: 14px 0;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
  z-index: 10;
}

nav ul li:hover ul {
  display: flex; /* Muestra el submenú al pasar el cursor */
  opacity: 1;
  visibility: visible;
}

nav ul li ul:before {
  content: '';
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 12px solid white;
  position: absolute;
  top: -12px;
  left: 20px;
}

nav ul li ul li a {
  display: block;
  color: darkgreen;
  padding: 6px;
  padding-left: 14px;
  margin-top: 10px;
  font-size: 14px;
  text-transform: uppercase;
  transition: all 300ms ease;
}

nav ul li ul li a:hover {
  background: #436EC0;
  color: aliceblue;
  transform: scale(1.1);
  padding-left: 30px;
  font-size: 14px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
}

/* Icono del menú en dispositivos móviles */
.icon__menu {
  font-size: 20px;
  color: white;
  cursor: pointer;
  width: 26px;
  height: 100%;
  display: none;
  align-items: center;
}

#label__check {
  width: 26px;
  height: 100%;
  display: none;
}

#check__menu {
  display: none;
}

/* Media Queries */
@media screen and (max-width: 768px) {
  header {
    height: auto;
  }

  .container__menu {
    flex-direction: column;
    align-items: center;
  }

  .menu {
    width: 100%;
  }

  nav {
    width: 100%;
  }

  nav ul {
    flex-direction: column;
    width: 100%;
  }

  nav ul li {
    width: 100%;
  }

  nav ul li a {
    width: 100%;
    padding: 10px;
  }

  .icon__menu {
    display: flex;
  }

  #label__check {
    display: block;
  }

  #check__menu:checked ~ nav > ul {
    display: flex;
  }

  .profile-menu {
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  header {
    height: auto;
  }

  .container__menu {
    flex-direction: column;
    align-items: center;
  }

  .menu {
    width: 100%;
  }

  nav {
    width: 100%;
  }

  nav ul {
    flex-direction: column;
    width: 100%;
  }

  nav ul li {
    width: 100%;
  }

  nav ul li a {
    width: 100%;
    padding: 10px;
  }

  .icon__menu {
    display: flex;
  }

  #label__check {
    display: block;
  }

  #check__menu:checked ~ nav > ul {
    display: flex;
  }

  .profile-menu {
    width: 100%;
  }
}


@media (min-width: 800px) {

  .larger-text {
    font-size: 20px; /* Cambia el tamaño del texto según sea necesario */
  }
  
  .pie-pagina .grupo-1 .box figure img{
    width: 330px;
    height: 70px;
    margin-right: 20px;
  }
  
  .pie-pagina .grupo-1 .box h2{
    color: black;
    margin-bottom: 25px;
    font-size: 15px;
  }
  
  .pie-pagina .grupo-1 .box p{
    color: black;
    margin-bottom: 10px;
    font-size: 13px;
    text-transform: inherit;
  }
  
  .pie-pagina .grupo-1 .box .red-social .links{
    margin-bottom: 25px;
  }

  .pie-pagina .grupo-1 {
    grid-gap: 20px;
}

  .links{
    font-size: 15px;
  }
  
   nav > ul > li > a {
    font-size: 15px;
  }
}





/*COMIENZA EL MAIN*/

main {
  padding-top: 10px; /* Add padding to create space for the fixed header */
}

.larger-text {
  font-size: 20px; /* Cambia el tamaño del texto según sea necesario */
}



/*COMIENZA EL FOOTER*/

.pie-pagina {
  position: relative;
  bottom: 0;
  width: 100%;
  background-color: white;
}


.pie-pagina .grupo-1{
  width: 100%;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap:50px;
  padding: 25px 0px;
}

.pie-pagina .grupo-1 .box figure{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pie-pagina .grupo-1 .box figure img{
  width: 400px;
  height: 200px;
  margin-right: 40px;
}

.pie-pagina .grupo-1 .box h2{
  color: black;
  margin-bottom: 25px;
  font-size: 18px;
}

.pie-pagina .grupo-1 .box p{
  color: black;
  margin-bottom: 10px;
  font-size: 13px;
  text-transform: inherit;
}

.pie-pagina .grupo-1 .box .red-social .links{
  margin-bottom: 25px;
}


.links {
  color: #000000; /*color de las letras de los link de redes sociales del footer*/
  font-size: 13px;
  line-height: 35px;
  display: flex;
  font-family: 'Source Sans 3', sans-serif;
}
.icon { /*logo de redes sociales en el footer*/
  font-size: 35px;
  padding: 5px;
  margin-bottom: 5px;
  margin-right: 5px;
}

hr {
  border: none;
}
.copy{ /*copyright footer*/
  text-align: center;
  font-size: 15px;
}

/*PAGINA OBRAS-SOCILAES*/

.info-obso {
  flex: 1 1 30%; /* Ajusta la proporción de las columnas */
  margin: 5px; /* Espacio entre los elementos */
  padding: 10px; /* Espacio interno */
  border: 1px solid #ddd; /* Borde alrededor de cada elemento */
  border-radius: 5px; /* Bordes redondeados */
  background-color: #f9f9f9; /* Fondo claro */
  font-size: 14px;
}

.info-obso h1 {
  font-size: 16px; /* Tamaño de la letra */
  margin-bottom: 5px; /* Espacio inferior */
  color: #333; /* Color del texto */
}

.info-obso p {
  font-size: 14px; /* Tamaño de la letra */
  margin-bottom: 5px; /* Espacio inferior */
  color: #555; /* Color del texto */
}

.modal-dialog {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.modal-content {
  padding: 10px; /* Espacio interno */
  border-radius: 10px; /* Bordes redondeados */
  box-shadow: 0 5px 15px rgba(0,0,0,0.3); /* Sombra */
}

.modal-header, .modal-footer {
  border: none; /* Quitar bordes */
}

.modal-footer button {
  background-color: #862633;
  border-color: #862633;
  font-size: 20px;
}



/*PAGINA SISTEMAS*/

a{
  text-decoration: none;
  color: #fff;
}

html{
  font-size: 10px;
}

section{
  padding: 1rem 0;
  background-color: #eeedf0;
}

.heading{
  text-transform: uppercase;
  font-size:  2.5rem;
  letter-spacing: 3px;
  margin-right: -3px;
  margin-bottom: 5rem;
  text-align: center;
  color: black;
  position: relative;
}

.heading::after{
  content: "";
  width: 8rem;
  height: .7rem;
  background-color: #000f25;
  position: absolute;
  bottom: -2rem;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2rem;
}

.card-wrapper{
  display: flex;
  align-items: center;
  align-content: center;
  flex-direction: column;
}

.card{
  width: 22rem;
  background-color: #ebeef8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 1rem 0;
  box-shadow: .5rem .5rem 3rem rgba(0,0,0,0.2);
}

.card .card-img{
  width: 100%;
  height: 15rem;
  object-fit: cover;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 63%, 0% 100%);
  clip-path: polygon(0 0, 100% 0, 100% 63%, 0% 100%);
}

.profile-img{
  width: 10rem;
  height: 10rem;
  object-fit: cover;
  border-radius: 50%;
  margin-top: -11rem;
  z-index: 999;
  border: 0.5rem solid #ebeef8;
}

.card h1{
  font-size: 1.5rem;
  color: #333;
  margin: 1.5rem 0;
}

.job-title{
  color: #777;
  font-size: 12px;
  font-weight: 300;
}

.about{
  font-size: 10px;
  margin: 1.0rem 0;
  font-family: "Poppins", sans-serif;
  text-align: center;
  color: #333;
  margin-left: 5px;
  margin-right: 5px;
  line-height: 1.6;
  margin-top: 5px;
}

.card .btn{
  padding: 1rem 2.5rem;
  background-color: #436EC0;
  border-radius: 2rem;
  margin: 1rem 0;
  text-transform: uppercase;
  color: #f1f6f9;
  font-size: 1.4rem;
}

.card .btn:hover{
  box-shadow: none;
}

.social-media{
  width: 65%;
  list-style: none;
  display: flex;
  justify-content: space-evenly;
  padding: 1.5rem 0;
  margin: 1.5rem;
  border-top: 1px solid rgb(0,0,0,.1);
}

.social-media{
  font-size: 3rem;
  transition: color .5s;
}

.social-media .icon_dos{
  font-size: 25px;
  padding: 5px;
  margin-bottom: 5px;
  margin-right: 5px;
}

button .carousel-control-prev{
  color: #000000;
}



@media screen and (min-width:700px){
  .card-wrapper{
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
  }
  
  .card{
      margin: 2rem;
      transition: transform .5s;
  }
}





.calendario_titulo {
text-align: center;
font-size: 20px;
margin-bottom: 10px;
}

:root {
  --primary-clr: #436EC0;
}

/* nice scroll bar */
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: #f5f5f5;
  border-radius: 50px;
}
::-webkit-scrollbar-thumb {
  background: var(--primary-clr);
  border-radius: 50px;
}



.resumen-obso {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-left: 90px;
  margin-right: 90px;
}

.btn-group {
  margin: 10px; /* Espacio entre cada botón */
}

#btn-sombras .btn {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  border: none;
}

#btn-sombras-oculto .btn {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  border: none;
}

.dropdown-menu .info-obso {
  flex: 1;
  margin: 10px;
}

.dropdown-menu .info-obso h1 {
  border-bottom: 2px solid;
  display: inline-block;
  color: #436EC0;
  padding-bottom: 5px;
  font-size: 20px;
}

.dropdown-menu .info-obso p {
  font-size: 13px;
}

.btn-scrolltop {
  position: fixed;
  bottom: 25px;
  right: 20px;
  padding: 10px 15px;
  background: #58aa4d;
  color: white;
  border: 1px solid #58aa4d;
  cursor: pointer;
  transform: translateY(100px);
  transition: 0.3s;
  font-size: 20px;
  z-index: 9999; /* Valor alto para asegurarse de que esté al frente */
}

.custom-swal-popup {
  font-size: 18px; /* Tamaño de letra más grande */
  left: 50%; /* Centra horizontalmente */
  transform: translateX(-50%); /* Ajusta la posición para que esté centrado */
}


.btn-scrolltop-on {
  transform: translateY(0);
}

.dropdown-menu {
  padding: 0;
  margin: 0;
  box-shadow: none;
  border-radius: 0;
}

.container-info-pdf {
  padding: 5px 15px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #dee2e6;
}

.container-info-pdf:last-child {
  border-bottom: none;
}

.container-info-pdf img {
  width: 20px;
  height: 20px;
  margin-left: 15px;
}

.container-info-pdf a {
  color: black;
  font-size: 17px;
  margin-left: 5px;
  text-decoration: none;
}

.container-info-pdf a:hover {
  text-decoration: underline;
}

.contenedor__imagen {
  position: relative;
  width: 100%;
  height: 290px; /* Ajusta la altura según tus necesidades */
  overflow: hidden;
  align-items: center;
}

.image-IA{
  margin-right: 100px;
}

.links-inicio{
  margin-top: 20px;
  font-size: 20px;
  
}

.link-inicio{
  margin-top: 20px;
  font-size: 20px;
  text-decoration: underline;
  color: #436EC0;
  cursor: pointer;
  display: block;
}

section-inicio {
  height: 55vh;
  display: flex;
  padding: 0 4em;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
}
.container-inicio {
  perspective: 1000px;
  height: 28vh;
  width: 100%;
  cursor: pointer;
}
.card-inicio {
  transform-style: preserve-3d;
  height: 100%;
  width: 100%;
  transition: 0.5s ease;
}
.front-inicio-sistemas,
.front-inicio-obso,
.front-inicio-rrhh,
.back-inicio{
  height: 100%;
  width: 100%;
  transform-style: preserve-3d;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 0.4em;
  position: absolute;
  top: 0;
  bottom: 0;
  backface-visibility: hidden;
}


.front-inicio-sistemas {
  background: linear-gradient(to right, #97d700, );
  background-image: url('../images/sistemas-inicio.png'); /* Reemplaza 'ruta_de_tu_imagen.jpg' con la ruta de tu imagen */
  background-size: cover;
  background-position: center;
}

.front-inicio-obso {
  background: linear-gradient(to right, #97d700, #436EC0);
  background-image: url('../images/obso-inicio.png'); /* Reemplaza 'ruta_de_tu_imagen.jpg' con la ruta de tu imagen */
  background-size: cover;
  background-position: center;
}

.front-inicio-rrhh {
  background: linear-gradient(to right, #97d700, #436EC0);
  background-image: url('../images/rrhh-inicio.png'); /* Reemplaza 'ruta_de_tu_imagen.jpg' con la ruta de tu imagen */
  background-size: cover;
  background-position: center;
}

.titulo-inicio{
  color: #000f25;
}

.content-inicio {
  transform: translateZ(60px);
}
.content-inicio h3 {
  font-size: 25px;
  margin-top: 1em;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.content-inicio p {
  font-size: 14px;
  line-height: 2em;
  letter-spacing: 0.02em;
  padding: 0 3em;
  font-size: 30px;
}
.back-inicio {
  background: #97d700 ;
  transform: rotateX(180deg);
}
.container-inicio:hover .card-inicio {
  transform: rotateX(180deg);
}

.heading-inicio{
  text-transform: uppercase;
  font-size:  3.5rem;
  letter-spacing: 3px;
  margin-right: -3px;
  text-align: center;
  color: black;
  position: relative;
}

.heading-inicio::after{
  content: "";
  width: 10rem;
  height: .8rem;
  background-color: #000f25;
  position: absolute;
  bottom: -2rem;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2rem;
}

.swal2-popup {
  font-size: 19px; /* Cambia el tamaño del texto según sea necesario */
}

.btn-intructivo{
  padding: 1rem 2.5rem;
  background-color: #436EC0;
  border-radius: 2rem;
  margin: 1rem 0;
  text-transform: uppercase;
  color: #f1f6f9;
  font-size: 1.4rem;
}

/* Estilo para el contenedor div */
.imagen-container {
  display: flex;
  justify-content: center;
  align-items: center; 
}

/* Estilo para la imagen */
.imagen-container img {
  width: 100%; /* La imagen ocupa el 100% del ancho del contenedor */
  height: auto; /* Altura automática para mantener la proporción original */
}

/* Estilo para el enlace */
.imagen-container a {
  text-decoration: none; /* Elimina la subrayado predeterminada del enlace */
  color: inherit; /* Hereda el color del texto del contenedor */
}

/* Estilos para el submenú del perfil */
.profile-menu ul {
  display: none;
  position: absolute;
  background-color: #fff; /* Fondo del submenú */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1); /* Sombra */
  z-index: 1;
}

/* Estilos para los elementos del submenú */
.profile-menu ul li {
  padding: 10px;
}

/* Estilos para la imagen de perfil */
.profile-image {
  width: 40px; /* Ajusta el tamaño según tus necesidades */
  height: 40px;
  border-radius: 50%; /* Para hacer la imagen redonda */
  margin-right: 10px; /* Espacio entre la imagen y el texto */
}

/* Mostrar el submenú al hacer hover en el elemento del perfil */
.profile-menu:hover ul {
  display: block;
}


.btn-eliminar {
  padding: 1rem 2.5rem;
  background-color: #862633;
  border-radius: 2rem;
  margin: 1rem 0;
  text-transform: uppercase;
  color: #f1f6f9;
  font-size: 1.4rem;
}



.btn-wsp {
  position: fixed;
  width: 60px;
  height: 60px;
  line-height: 63px;
  bottom: 100px;
  right: 15px;
  background: #436EC0;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 35px;
  box-shadow: 0px 1px 10px rgba(0,0,0,0.3);
  z-index: 100;
  transition: all 300ms ease;
}

.btn-wsp:hover {
  background: #862633;
  color: #FFF;
}



/* Aumentar el tamaño del buscador de la tabla */
.dataTables_filter label {
  font-size: 20px;
}

.dataTables_filter input {
  height: 40px;
  font-size: 20px;
  margin-right: 20px;
  border: 2px solid #436EC0;
  transition: box-shadow 0.3s;
}

.dataTables_filter input:focus {
  box-shadow: 0 0 10px #436EC0;
}


/* Otros ajustes de estilo si es necesario */
.dataTables_wrapper .dataTables_length select {
  font-size: 20px;
  height: 40px;
}

.dataTables_wrapper .dataTables_info {
  font-size: 20px;
}


#anterior, #siguiente {
  font-size: 20px;
  background-color: #58aa4d;
  border: 1px solid #58aa4d;
  color: white;
}


/* Estilo para las filas impares */
#miTabla tbody tr:nth-child(odd) {
  background-color: #ffffff;
  align-items: center;
  text-align: center;
}

/* Estilo para las filas pares */
#miTabla tbody tr:nth-child(even) {
  background-color: #ffffff;
  align-items: center;
  text-align: center;
}

/* Estilo para los encabezados de la tabla */
#miTabla th {
  background-color: #436EC0;
  color: white;
  font-weight: bold;
  align-items: center;
  justify-content: space-between;
  padding: 0 50px;
  font-size: 20px;
  font-weight: 400;
  background-color: #436EC0;
  color: #fff;
  padding: 20px;
  text-align: center;
}

/* Estilo para las celdas de la tabla */
#miTabla td {
  padding: 8px;
}

/* Aumentar el tamaño del contenedor principal */
.swal2-popup {
  font-size: 20px;
}

/* Aumentar el tamaño del título */
.swal2-title {
  font-size: 24px;
}

/* Aumentar el tamaño del texto */
.swal2-content {
  font-size: 20px;
}

.swal2-confirm {
  background-color: #436EC0;
  border-color: #436EC0;
}


.video-card {
  width: 100%;
  max-width: 410px; /* Ajusta el tamaño máximo según tus necesidades */
  margin: auto;
  border-radius: 5px; /* Añade bordes redondeados si lo deseas */
  overflow: hidden; /* Para que los bordes redondeados se apliquen también al contenido interno */
}

.video-card .card-body {
  padding: 20px; /* Aumenta el padding para más espacio interno */
}

.video-card video {
  width: 100%; /* Asegura que el video ocupe el ancho completo de la tarjeta */
  height: auto; /* Mantiene la relación de aspecto del video */
}

.video-card .card-title {
  font-size: 25px; /* Ajusta el tamaño del título */
}

.video-card .card-text {
  font-size: 20px; /* Ajusta el tamaño del texto */
}






@media only screen and (min-width:320px) and (max-width:768px) {
  .btn-wsp {
      width: 63px;
      height: 63px;
      line-height: 66px;
  }
}


@media screen and (min-width: 992px) {
  section {
    padding: 0 1em;
  }
  .container-inicio {
    flex-basis: 0 0 33.33%;
    max-width: 33.33%;
    padding: 0 1.5em;
  }
}


@media screen and (max-width: 720px) {
  img {
    max-width: 100%;
    object-fit: contain;
    height: 4rem;
  }

  #products {
    grid-template-columns: auto auto;
    grid-column-gap: 1em;
    
  }
}





/* media queries */

@media screen and (max-width: 1000px) {
  body {
    align-items: flex-start;
    justify-content: flex-start;
  }
  .container {
    min-height: 10vh;
    flex-direction: column;
    border-radius: 0;
  }
  .container .left {
    width: 100%;
    height: 100%;
    padding: 20px 0;
  }
  .container .right {
    width: 100%;
    height: 100%;
    padding: 20px 0;
  }
  .calendar::before,
  .calendar::after {
    top: 100%;
    left: 50%;
    width: 97%;
    height: 12px;
    border-radius: 0 0 5px 5px;
    transform: translateX(-50%);
  }
  .calendar::before {
    width: 94%;
    top: calc(100% + 12px);
  }
  .events {
    padding-bottom: 340px;
  }
  .add-event-wrapper {
    bottom: 100px;
  }
}
@media screen and (max-width: 500px) {
  .calendar .month {
    height: 75px;
  }
  .calendar .weekdays {
    height: 50px;
  }
  .calendar .days .day {
    height: 40px;
    font-size: 0.8rem;
  }
  .calendar .days .day.active,
  .calendar .days .day.today {
    font-size: 1rem;
  }
  .right .today-date {
    padding: 20px;
  }
}


@media screen and (max-width:850px){
  main{
      margin-top: 50px;
  }
  
  .caja__trasera{
      max-width: 350px;
      height: 300px;
      flex-direction: column;
      margin: auto;
  }
  
  .caja__trasera div{
      margin: 0px;
      position: absolute;
  }
  
  /*FORMULARIO*/
  
  .contenedor__login-register{
      top: -10px;
      left: -5px;
      margin: auto;
  }
  
  .contenedor__login-register form{
      position: relative;
  }
  
  /*FOOTER*/
  
  .pie-pagina .grupo-1{
      width: 90%;
      grid-template-columns: repeat(1, 1fr);
      grid-gap:50px;
      padding: 45px 0px;
  }
  
}

@media screen and (min-width:700px){
  .card-wrapper{
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
  }
  
  .card{
      margin: 2rem;
      transition: transform .5s;
  }
  
  @keyframes fadeIn{
      from{
          opacity: 0;
      }
      to{
          opacity: 1;
      }
  }
  .card:nth-child(1){
      animation:fadeIn .5s .5s backwards;
  }
  
  .card:nth-child(2){
      animation:fadeIn .5s .1s backwards;
  }
  
  .card:nth-child(3){
      animation:fadeIn .5s 1.5s backwards;
  }
  
  .card:nth-child(4){
      animation:fadeIn .5s 2s backwards;
  }
  
  .card:hover{
      transform: scale(1.05);
  }
  
}