/* Farve koder for farver i css */
:root {
    --black: #212121;
    --dark: #424246;
    --white: #f5f5f5;
    --gray: #bab5b5;
  }
  /*Main CSS info for side*/
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  html, body {
    height: 100%;
  }
  
  body {
    font-family: Arial, sans-serif;
    background: var(--dark);
    display: flex;
    flex-direction: column;
    height: 100vh;
  }
  /* Layout container */
  .layout-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0 20px;
    gap: 10px;
  }
  
 /* HEADER(der er i class-form) */
  .header-box .header {
    background: var(--white);
    border: 3px solid var(--black);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 15px;
    border-radius: 20px;
    height: 100px;
  }
  
  .header h1 {
    font-size: 56px;
    font-weight: bold;
  }
  /* Sprog skifte knap */
  .language-toggle button {
    background: none;
    border: none;
    font-size: 45px;
    font-weight: bold;
    margin-left: 10px;
    padding: 5px 10px;
    cursor: pointer;
  }
  
  .language-toggle .active {
    background-color: var(--gray);
  }
  
  /* Teknik */
  .teknik-container {
    background: var(--white);
    border: 3px solid var(--black);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow-y: auto;
    flex: 1 1 auto;
    min-height: 0;
  }
  
  #questionText {
    font-size: 88px;
    font-weight: bold;
    line-height: 1.4;
    word-break: break-word;
  }
  
  /* QR */
  .qr-section {
    background: var(--white);
    border: 3px solid var(--black);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 40px;
    overflow: hidden;
    flex: 0 0 200px;
  }
  
  .qr-section img {
    width: 180px;
    height: 180px;
  }
  
  .qr-section p {
    font-size: 48px;
    font-weight: bold;
    line-height: 1.3;
    text-align: center;
  }
  
  /* FOOTER (der er i class-form)*/
  .footer-box .footer {
    background: var(--white);
    border: 3px solid var(--black);
    text-align: center;
    padding: 10px 0;
    font-size: 20px;
    font-weight: bold;
    border-radius: 20px;
    height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  /* PILE */
  .footer .nav-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
  
  .footer .nav-buttons button {
    width: 64px;
    height: 64px;
    font-size: 48px;
    background: var(--white);
    border: 2px solid var(--black);
   
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    transition: background-color 0.2s;
  }
  
  .footer .nav-buttons button:hover {
    background-color: var(--gray);
  }
  
  /* PRIKKER */
  .page-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 5px;
    height: 24px;
  }
  
  .dot {
    width: 20px;
    height: 20px;
    background-color: var(--gray);
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.2s;
  }
  
  .dot.active {
    background-color: var(--black);
  }
  
  