body, html {
	height: 100%;
    display: flex;
    flex-direction: column;
	font-size: 16px;
	font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
}

h1 {
	padding-bottom: 2rem;
    font-size: clamp(1.5rem, 2vw + 1rem, 2.5rem); /* Tamaño de fuente adaptativo para h1 */
}

h2 {
    font-size: clamp(1.25rem, 1.5vw + 0.75rem, 2rem); /* Tamaño de fuente adaptativo para h2 */
}

h3 {
    font-size: clamp(1rem, 1vw + 0.5rem, 1.5rem); /* Tamaño de fuente adaptativo para h3 */
}

p,span,tr,td {
    font-size: clamp(0.875rem, 0.8vw + 0.25rem, 1rem); /* Tamaño de fuente adaptativo para párrafos */
}

a {
	font-size: clamp(0.875rem, 0.8vw + 0.25rem, 1rem);
	transition: all .4s ease;
	text-decoration: none;
}

button {
	border-radius: 4px;
	font-weight: 600;
    border: none;
}

.btn-purple {
	background-color: #432874;
    border-color: #432874;
	color: #fff;
}	

.btn-purple:hover,
.btn-purple:focus,
.btn-purple:active {
    background-color: #351f5b; 
    border-color: #351f5b;
    color: #fff; 
}


header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
	background: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);
    color: white;
    position: sticky;
    top: 0;
	height: 70px;
    width: 100%;
    z-index: 15;
}

.menu-toggle {
	margin: 0 1vw;
    font-size: 24px;
    cursor: pointer;
    z-index: 20;
}

.logo {
    flex-grow: 1;
    text-align: center;
}

.logo img {
	max-height: 40px;
}

.logout {
	margin: 0 1vw;
    z-index: 20; 
}

.logout a {
    color: tomato;
	transition: left 0.3s ease;
}
.logout a:hover {
    color: black;
}

.logout .userlogged {
    padding-right: 1vw;
}

.inline-input {
  display: inline-block;
  width: auto; 
  vertical-align: middle;
}

.flag-icon {
	cursor: pointer;
}

 .modal-full-height {
	max-height: 90vh; 
}

.modal-full-height .modal-body {
	height: 80vh; 
}

#pdfViewer {
  width: 100%;
  height: 100%;
  border: none;
}

#qrImage {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  width: auto;
  display: block;
  margin: 0 auto;
}

footer {
	background: linear-gradient(135deg, rgb(40, 116, 252) 0%, rgb(38, 109, 244) 100%);
    color: white;
    text-align: center;
    padding: 10px;
    bottom: 0;
    width: 100%;
}

@media (max-width: 576px) {
	.logo img {
        content: url('/static/images/wifi_logo.png'); 
		height: 40px;
    }
	
}

@media (min-width: 577px) {
	.my_flag{
		width: 38px;
		height: 29px;
	}

	footer{
		position: sticky;
		bottom: 0;
	}
}