html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

/* Table sorting styles */
.sortable {
    cursor: pointer !important;
    user-select: none;
    position: relative;
}

.sortable:hover {
    background-color: #f8f9fa;
}

.sort-indicator {
    margin-left: 5px;
    color: #007bff;
    font-weight: bold;
    font-size: 12px;
}

.sortable:hover::after {
    content: "⇅";
    position: absolute;
    right: 8px;
    color: #6c757d;
    font-size: 10px;
}

.sortable:has(.sort-indicator):hover::after {
    display: none;
}

/* Utility classes for common inline styles */
.hidden-form {
    display: none;
}

.flex-gap-5rem {
    gap: 5rem;
}