body {
  font-family: system-ui, sans-serif;
}

/* Wrapper so everything scales with the image */
.floorplan {
  position: relative;
  max-width: 900px;       /* change as you like */
  margin: 0 auto;
}

.floorplan img {
  width: 100%;            /* makes image responsive */
  display: block;
}
h2 {
	font-family: proxima-nova,sans-serif;
  font-style: normal;
  font-weight: normal;
  color: #004051;
  text-rendering: optimizeLegibility;
  font-size: 1.85rem;
  padding-left:25px;
}
.floorplan p {
	padding-left: 25px;
}

/* Generic clickable table circle */
.table-spot {
  position: absolute;
  width: 5%;              /* relative to image width; tweak to fit your circles */
  aspect-ratio: 1 / 1;    /* keeps it circular */
  border-radius: 50%;
  transform: translate(-50%, -50%); /* center on the coordinates */
  cursor: pointer;
  text-decoration: none;
  /* Optional visual: remove background if you want them invisible */
  background: rgba(0, 128, 255, 0);
  border: 2px solid rgba(0, 128, 255, 0);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;       /* scales with width */
}


/* Non-clickable tables (no link) */
.table-spot.no-link {
  cursor: default;
  pointer-events: none;   /* not clickable */
  background: rgba(128, 128, 128, 0.25);
  border-color: rgba(128, 128, 128, 0.8);
}
/* Mobile-first: stack image then key table */
body {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Make sure the image scales nicely */
.floorplan img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Optional: key table full width */
.key-table table {
  width: 100%;
  border-collapse: collapse;
}
.key-table a {
	color: #004051;
  text-decoration: none;
  font-weight: 700;
}

/* Desktop: put key table on the right-hand side */
@media (min-width: 768px) {
  body {
    flex-direction: row;
    align-items: flex-start;
  }

  .floorplan {
    flex: 1 1 auto;
  }

  .key-table {
    flex: 0 0 320px; /* adjust width if needed */
    margin-left: 1.5rem;
  }
}

