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;
}

.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;
}
/* =========================================================
   CENTRO DE SEGURIDAD - BOTONES Y TABLAS
   ========================================================= */

.table th {
    white-space: nowrap;
    font-weight: 700;
    color: #17233c;
}

.table td {
    vertical-align: middle;
}

.table .dropdown {
    position: static;
}

.table .dropdown-menu {
    min-width: 220px;
    border: 1px solid #dfe7f1;
    border-radius: 10px;
    padding: 6px;
}

.table .dropdown-item {
    border-radius: 7px;
    padding: 9px 12px;
    font-size: 14px;
}

    .table .dropdown-item:hover {
        background-color: #f1f6fd;
    }

    .table .dropdown-item.text-danger:hover {
        color: #b02a37 !important;
        background-color: #fff1f2;
    }

    .table .dropdown-item.text-success:hover {
        color: #146c43 !important;
        background-color: #eefaf3;
    }

.table-responsive {
    min-height: 160px;
}

.btn.dropdown-toggle::after {
    margin-left: 8px;
}

.badge {
    font-weight: 600;
}

@media (max-width: 767.98px) {
    .table {
        min-width: 850px;
    }

    .container-fluid {
        padding-left: 0;
        padding-right: 0;
    }
}