﻿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;
}

/* ==== Style bảng Farmer ==== */
.table thead th {
    background-color: #f1f3f5; /* Màu xám nhạt */
    color: #212529; /* Màu chữ */
    font-weight: 600; /* Đậm hơn */
    text-align: center; /* Căn giữa tiêu đề */
    vertical-align: middle; /* Giữa theo chiều dọc */
    padding: 12px;
    border-bottom: 2px solid #dee2e6;
}

.table thead th:first-child {
    border-top-left-radius: 8px; /* Bo góc trái */
}

.table thead th:last-child {
    border-top-right-radius: 8px; /* Bo góc phải */
}

/* Căn giữa cột hành động */
.table td:last-child {
    text-align: center;
}

/* Tăng khoảng cách icon hành động */
.table .btn {
    margin: 0 2px;
}

.table > :not(:last-child) > :last-child > * {
    border-bottom-color: currentColor;
    border: 1px solid;
    border-color: white;
}

td {
    border-bottom-color: currentColor;
    border: 1px solid;
    border-color: white;
}