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 .navbar .nav-link {
  border-radius: .5rem;
  padding: .5rem .75rem;
  margin: .1rem .15rem;
  transition: background-color 150ms ease, box-shadow 150ms ease, color 150ms ease;
}

header .navbar .nav-link:hover,
header .navbar .nav-link:focus {
  background-color: rgba(255,255,255,.18);
  box-shadow: 0 0 0 1px rgba(255,255,255,.25) inset;
}

header .navbar .nav-link.active {
  background-color: rgba(255,255,255,.28);
  box-shadow: 0 0 0 1px rgba(255,255,255,.35) inset;
}

.page-title {
  font-weight: 600;
}

.card-page {
  border: 0;
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.08);
}

.btn i.bi {
  margin-right: .35rem;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

/* ============================= */
/* TABLOLAR */
/* ============================= */

.table {
    font-size: 1rem;
    margin-bottom: 0;
}

    .table th,
    .table td {
        padding: 0.25rem 0.4rem;
        vertical-align: middle;
    }

    .table thead th {
        font-weight: 600;
    }

    .table tfoot td {
        font-weight: bold;
    }