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;
}


.choices, .choices__inner {
    width: 100% !important;
    min-width: 200px !important;
    box-sizing: border-box;
}



@media (max-width: 768px) {

    .dataTable thead {
        display: none;
    }

    .dataTable tbody,
    .dataTable tr,
    .dataTable td {
        display: block;
        width: 100%;
    }

    .dataTable tr {
        @apply bg-white rounded-xl shadow-md p-4 mb-4 border border-gray-200;
    }

    .dataTable td {
        @apply text-right py-2 relative border-none;
        padding-left: 50%;
    }

        .dataTable td::before {
            content: attr(data-label);
            position: absolute;
            left: 1rem;
            width: 45%;
            @apply font-semibold text-gray-600 text-left;
        }
}


