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;
}

#reason {
    height: 50px;
    width:100%;
}

.table-buttons button, .table-buttons a {
    font-size: 0.875rem;
    padding: 0.25rem 0.5rem;
}

.custom-table {
    width: 100%;
    border-collapse: collapse;
}

.custom-table tbody tr:nth-child(even) {
    background-color: #f8f9fa; /* Light striping effect */
}

.custom-table tr{
    border: 1px solid #dee2e6;
}

.custom-table td{
    padding: 8px;
}

.custom-table tbody tr:hover {
    background-color: #e9ecef; /* Hover effect */
}

.custom-table thead {
    background-color: #c0c0c0; 
    color: black;
    text-align: center;
}

.sortable-header a {
    color: inherit; /* Inherit text color from parent */
    text-decoration: none; /* Remove underline */
}

.sortable-header a:hover {
    color: inherit; /* Keep color same when hovered */
    text-decoration: none; /* Prevent underline on hover */
}

.status-amber {
    background-color: #FFBF00; /* Amber */
    color: black;
}

.status-blue {
    background-color: #007BFF; /* Blue */
    color: white;
}

.status-green {
    background-color: #28A745; /* Green */
    color: white;
}

.status-grey {
    background-color: #6C757D; /* Grey */
    color: white;
}

.status-red {
    background-color: #DC3545; /* Red */
    color: white;
}

td {
    padding: 8px;
    text-align: center;
}

.form-filter {
    height: 30px; /* Match Bootstrap default input height */
}

.no-underline {
    text-decoration: none;
}