
	body,
html {
    font-family: Arial, Helvetica, sans-serif;
    height: 100%;
    margin: 0;
}

p {
    margin: 0 0 0 1%;
}

.message {
    margin-left: 1%;
}



/* Place text in the middle of the image */
.hero-text {
    color: white;
    left: 50%;
    margin-top: 25px;
    position: absolute;
    text-align: center;
    top: 50%;
    transform: translate(-50%, -50%);
}

.rotate-180 {
    -ms-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.container {
    height: 100%;
    margin: 0 auto;
    width: 100%;
}

.mobile-container {
    max-width: 100%;
    margin: auto;
    background-color: white;
    height: 92%;
    color: black;
    border-radius: 1px;
}



.topnav #myLinks {
    display: none;
}

.topnav a {
    color: white;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
    display: block;
}

.topnav a.icon {
    /* background: #59cbe8;*/
    background: #00719c;
    color: yellow;
    display: block;
    position: absolute;
    right: 0;
    top: 0;
}

.topnav a:hover {
    /*background-color:#469449;  mgrønn */
    /* background-color: #59CBE8; */
	  background-color: black; 
 
    color: #949494; /* gray */
}

.active {
    /* background-color:#59CBE8; */
    background-color: black; 
    color: gray;
}

.highcharts-figure,
.highcharts-data-table table {
    margin: 1em auto;
    max-width: 100%;
    min-width: 360px;
}

.highcharts-data-table table {
    /*border: 2px solid #ebebeb; */
	border: none;
    border-collapse: collapse;
    font-family: Arial, sans-serif; /* Verdana, sans-serif; */
    table-layout: fixed; /* konsistent column widths */
    text-align: right; /* tall til h under kolonnen, bet naar tall */
    width: 100%;
}

.highcharts-data-table td,
.highcharts-data-table th,
.highcharts-data-table caption {
    font-size: 14px;
    font-weight: 500;
    padding: 0.5em;
}

.highcharts-data-table caption {
    color: #555;
    font-size: 22px; /* erik overskriften bare */ /* was 1.2 added width font-size: 1.0em; */
    padding: 1em 0;
}

.highcharts-data-table th {
    font-size: 14px; /* erik data bare */
    font-weight: 600;
    padding: 0.5em;
}

.highcharts-data-table thead tr,
.highcharts-data-table tr:nth-child(even) {
    background: #f8f8f8;
}

.highcharts-data-table tr:hover {
    background: #f1f7ff;
}

.highcharts-data-table table td:first-child {
    white-space: nowrap;
}

.highcharts-data-table table th:first-child {
    /* 1ste kolonna */
    text-align: left;
    width: 200px;
}

#container h4 {
    font-size: 14px;
    font-weight: normal;
    text-transform: none;
}

#container p {
    font-size: 13px;
    line-height: 16px;
}

@media screen and (max-width: 600px) and (max-height: 300px) {
    #container h4 {
        font-size: 2.3vw;
        line-height: 3vw;
    }

    #container p {
        font-size: 2.3vw;
        line-height: 3vw;
    }
}

.navbar {
    /*background-color: #0a3622;  dark grreen */
    /* main blue #00719c; top bar */
    background-color: #00719c;
    overflow: hidden;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 5;
}

.navbar a {
    color: white;
    display: block;
    float: left;
    font-size: 17px;
    padding: 14px 16px;
    text-align: center;
    text-decoration: none;
}

.navbar a:hover {
    background: #20c997;
    color: black;
}

.centered-div {
    margin: 0 auto;
    max-width: 800px;
    padding: 20px;
}

.centered-footer-div {
    color: #808080;
    font-size: 10px;
    margin: 0 auto;
    max-width: 800px;
    padding: 20px;
}

a {
    color: inherit;
}

.copyright {
    color: #808080;
    font-size: 10px;
    margin: 100px auto;
    max-width: 800px;
    padding: 20px;
}

#myFooter {
    background-color: #f1f1f1;
    bottom: 0;
    color: #808080;
    font-size: 11px;
    left: 0;
    padding: 10px;
    position: fixed;
    text-align: left;
    width: 100%;
    z-index: 5;
}


 body {
            font-family: Arial, sans-serif;
            margin: 0;
            background: #f4f4f4;
            color: #333;
        }

        header {
            background: #282c34;
            color: darkred;
            padding: 10px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.0em;
        }

        nav {
            display: none;
            flex-direction: column;
            background: #282c34;
            position: absolute;
            top: 60px;
            right: 0;
            width: 100%;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        }

        nav a {
            color: white;
            padding: 15px;
            text-decoration: none;
            border-bottom: 1px solid #444;
        }

        .menu-toggle {
            font-size: 24px;
            cursor: pointer;
                  display: flex;
                    justify-content: flex-end;
        }

 

        

        main {
            padding: 20px;
            text-align: center;
        }

        footer {
            background: #ddd;
            text-align: center;
            padding: 10px;
            position: fixed;
            width: 100%;
            bottom: 0;
            font-size: 10px; /* or try 0.8em or smaller */
        }

        @media (min-width: 600px) {
            nav {
                display: flex !important;
                position: static;
                flex-direction: row;
                background: none;
                box-shadow: none;
            }
            nav a {
                border: none;
                padding: 0 15px;
            }
            .menu-toggle {
                display: none;
            }
        }
