/*html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}*/

/* ── Navbar: body offset for fixed-top ─────────────────────────── */
body {
    padding-top: 70px;
}

/* ── Page content: breathing room below navbar ──────────────────── */
body > .container {
    padding-top: 1.5rem;
}

/* ── Navbar: base (black) ────────────────────────────────── */
.navbar-dds {
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: background-color 0.35s ease, box-shadow 0.35s ease;
}

.navbar-dds .nav-link,
.navbar-dds .navbar-brand {
    color: #ffffff !important;
}

.navbar-dds .nav-link:hover,
.navbar-dds .nav-link:focus {
    color: rgba(255, 255, 255, 0.75) !important;
    outline-offset: 2px;
}

/* Active link indicator */
.navbar-dds .nav-link.active {
    color: #ffffff !important;
    border-bottom: 2px solid #ffffff;
}

/* ── Navbar: scrolled state (semi-opaque black) ─────────────────── */
.navbar-dds.navbar-scrolled {
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

/* ── Navbar: mobile collapsed menu background ───────────────────── */
@media (max-width: 767.98px) {
    .navbar-dds .navbar-collapse {
        background-color: rgba(0, 0, 0, 0.90);
        border-radius: 0.5rem;
        padding: 0.75rem 1rem;
        margin-top: 0.5rem;
    }
}

.expiring-license{
    color: palevioletred;
    font-weight: bold;
}

.expired-license {
    color: darkred;
    font-weight: bold;
}

/* ── Clickable table rows ──────────────────────────────────────────── */
.clickable-row {
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.clickable-row:hover {
    background-color: rgba(0, 0, 0, 0.04);
}

.clickable-row:active {
    background-color: rgba(0, 0, 0, 0.08);
}

