body {
    font-family: 'Arial', sans-serif;
    background-color: #f0f4f8;
    margin: 0;
    padding: 0;
}

header {
    background-color: #003366;
    color: white;
    padding: 25px 20px;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
}

nav {
    background-color: #0059b3;
    padding: 12px 0;
    text-align: center;
}

nav a {
    color: white;
    margin: 0 20px;
    font-size: 16px;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

.container {
    width: 92%;
    max-width: 1100px;
    margin: 30px auto;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
}

input, textarea, select {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
}

input:focus, textarea:focus, select:focus {
    border-color: #004080;
    outline: none;
}

button {
    background-color: #004080;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #003366;
}

.job-box {
    background: #e6f0ff;
    border: 1px solid #99c2ff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
}

.job-card {
    background: #ffffff;
    border: 1px solid #cce0ff;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0px 2px 6px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s ease;
    font-size: 14px; /* Mindre tekst */
}

.job-card:hover {
    box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
}

.job-card h3 {
    margin-top: 0;
    font-size: 16px; /* Lidt mindre overskrift */
}

.job-card p {
    margin: 8px 0;
    font-size: 14px;
    line-height: 1.4;
}

.job-card img.job-image {
    width: 100%;
    max-width: 200px;
    margin-top: 10px;
    border-radius: 6px;
}

.read-more {
    display: inline-block;
    margin-top: 5px;
    font-size: 14px;
    color: #0059b3;
    font-weight: bold;
}


.pagination a {
    margin: 0 8px;
    padding: 8px 14px;
    background-color: #0059b3;
    color: white;
    border-radius: 4px;
    text-decoration: none;
    font-size: 16px;
}

.pagination a:hover {
    background-color: #003d80;
}

.read-more {
    display: inline-block;
    margin-top: 10px;
    color: #0059b3;
    font-weight: bold;
}

.read-more:hover {
    text-decoration: underline;
}

.banner {
    background: url('/uploads/banner1.webp') no-repeat center center;
    background-size: cover;
    padding: 80px 20px;
    text-align: center;
    color: white;
    position: relative;
}

.banner::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.5); /* mørkt filter */
}

.banner-content {
    position: relative;
    z-index: 1;
}

.banner h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.banner p {
    font-size: 20px;
    margin-bottom: 20px;
}

.banner-button {
    background: #0066cc;
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

.banner-button:hover {
    background: #004080;
}

