/* Embed mode for the aquarium iframe.
   Loaded by advanced_fish_tank_simulator.html so the canvas fills the frame. */

html.embedded {
  width: 100%;
  height: 100%;
  height: 100vh;
  overflow: hidden;
  background: #07131d;
}

html.embedded body {
  width: 100%;
  height: 100%;
  height: 100vh;
  min-height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  display: block;
  place-items: unset;
  background: #07131d;
}

html.embedded .app {
  width: 100%;
  height: 100%;
  min-height: 100%;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: minmax(0, 1fr);
  gap: 0;
}

html.embedded .controls {
  display: none;
}

html.embedded .tank-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  align-self: stretch;
}

html.embedded canvas,
html.embedded canvas#tank {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 340px;
  border-radius: 0;
  border: 0;
  box-shadow: none;
}
