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;
}

footer {
    position: relative;
    bottom: 0;
    width: 100%;
    z-index: 1;
}

main {
    position: relative;
    z-index: 2;
}

.link-detalle {
    margin-left: 8px; /* separa el texto del ID */
    color: #007bff; /* color azul tipo enlace */
    text-decoration: none; /* quita el subrayado */
    font-weight: 5; /* letra un poco más gruesa */
    font-family: 'Comic Sans MS', sans-serif;
    font-size: 10px;
}

link-detalle:hover {
    text-decoration: underline; /* subraya al pasar el mouse */
    color: #0056b3; /* azul más oscuro */
}