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;
}

.responsive-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: auto; /* Ajusta el ancho de las columnas automáticamente */
    font-size:small;
}

    .responsive-table th,
    .responsive-table td {
        padding: 8px;
        border: 1px solid #ddd;
        text-align: left;
    }

/* Ajustes responsivos */
@media (max-width: 300px) {
    .responsive-table thead {
        display: none; /* Ocultar encabezado en pantallas pequeñas */
    }

    .responsive-table tr {
        display: block;
        margin-bottom: 5px;
    }

    .responsive-table td {
        display: block;
        text-align: right;
        position: relative;
        padding-left: 25%;

    }

        .responsive-table td::before {
            content: attr(data-label);
            position: absolute;
            left: 0;
            width: 25%;
            padding-left: 10px;
            font-weight: bold;
            text-align: left;
        }
}