﻿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;
}

.btn-extra-sm {
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    line-height: 1.5;
    border-radius: 0.2rem;
}

/* Add a pointer cursor on hover */
.sortable:hover {
    cursor: pointer;
}

/* Add a pseudo-element for the sort icon */
.sortable::after {
    content: '⬍'; /* This is a double arrow icon */
    color: #ccc; /* Light grey color */
    font-size: 0.8em; /* Smaller font size for the icon */
    margin-left: 5px; /* Space between header text and icon */
}

/* Style for when a column is sorted ascending */
.sortable.sorted-asc::after {
    content: '▲';
    color: black;
}

/* Style for when a column is sorted descending */
.sortable.sorted-desc::after {
    content: '▼';
    color: black;
}
