@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: Poppins;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 100vh;
    display: flex;
    justify-content: center;
}

/* ACA VA EL CSS DEL LOGIN 
=============================*/
.login{
    display: flex;
    justify-content: center;
    width: 250px;
    height: 500px;
}

form{
    background-color: rgba(240, 248, 255, 0.76);
    text-align: center;
    margin-top: 200px;
    border-radius: 10px;
}

 h3{
    color: #226824;
    margin-top: 20px;
    font-size: 1.5rem;
 }

.campos{
    margin: 50px;
}

.campos input{
    width: 240px;
    margin: 5px;
    height: 30px;
    padding: 10px;
}

.rol-resgistrar{
    width: 100%;
    height: 45px;
    margin-bottom: 15px;
}

.campos ::placeholder{
  color: #226824;
}

button{
    width: 100px;
    height: 30px;
    border-radius: 10px;
    color: #226824;
    cursor: pointer;
}

button:hover{
    background-color: #226824;
    color: #fff;
}

/* ACA VA EL CSS DE LA DASHBOARD
=============================*/

a{
    text-decoration: none;
}

ul{
    list-style: none;
}

.header{
    background-color:  #226824;
    box-shadow: 1px 1px 5px 0px var(--grey);
    position: absolute;
    top: 0;
    width: 100%;
    height: 80px;
}

.logo{
    display: inline-block;
    color: #fff;
    font-size: 30px;
    margin:20px;
    color: #fff;
}

.nav{
    width: 100%;
    height: 100%;
    position: fixed;
    background-color: #226824;
    overflow: hidden;
    max-height: 0;
    transition: max-height .5s ease-out;
    z-index: 1;
}


.menu a{
    display: block;
    padding: 30px;
    color: #fff;
}

.menu a:hover{
    background-color: var(--green-light);
}

.hamb{
    cursor: pointer;
    float: right;
    padding: 40px 20px;
}


.hamb-line{
    background: #fff;
    display: block;
    height: 2px;
    position: relative;
    width: 24px;
    
}

.hamb-line::before,
.hamb-line::after{
    background: #fff;
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all .2s ease-out;
    width: 100%;
}

.hamb-line::before{
    top: 5px;
}

.hamb-line::after{
    top: -5px;
}

.side-menu {
    display: none;
}

.side-menu:checked ~ nav{
    max-height: 100%;
}

.side-menu:checked ~ .hamb .hamb-line {
    background: transparent;
}

.side-menu:checked ~ .hamb .hamb-line::before{
    transform: rotate(-45deg);
    top:0;
}

.side-menu:checked ~ .hamb .hamb-line::after {
    transform: rotate(45deg);
    top:0;
}

@media (min-width: 768px)
{
    .nav
    {
        max-height: none;
        top: 0;
        position: relative;
        float: right;
        width: fit-content;
        background-color: transparent;
    }

    .menu li
    {
        float: left;
    }

    .menu a:hover
    {
        background-color: transparent;
        color: var(--green-light)
    }

    .hamb
    {
        display: none;
    }
}

/* LECTOR QR */
#lectorqr{
    display: flex;
    justify-content: center;
    align-items: center;
}

 /* FORMULARIOS */ 
.form-register  {
    width: 400px;
    background: #226824;
    padding: 30px;
    margin: auto;
    margin-top: 100px;
    border-radius: 4px;
    font-family: 'calibri';
    color: white;
    box-shadow: 7px 13px 37px #000;
  }

  .form-register form{
    margin-top: 50px;
    background: none;

  }
  
  .form-register h4 {
    font-size: 22px;
    margin-bottom: 20px;
  }
  
  .controls {
    width: 100%;
    background: #24303c;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 16px;
    border: 1px solid #226824;
    font-family: 'calibri';
    font-size: 18px;
    color: white;
  }
    
  .form-register a {
    color: white;
    text-decoration: none;
  }
  
  .form-register a:hover {
    color: white;
    text-decoration: underline;
  }
  
  .form-register .botons {
    width: 100%;
    background: #fff;
    border: none;
    padding: 12px;
    color: #000;
    margin: 16px 0;
    font-size: 16px;
    cursor: pointer;

    
  }
  .form-register .botons:hover{
    background: #e6ff04;

    }

    /* ACA VA EL CSS DE LA TABLA DE INGRESOS
=============================*/

.tabla-ingreso{
    margin-top: 120px;
    text-align: center;    
  }

  .tabla-ingreso{
    overflow-x: auto;
  }

.tabla-ingreso-1{
    margin-top: 50px;
    text-align: center;    
  }

  .tabla-ingreso-1{
    overflow-x: auto;
  }

      /* ESTILOS SCROLLBAR PARA LA TABLA EN DISPOSITIVOS MOBILES
=============================*/

  ::-webkit-scrollbar{
    width: 10px;
  }

  ::-webkit-scrollbar-track{
    box-shadow: inset 0 0 5px grey;
    border-radius: 10px;
  }

::-webkit-scrollbar-thumb{
    background: rgb(100, 100, 100);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover{
    background: #5c5c5c;
}

    .content-table {
        border-collapse: collapse;
        margin: 25px 0;
        font-size: 0.9em;
        min-width: 1000px;
        border-radius: 5px 5px 0 0;
        overflow: hidden;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
      }
      
      .content-table thead tr {
        background-color: #009879;
        color: #ffffff;
        text-align: left;
        font-weight: bold;
      }
      
      .content-table th,
      .content-table td {
        padding: 12px 15px;
      }
      
      .content-table tbody tr {
        border-bottom: 1px solid #dddddd;
      }
      
      .content-table tbody tr:nth-of-type(even) {
        background-color: #f3f3f3;
      }

      .horaentrada{
        width: 150px;
        height: 50px;
      }



      

      
