.bathroom-tabs {
  display: flex;
  gap: 4px;
  padding: 4px;
  margin-block-end: 20px;
  width: fit-content;
  border: 1px solid #b7b9b5;
  border-radius: 7px;
  background: #f7f7f6;
}
.bathroom-tabs button {
  min-height: 44px;
  padding: 10px 20px;
  border: 0;
  border-radius: 3px;
  background: transparent;
  color: #333;
  font: 500 14px/1.4 system-ui, sans-serif;
  cursor: pointer;
}
.bathroom-tabs button:hover { background: #e8e9e7; }
.bathroom-tabs button[aria-selected="true"] { color: white; background: #222; }
.bathroom-tabs button:focus-visible { outline: 2px solid #145d99; outline-offset: 2px; }
[role="tabpanel"][hidden] { display: none; }
body:has(.bathroom-tabs) main { min-width: 0; }
#ensuite-panel { overflow-x: auto; }
#ensuite-panel > svg { min-width: 1032px; }
@media print {
  .bathroom-tabs { display: none; }
  #ensuite-panel { overflow: visible; }
  #ensuite-panel > svg { min-width: 0; }
}
