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: 0;
}

.table-edge-align {
    table-layout: fixed;
}

.table-edge-align th:first-child,
.table-edge-align td:first-child {
    text-align: left;
    width: 70%;
}

.table-edge-align th:last-child,
.table-edge-align td:last-child {
    text-align: right;
    width: 30%;
}

.table-container {
    max-height: 500px;
    overflow-y: auto;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
}

.table-container .table {
    margin-bottom: 0;
}

.table-container .table thead th {
    position: sticky;
    top: 0;
    background-color: #f8f9fa;
    z-index: 10;
    border-top: none;
}

.table-search-container {
    background: #f8f9fa;
    padding: 1rem;
    border-bottom: 1px solid #dee2e6;
}

.table-pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #f8f9fa;
    border-top: 1px solid #dee2e6;
}

.pagination .page-item.active .page-link {
    background-color: #28a745;
    border-color: #28a745;
    color: white;
}

.pagination .page-link:hover {
    background-color: #218838;
    border-color: #1e7e34;
    color: white;
}

.pagination-info {
    font-size: 0.875rem;
    color: #6c757d;
}