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;
    background-color: #f8f9fa;
}

.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;
}
.card {
    border-radius: 14px;
    transition: all 0.2s ease;
}

    .card .fs-2 {
        letter-spacing: 1px;
    }

.badge {
    font-size: 0.85rem;
    padding: 6px 10px;
    border-radius: 10px;
}
.table th,
.table td {
    vertical-align: middle;
}
.table-wrap {
    overflow-x: auto;
}

.table-modern th,
.table-modern td {
    vertical-align: middle;
    white-space: nowrap;
}

.table-modern .text-truncate-cell {
    max-width: 220px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.table-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    align-items: end;
    justify-content: space-between;
}

    .table-toolbar .filters {
        display: flex;
        flex-wrap: wrap;
        gap: .75rem;
        align-items: end;
    }

.table-summary-badge {
    font-size: .85rem;
    padding: .4rem .6rem;
    border-radius: .5rem;
}

.sticky-action-col {
    position: sticky;
    right: 0;
    background: #fff;
}

@media (max-width: 768px) {
    .table-modern {
        font-size: 13px;
    }

        .table-modern .text-truncate-cell {
            max-width: 140px;
        }
}
.table td, .table th {
    vertical-align: middle;
}

.table .small {
    line-height: 1.2;
}
.table .badge {
    font-weight: 600;
}

.table .btn-sm {
    padding: .25rem .5rem;
    font-size: .8rem;
}