* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: Arial, sans-serif;
  background: #eef3f8;
}

body {
  min-height: 100vh;
}

/* HEADER */
.header {

  background: #174f88;
  color: white;
  padding: 10px;
  text-align: center;
  border-bottom: 4px solid #d62828;
  max-height: 10vh;

  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
 
}

/* LAYOUT */
.content-row {
  display: flex;
  width: 100vw;
  height: calc(90vh);
  margin: 0;
  padding: 0;
}

/* LEFT (QR) */
.left-box {
  flex: 1;
  background: #f1f3f5;
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 4px solid #d6e0ea;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.left-box img {
  display: block;
  width: auto;
  height: auto;
  max-width: 70vw;
  max-height: 70vh;
  object-fit: contain;
}

/* RIGHT (ANSWERS) */
.right-box {
  flex: 1;
  background: #f1f3f5;
  padding: 25px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  margin: 0;
}

/* TITLE */
.right-box h3 {
  margin-top: 0;
  margin-bottom: 5px;
  color: #174f88;
}

/* ANSWERS */
#answers {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
  display: grid;
  grid-template-rows: repeat(10, minmax(0, 1fr));
  gap: 6px;
  min-height: 0;
}

#answers li {
  background: white;
  border-left: 5px solid #d62828;
  border-radius: 4px;
  padding: 6px 10px;
  display: flex;
  align-items: center;
  overflow: hidden;
  min-height: 0;
}