﻿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;
}

.tables-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.table-box {
    width: 20%; /* mỗi bàn chiếm 1/5 hàng */
    box-sizing: border-box;
    padding: 8px;
    min-width: 180px; /* đảm bảo không quá nhỏ ở màn nhỏ */
}

#loader {
    display: none; /* Ẩn mặc định */
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.6); /* mờ nền */
    z-index: 9999; /* nằm trên cùng */
    display: flex;
    align-items: center;
    justify-content: center;
}