
        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            margin: 0;
            padding: 0;
            background-color: #f9f9f9;
        }
        .container {
            max-width: 800px;
            margin: 20px auto;
            padding: 20px;
            background-color: #fff;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            border-radius: 8px;
        }
        h1, h2, h3 {
            color: #2c3e50;
            margin-bottom: 10px;
        }
        h1 {
            font-size: 2.5em;
            text-align: center;
            margin-bottom: 20px;
        }
        h2 {
            font-size: 2em;
            border-bottom: 1px solid #ccc;
            padding-bottom: 10px;
            margin-top: 30px;
        }
        h3 {
            font-size: 1.5em;
            margin-top: 20px;
        }
        p {
            margin-bottom: 15px;
        }
        ul {
            list-style-type: disc;
            padding-left: 20px;
            margin-bottom: 15px;
        }
        li {
            margin-bottom: 5px;
        }
        strong {
            font-weight: bold;
        }
        a {
            color: #007bff;
            text-decoration: none;
        }
        a:hover {
            text-decoration: underline;
        }
        .faq {
            margin-top: 30px;
            border-top: 1px solid #ccc;
            padding-top: 20px;
        }
        .faq h2 {
            margin-top: 0;
        }
        .faq-item {
            margin-bottom: 20px;
        }
        .faq-question {
            font-weight: bold;
            margin-bottom: 5px;
        }
        .content-table {
            border-collapse: collapse;
            width: 100%;
            margin-bottom: 20px;
        }
        .content-table th, .content-table td {
            border: 1px solid #ddd;
            padding: 8px;
            text-align: left;
        }
        .content-table th {
            background-color: #f2f2f2;
            font-weight: bold;
        }
        .content-table a {
            color: #007bff;
            text-decoration: none;
        }
        .content-table a:hover {
            text-decoration: underline;
        }
        .content-table th, .content-table td {
            padding: 10px;
        }
        .content-table tr:nth-child(even) {
            background-color: #f9f9f9;
        }
        .content-table {
            width: 100%;
            margin-bottom: 20px;
            border: 1px solid #ccc;
        }
        .content-table th, .content-table td {
            padding: 10px;
            text-align: left;
            border-bottom: 1px solid #eee;
        }
        .content-table th {
            background-color: #f7f7f7;
            font-weight: bold;
        }
        .content-table tr:hover {
            background-color: #f0f0f0;
        }
        .table-responsive {
            overflow-x: auto;
        }

        @media (max-width: 768px) {
            .container {
                padding: 10px;
            }
            h1 {
                font-size: 2em;
            }
            h2 {
                font-size: 1.7em;
            }
        }
        / Innehållsförteckning styling /
        .content-table-of-contents {
            position: sticky;
            top: 20px;
            border: 1px solid #ddd;
            border-radius: 8px;
            padding: 15px;
            background-color: #f9f9f9;
            margin-bottom: 20px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            width: 250px; / Fixed width /
        }

        .content-table-of-contents h3 {
            font-size: 1.2em;
            margin-bottom: 10px;
            border-bottom: 1px solid #eee;
            padding-bottom: 5px;
        }

        .content-table-of-contents ul {
            list-style: none;
            padding: 0;
        }

        .content-table-of-contents li {
            margin-bottom: 5px;
        }

        .content-table-of-contents a {
            color: #333;
            text-decoration: none;
            display: block; / Make links fill the list item space /
            padding: 5px;
            border-radius: 4px;
        }

        .content-table-of-contents a:hover {
            background-color: #eee;
        }
        .content-table-of-contents a:active {
             background-color: #ddd;
        }
        .main-content {
            display: flex;
            justify-content: space-between;
        }

        .main-content >  {
            flex-basis: 66%;
        }
        .content-table-of-contents {
            flex-basis: 30%;
            position: sticky;
            top: 20px;
            align-self: flex-start;
        }
    