#aboutcontainer-overlay-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65); 
  display: none; 
  align-items: center;
  justify-content: center;
  z-index: 10000;
  pointer-events: all;
}

#aboutcontainer-inner {
  position: relative;
  width: 92%;
  height: 80%;
  display: flex;
  flex-direction: column;
  margin: 0 10px;
  background-color: rgba(251,251,251,1);
  /* background-color: rgba(222,222,222,1); */
  border: 2px solid #ccc;
  border-radius: 12px;
}

#aboutcontainer-content {
  flex: 1;
  overflow-y: auto;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  font-family: "Calibri";
}

.about-header {
	position: relative;
	
	width: 100%;
	height: 61px;
	
	background-color: rgba(250,250,250,1);
	border-bottom: 1px solid #ccc;
	border-top-left-radius: 12px;
	border-top-right-radius: 12px;
	
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}

.about-header-logo-cont {
	position: absolute;
	/* width: 100px; */
	left: 30px;
	height: calc(26% + 10px);
	transform: translateY(1px);
	
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}
.about-header-logo-img {
	position: relative;
	width: 100%;
	height: 100%;
}

.about-header-text-cont {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-left: 6px;
  padding-right: 6px;
  
  padding-bottom: 2px;
  
  margin-top: 1px;
  
  border-radius: 5px;
  border-bottom: 1px solid #ccc;
}

.about-header-text {
  font-family: "Verdana";
  text-align: center;
  font-weight: 600;
  font-size: 26px;
  color: black;
  font-weight: 600;
}

.about-close-container {
  position: absolute;
  height: 40px;
  width: 40px;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.about-close-div {
  background: transparent;
  border: none;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.about-navigation {
  width: 100%;
  background-color: rgba(236,236,236,1);
  border-bottom: 1px solid #ccc;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
}

.navigationAboutRow {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  /* gap: 8px; */
  
  border-bottom: 1px solid #ccc;
  border-top: 1px solid #ccc;
}
.navigationAboutRowInner {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  
  /* padding-left: 7px; */
  /* padding-right: 7px; */
}
.navigationAboutCont {
  width: 100%;
  
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  
  padding-top: 8px;
  padding-bottom: 8px;
  
  background-color: rgba(250,250,250,1);
  border-left: 1px solid #ccc;
  border-right: none;
  border-radius: none;
  cursor: pointer;
  transition: all 0.2s;
}

.navigationAboutCont.first{
  /* border-left: 1px solid #ccc; */
  border-left: none;
  border-right: none;
}

.navigationAboutCont.last{
  border-left: 1px solid #ccc;
  /* border-right: 1px solid #ccc; */
  border-right: none;
}
.navigationAboutCont:hover {
    background-color: rgba(255,255,255,1);
  /* border-color: #999; */
}

.navigationAboutCont.active {
   background-color: #007bff;
  /* border-color: #0056b3; */
}

.navigationAboutCont.active .navigationAboutText {
  color: white;
}

.navigationAboutText {
  font-family: "Calibri";
  font-size: 14px;
  font-weight: 500;
  color: #333;
  pointer-events: none;
  white-space: nowrap;
}



#amz-overlay-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  pointer-events: auto;
}

#amz-overlay {
  background: white;
  border-radius: 12px;
  padding: 20px;
  width: min(540px, 90%);
  text-align: center;
  position: relative;
  font-family: system-ui, sans-serif;
}

#amz-overlay h2 {
  margin: 0 0 10px;
  font-size: 1.25rem;
}

#amz-overlay p {
  margin: 0 0 16px;
  color: #444;
  font-size: 0.95rem;
}



.amz-btns {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 12px;
}

.amz-btn {
  padding: 10px 18px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  min-width: 150px;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.amz-btn-primary {
  background: #ff9900;
  color: #111;
}

.amz-btn-secondary {
  background: #f4f4f4;
  border: 1px solid #ddd;
  color: #111;
}

.amz-top-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.amz-close-container {
  background: transparent;
  border: none;
  position: relative;
  cursor: pointer;
  pointer-events: auto;
}

.amz-close {
  font-size: 1.5rem;
  pointer-events: none;
  background: transparent;
  border: none;
}

.amz-help-container {
  background: transparent;
  border: none;
  position: relative;
  cursor: pointer;
  pointer-events: auto;
}

.amz-help-btn {
  background: transparent;
  pointer-events: none;
  font-size: 1.2rem;
  border: none;
}

.amz-image-row {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 12px 0 0 0;
}

.amz-image-container {
  max-width: 150px;
  width: 30%;
  cursor: pointer;
  border-radius: 6px;
  border: 2px solid transparent;
  transition: border 0.2s;
}

.amz-image-container:hover {
  border-color: #ffb84d;
}

.amz-image-container.selected {
  border: 2px solid #ff9900;
}

.amz-image-container img {
  width: 100%;
  display: block;
  pointer-events: none;
  border-radius: 4px;
}

@media (prefers-reduced-motion: no-preference) {
  #amz-overlay {
    transform-origin: center;
    animation: amz-pop .15s ease-out;
  }
  @keyframes amz-pop {
    from { transform: scale(.97); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
  }
}















/* Shared styles for all pages */

.page-container {
	width: 100%;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
}

.page-inner {
	width: 100%;
	margin-bottom: 30px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
}

.page-text-cont {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	
	padding-left: 35px;
	
	margin-bottom: 10px;
}
.page-text-cont.bottom {
	margin-bottom: 0px;
}
.page-text-cont.title {
	padding-left: 25px;
	margin-bottom: 0px;
}

.page-text-cont.headerTitle {
	width: 100%;
	background-color: rgba(254,254,254,1);
	padding-left: 0px;
	margin-bottom: 0px;
}
.page-text-cont.headerSubtitle {
	padding-left: 55px;
	margin-bottom: 0px;
}

.page-text-inner{
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-start;
	
	font-style: normal;
	text-decoration: none;
}

.page-text-inner.header{
	font-style: italic;
	text-decoration: underline;
}

.page-text {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	font-size: 16px;
	color: #000000;
	font-style: normal;
}


.page-text.headerTitle {
  font-weight: 600;
  font-size: 22px;
  font-family: "Verdana";
  
	padding-left: 25px;
}

.page-text.title {
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
}

.page-text.subtitle {
  font-style: italic;
}

.page-widthline {
  width: 100%;
  border-bottom: 1px solid #ccdddd;
}

.page-link {
  font-size: 16px;
  color: #007bff;
  text-decoration: none;
  cursor: pointer;
}

.page-link:hover {
  text-decoration: underline;
}

.inner-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 30px;
}

.inner-section.header {
  margin-bottom: 25px;
}

.inner-section.bottom {
  margin-bottom: 0px;
}

/* Sitemap-specific styles */

.sitemap-list {
  line-height: 1.6;
  margin-left: 30px;
}
.sitemap-link {
  color: #007bff;
  text-decoration: none;
  cursor: pointer;
}

.sitemap-link:hover {
  text-decoration: underline;
}

/* Dartboards-specific styles */

.dartboards-image-row {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 12px 0;
  padding: 10px;
}

.dartboards-image-container {
  max-width: 150px;
  width: 30%;
  cursor: pointer;
  border-radius: 6px;
  border: 2px solid #ccc;
  transition: all 0.3s;
  background: white;
}

.dartboards-image-container:hover {
  border-color: #ff9900;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.dartboards-image-container img {
  width: 100%;
  display: block;
  pointer-events: none;
  border-radius: 4px;
}
