body {
    margin: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #f8f8f8;
 	background-image: url('/images/bg1.png'); /* Sti til dit billede */
	background-size: cover; /* Sørg for, at billedet dækker hele baggrunden */
	background-position: center; /* Centrer billedet */
	background-attachment: fixed; /* Holder baggrunden fast, når man scroller */
 	background-repeat: no-repeat; /* Forhindrer gentagelse af billedet */
/*padding-top: 80px; /* Justér denne værdi afhængigt af din header-højde */
}


.container-header {
  background-image: none;
  background-color: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.container-footer {
  background-image: none;
  background-color: white;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
}

.footer {
    background: #fff;
    color: #333;
    text-align: center;
    padding: 0.2rem;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
}

.container-header .mod-menu {
    color: #000;
    flex: 1 0 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

.container-header .navbar-brand a {
    color:#000;
}

.custom-article {
    flex: 1;
    padding: 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    background-color: #fff;
    border-radius: 8px;
    margin-right: 1rem;
}

.custom-article-content {
            background-color: #fff;
            padding: 15px;
            border-radius: 5px;
}

.article-image {
    float: right;
    margin-left: 30px;
    margin-bottom: 30px;
    width: 50%;
    border-radius: 8px;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #333;
    color: #fff;
    padding: 15px;
    text-align: center;
    font-size: 14px;
    z-index: 1000;
}

#cookie-banner button {
    background-color: #f4b400;
    color: black;
    border: none;
    padding: 10px 20px;
    margin-left: 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    width: 120px;
    height: 40px;
}

#cookie-banner button:hover {
    background-color: #e5a200;
}

.hr-line {
  width: 95%;           /* Skillelinjen fylder 90% af bredden */
  margin: 40px auto;    /* Centrerer linjen og giver lidt afstand på top og bund */
  border: 0;            /* Fjerner standardgrænsen */
  border-top: 2px solid #333;  /* Tilføjer en sort linje som skillelinje */
}

/* Styles for 5-column layout */
/* Generel styling for rækker */
.row {
  display: flex;
  width: 100%;
}

/* Styling for flere kolonner */
.column {
  padding: 5px;
  box-sizing: border-box;
  text-align: center;
}

.column img {
  max-width: 100%;
  border-radius: 15px; /* Juster værdien for ønsket runding */
  height: auto;
  box-shadow: 3px -3px 10px rgba(0, 0, 0, 0.2); /* Skygge kun på top og sider */
  border-radius: 20px; /* Valgfri afrunding */ 
}

/* Specifik styling for kolonner med forskellig bredde */
.column-1 {
  width: 32%;
  background-color: #fff;
}

.column-2 {
  width: 2%;
  background-color: #fff;
}

.column-3 {
  width: 32%;
  background-color: #fff;
}

.column-4 {
  width: 2%;
  background-color: #fff;
}

.column-5 {
  width: 32%;
  background-color: #fff;
}

/* Styling for en enkelt kolonne */
.single-column-row {
  display: flex;
  justify-content: center; /* Centrerer kolonnen vandret */
  width: 100%;
}

.single-column {
  padding: 0px;
  padding-top:10px;
  padding-bottom:10px;
  box-sizing: border-box;
  text-align: center;
  width: 100%; /* Juster bredden på kolonnen */
  background-color: #fff; /* Baggrundsfarve */
  border: 0px solid #ddd; /* Tilføj valgfri kant */
  border-radius: 10px; /* Afrundede hjørner på kolonnen */
}

.single-column img {
  max-width: 100%; /* Sørger for billedet tilpasser kolonnens bredde */
  height: auto; /* Bevarer billedets proportioner */
  border-radius: 15px; /* Afrunder hjørnerne på billedet */
  box-shadow: 5px -5px 10px rgba(0, 0, 0, 0.2); /* Skygge kun på top og sider */
  border-radius: 15px; /* Valgfri afrunding */  
}
/* Styling for links-section */
.links-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.link-item {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    background-color: #fff;
}

.link-logo {
    flex: 0 0 20%;
    background-color: #f0f0f0;
    display: flex;
    align-items: flex-start; /* Placerer logoet i toppen vertikalt */
    justify-content: flex-start; /* Sørger for, at logoet ikke centreres horisontalt */
    padding: 10px;
    flex-direction: column; /* Sørger for, at indhold stables lodret, hvis der er mere */
}

.link-logo img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.link-description {
    flex: 1;
    padding: 15px;
}

.link-description h3 {
    margin: 0 0 10px;
    font-size: 1.2em;
    color: #333;
}

.link-description p {
    margin: 0;
    color: #666;
    line-height: 1.5;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #333;
    color: #fff;
    padding: 15px;
    text-align: center;
    font-size: 14px;
    z-index: 1000;
}

#cookie-banner button {
    background-color: #f4b400;
    color: black;
    border: none;
    padding: 10px 20px;
    margin-left: 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    width: 120px;
    height: 40px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

table, th, td {
    border: 1px solid #ddd;
}

th, td {
    padding: 12px;
    text-align: left;
}

th {
    background-color: #f2f2f2;
}

form {
    margin-top: 30px;
}

input, select, button {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    background-color: #3498db;
    color: white;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: #2980b9;
}

#result-box {
    display: none;
    margin-top: 20px;
    padding: 15px;
    border: 1px solid #3498db;
    background-color: #eaf4fc;
    border-radius: 5px;
    font-weight: bold;
    color: #2c3e50;
}