
@keyframes spin{
    to {transform: rotate(360deg);}
}

body{
    background-image: url('Fondo.jpeg');
}   

td{
    color: rgb(255, 255, 255) ;
    font-weight: bold;
}

#busqueda input:focus{
    color: black;
}
.loader {
    width: 64px;
    height: 64px;
    border-radius: 50%;

    border-top: 
    8px solid rgb(9, 99, 6);
    border-left:
    8px solid rgba(9,99,6);
    border-right:
    8px solid rgba(255, 255, 255, 0);

    animation: spin 0.575s infinite linear;
}

table {
    box-shadow: 0 15px 25px #131972;
    background-color: #131972
}
#limpiar{
    margin-left: auto;
  display:inline-block;
}
.qrcode{
	display: flex;
	justify-content: center;
	padding: 40px 0;
}

@media print { 
    body * {
         visibility: hidden; 
    } 
    #qrcode, #qrcode * { 
        visibility: visible; 
    } 
    #qrcode { 
        position: fixed; 
        left: 50%; 
        top: 50%; 
        transform: translate(-50%, -50%);
    } 
}