﻿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;
}

/* 
 * REUSABLE: Disabled Navigation Link Styling
 * 
 * Usage: Add "nav-link-disabled" class to any nav-link to visually indicate it's disabled
 * Pairs well with: href="#", data-bs-toggle="tooltip", title="No Access"
 * 
 * Features:
 * - Lighter grey color for disabled appearance
 * - Prevents pointer events (no clicking)
 * - Maintains navbar styling consistency
 * - Works with Bootstrap tooltips to show "No Access" message
 */
.nav-link-disabled {
    color: rgba(0, 0, 0, 0.35) !important; /* Lighter grey - few shades lighter than default */
    cursor: not-allowed !important;
    pointer-events: none !important;
    opacity: 0.6;
}

/* Override pointer-events for tooltip to work */
.nav-link-disabled[data-bs-toggle="tooltip"] {
    pointer-events: auto !important;
    cursor: not-allowed !important;
}

/* Prevent hover effects on disabled links */
.nav-link-disabled:hover,
.nav-link-disabled:focus {
    color: rgba(0, 0, 0, 0.35) !important;
    text-decoration: none;
}

