* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  overflow: hidden;
}

body {
  font-family: "Inter", sans-serif;
  display: flex;
  flex-direction: column;
  background: #f5f5f5;
}

/* Iframe container */
.iframe-container {
  flex: 1;
  position: relative;
  background: white;
  overflow: hidden;
}

iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  border: none;
}
