html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

header {
    background-color: rgb(46, 105, 42); /* Verde principal */
    width: 100%; /* Ocupa todo el ancho */
    padding: 10px 0; /* Espaciado vertical */
    text-align: center; /* Centra el contenido */
    box-sizing: border-box; /* Incluye el padding en el ancho total */
}

    header .logo img {
        max-width: 150px; /* Ajusta el tamaņo del logo */
        height: auto;
    }

footer {
    background-color: rgb(46, 105, 42); /* mismo verde que el header */
    color: white;
    text-align: center;
    padding: 15px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.2);
    z-index: 10;
}

.footer-content a.logout-button {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
}

    .footer-content a.logout-button:hover {
        text-decoration: underline;
    }