  .background {
    position: fixed; /* dekker hele vinduet */
    top: 0; left: 0;
    width: 100% !important;
    height: 100%;
    background-image: url('https://vindogsol.no/websider/StilOGgrafikk/bakgrunn2.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.2; /* 50% gjennomsiktighet */
    z-index: -1; /* bak innhold */
    display: block;
  }

  body {
    margin: 0;
    padding: 25px;
    position: relative;
    z-index: 1;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}
h1, h2 {
  color: #2c3e50;
}
section {
  background: #fff;
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.diagram {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 15px;
}
svg {
  border: 1px solid #ccc;
  background-color: #fafafa;
}
  .bildeHoyre {
    float: right;
    width: 33.33vw !important;
    max-width: 100%;
    height: auto;
    margin-left: 10px;
    margin-bottom: 10px;
  }
  .bildeHoyre img {
    display: block;
    width: 100%;
    height: auto;
  }

  .bildeVenstre {
    float: left;
    width: 33.33vw !important;
    max-width: 100%;
    height: auto;
    margin-right: 10px;
    margin-bottom: 10px;
  }
  .bildeVenstre img {
    display: block;
    width: 100%;
    height: auto;
  }
  table {
    border-collapse: collapse;
  }
        th, td {
            border: 1px solid #bbb;
            padding: 8px;
            text-align: left;
        }
        th {
            background-color: #86c4f7;
        }
   td {
   background-color: inherit;
}
        td.numeric {
        text-align: right;
        }
  input, textarea {
  font-size: 1.2em; /* Endre denne verdien for større eller mindre tekst */
  padding: 0.5em; /* Litt padding for å gjøre det mer behagelig å skrive */
  width: 90px; /* Endre denne verdien for å justere lengden */
}
input.stor {
  font-size: 1.5em; /* Større tekst for "stor" klasse */
  width: 220px; /* Bredere input for "stor" klasse */ 
}
textarea.stor {
  font-size: 1.5em; /* Større tekst for "stor" klasse */
  width: 500px; /* Bredere input for "stor" klasse */
  height: 150px; /* Høyde for tekstområde */ 
}
  h1.ikonfrem {
    position: relative;
    padding-left: 160px; /* plass til bildet */
    padding-top: 100px; /* øk dette for mer avstand over overskriften */
  }

  h1.ikonfrem::before {
    content: "";
    position: absolute;
    left: 0;
    top: auto; /* juster for å plassere bildet riktig vertikalt */
    transform: translateY(-50%);
    width: 96px; /* juster størrelsen etter behov */
    height: 96px;
    background-image: url('https://vindogsol.no/websider/bilder/animated-windmill-image-0030.gif'); /* erstatt med ditt bilde */
    background-size: contain;
    background-repeat: no-repeat;
  }
  
  /* Container for tabell og forklaring */
  .container {
    display: flex;
    flex-direction: row; /* Side om side på store skjermer */
    gap: 20px; /* mellomrom */
    align-items: flex-start;
    margin: 20px;
  }

  /* Container for tabellen */
  .table-container {
    flex: 1; /* Tar mest plass */
  }

  /* Forklaringsboksen */
  .explanation {
    flex: 1; /* Tar mindre plass */
    background-color: #f0f0f0;
    padding: 10px;
    border-radius: 5px;
  }

  /* Responsivt: på små skjermer, gjør alt til kolonne */
  @media (max-width: 768px) {
    .container {
      flex-direction: column; /* Stabler vertikalt */
    }
  }

  .big-button {
    padding: 30px 60px; /* stor padding for stor knapp - brukes på startsida*/
    font-size: 2em; /* stor tekst */
    background-color: #007BFF; /* knappfarge */
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none; /* fjerner understrek */
    transition: background-color 0.3s;
  }
  .big-button:hover {
    background-color: #0056b3;
  }