/* Button styles copied from upload_case.css for consistency */
.btn {
  min-width: 120px;
  padding: 0.5rem 1.25rem;
  border-radius: 0.375rem;
  font-weight: 500;
  font-size: 1rem;
  transition: background 0.2s;
}
.btn-primary {
  background: #2563eb;
  color: #fff;
  border: none;
}
.btn-primary:hover {
  background: #1d4ed8;
}
.btn-secondary {
  background: #e2e8f0;
  color: #222;
  border: none;
}
.btn-secondary:hover {
  background: #cbd5e1;
}
/* Navbar styles from Live Map */
header {
    display: flex;
    align-items: center;
    padding: 0.9rem 2rem !important;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.06);
    min-height: 70px !important;
}

.logo {
    height: 44px !important;
}

nav {
    margin-left: 2rem !important;
    display: flex !important;
    gap: 1.2rem !important;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 1.2rem;
    border-radius: 6px;
    transition: background 0.2s;
}

nav a.active,
nav a:hover {
    color: var(--color-accent, #043E52);
    background: #f0f7f7;
}
