 <style>
    body {
      font-family: Helvetica, Arial, sans-serif;
      background-color: #f8f9fa;
	  text-align: center;
    }
    .header {
      background-color: #2e6d31;
      color: white;
      padding: 1rem;
      text-align: center;
      border-radius: 0.5rem;
      margin-top: 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1rem;
    }
    .header img {
      height: 32px;
    }
    .header h1 {
      font-weight: bold;
      margin: 0;
    }
    .section-title {
      font-weight: bold;
      margin-top: 2rem;
    }
    .table thead th {
      background-color: #2e6d31;
      color: white;
      vertical-align: middle;
    }
    .table-striped > tbody > tr:nth-of-type(odd) {
      background-color: #f3f3f3;
    }
    .footer {
      text-align: center;
      font-size: 1rem;
      margin-top: 1rem;
    }
    .footer-logos {
      display: inline-flex;
      align-items: center;
      gap: 1rem;
      margin-top: 0.5rem;
    }
    .footer-logos img {
    height: 67px;
    }

    /* V�nsterjustering f�r horsetype-table */
    .horsetype-table th,
    .horsetype-table td {
      text-align: left;
    }
  </style>