#externalLinkModal {
	position: fixed;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
}

#externalLinkModal .external-modal-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
}

#externalLinkModal .external-modal-box {
	position: relative;
	z-index: 2;
	pointer-events: auto;
	background: #fff;
	padding: 40px;
	border-radius: 5px;
	max-width: 700px;
	width: 90%;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
	text-align: left;
}

#externalLinkModal h3 {
	margin: 0 0 8px;
	font-size: 1.05rem;
	color: #000000;
	font-family: Arial, sans-serif;
	font-size: 28px;
	font-weight: 1000;
	margin-bottom: 20px;
	margin-top: 20px;
}

#externalLinkModal p {
	margin: 0 0 14px;
	color: #333;
}

#externalLinkModal a {
    color: #0d6efd;
}

#externalLinkModal a:hover {
    color: #1749b1;
}

.external-modal-actions {
	display: flex;
	gap: 10px;
	margin-top: 30px;
}

.external-go,
.external-close {
	padding: 8px 12px;
	border-radius: 4px;
	border: 0;
	cursor: pointer;
}

.external-go {
	background: #000000;
	color: #ffffff;
	border-radius: 50px;
	padding: 8px 20px 8px 20px;
    font-weight: 600;
}

.external-close {
	background: #000000;
	color: #ffffff;
	border-radius: 50px;
	padding: 8px 20px 8px 20px;
    font-weight: 600;
}

#externalLinkModal[aria-hidden="true"] {
	display: none;
}
.nav-logo {
  display: block;
  margin-bottom: 30px;
  padding: 0;
}

/* Force logo images to be responsive but visible */
.nav-logo img {
  display: inline-block;
  max-width: 260px;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .nav-logo img {
    max-width: 200px; /* slightly smaller for mobile */
  }
  #externalLinkModal h3 {
	font-size: 24px;
}
}