/*
    HOJA DE ESTILOS GENERALES
    
*/

@font-face{
    font-family: 'Poppins', sans-serif;
    src: url("fonts/Poppins-ExtraLight.ttf");
    src: url("fonts/Poppins-Light.ttf");
    src: url("fonts/Poppins-SemiBold.ttf");
}


:root{
   
    --color1:#37801C;
    --color2:#1C8033;
    --color3:#1C8065;  
    --color4:#134a2a;
}

*{
    margin: 0 ;
    padding: 0 ;
    outline: 0;
    appearance: 0;
    border: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
}
a:hover{
    text-decoration: none;
}

.bd{
    /* outline: 1px solid #ff0000; */
}

body{
    background-color: #37801c1d;
    font-family: "Poppins", sans-serif;
}


/*BOTON*/
.btn{
    background-color: var(--color1);
    font-weight: 600;
    font-family: inherit;
}
.btns{
    display: flex;
    gap:20px;
}
.btn-text{
    margin-left: 5px;
}



/*=====================
CENTRAR CON FLEX INDEX, IMAGEN DERECHA*/
.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}
.flex-center img{
    width: 70%;
}





/* ==========================
NO HAY ORDENES REGISTRADAS
=============================*/

.nohayregistros{
    opacity: 0.4;
    padding: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap:10px;
    text-align: center;
    margin: 50px auto;
}

.nohayregistros img{
    width: 300px;
    opacity: 0.3;
}
.nohayregistros p{
    font-size: 0.9em;
}


.nohay{
    color: #ccc;
    margin: 30px 0;
    font-size: 0.9em;
}


/* ========================
ARCHIVO INDEX  Tacos Rafa - Derechos reservados © 2026*/
.login-container .signup-link {
    text-align: center;
    margin-top: 20px;
    color:#505050;
    font-size: 0.9em;
}

/* ========================
ARCHIVO INDEX MENU DE NAVEGACION ENTRE AREAS */
.link-admin{
    display: flex;
    justify-content: center;
    align-items: center;
    gap:10px;
    margin-top: 5px;
}
.link-admin a{
    color: var(--color1);
    font-size: 0.9em;
}






/* ==========================
SCROLL UP 
=============================*/
#scroll-up{
    text-decoration: none;
  }
  .scrollup{
    position: fixed;
    right: 1rem;
    bottom: -50%;
    background-color: var(--color1);
    box-shadow: 0 4px 12px shla(19, 24%, .1);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    /* padding: .10rem .35rem; */
    border-radius:50%;
    font-size: 1.1rem;
    color:white;
    z-index: 999;
    transition: bottom .3s, transform .3s, background .4s;
    
  }
  
  .scrollup:hover{
    transform: translateY(-.25rem);
    color: white;
  }
  
  
  .show-scroll{
    bottom: 2.5rem;
  }
  



  .instrucciones_archivos_permitidos{
    font-size: 0.7em;
    color: #ccc;
}



/* ============================
MENSAJE DE ERROR EN FORMULARIOS
================================ */
.errormensage{
    color: red;
    font-size: 0.8em;
}


/* ============================
MENSAJE DE DISPOSITIVOS MOVILES, 
VERSION NO DISPONIBLE PARA DISPOSITIVOS MOVILES
================================ */
.mensajeDispositivos{
    display: none;
    top:0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: fixed;
    background-color: white;
    z-index: 99999;
}

.mensajeDispositivos img{
    width: 200px;
    margin-bottom: 10px;
}
.mensajeDispositivos p{
    color: gray;
}
.mensajeDispositivos p i{
    position: relative;
    top:1px;
}


  /* FOR MEDIUM DEVICES */
  @media screen and (max-width: 700px){

    .mensajeDispositivos{
        display: flex;
    }
    
  }