body {
    font-family: 'Verdana', sans-serif;
    background-color: #f0f8ff;
    color: #333;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

header nav {
    background-color: #ff4500;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

header nav ul {
    list-style: none;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0;
}

header nav ul li {
    margin: 0 15px;
}

header nav ul li a {
    text-decoration: none;
    color: #ffffff;
    font-size: 1.3em;
    transition: color 0.3s ease;
    padding: 10px;
}

header nav ul li a:hover {
    color: #ffff00;
    background-color: #ff6347;
    border-radius: 8px;
}

main {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

h1, h2 {
    color: #ff4500;
    text-align: center;
    margin-bottom: 20px;
}

h3 {
    color: #ff4500;
    text-align: left;
    size: 30px;
    margin-bottom: 20px;
}

p, ul {
    font-size: 1.1em;
    color: #333;
}

ul {
    list-style: disc;
    padding-left: 40px;
}

ul li {
    margin-bottom: 10px;
}


a.cta-button {
    display: inline-block;
    background-color: #ff6347;
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.2em;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

a.cta-button:hover {
    background-color: #ffeb3b;
    color: #ffffff;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

footer {
    background-color: #ff4500;
    color: #ffffff;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

footer p {
    margin: 0;
    font-size: 1.1em;
}

footer p a {
    color: #ffff00;
    text-decoration: none;
}

footer p a:hover {
    color: #ffeb3b;
}

@media (max-width: 768px) {
    header nav ul {
        flex-direction: column;
    }

    header nav ul li {
        margin-bottom: 10px;
    }

    main {
        margin: 20px;
        padding: 15px;
    }
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 1.1em;
    background-color: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

table thead tr {
    background-color: #ff6347; /* Fel oranje voor de hele rij */
    color: white;
    text-transform: uppercase;
    font-weight: bold;
}

table tbody tr:nth-child(even) {
    background-color: #f2f2f2;
}

table tbody tr:hover {
    background-color: #ffe4b5;
}

table th, table td {
    border-bottom: 1px solid #dddddd;
}

table td {
    color: #333;
}

table th:last-child, table td:last-child {
    border-right: none;
}

table tr:last-child td {
    border-bottom: none;
}

table td[rowspan] {
    background-color: #f2f2f2;
    font-weight: bold;
}

a {
            color: #1c7ec5; 
            text-decoration: none;        
}

.download-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

section article {
  margin-bottom: 40px;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 10px;
}

section hr {
  border: none;
  border-top: 1px solid #ddd;
  margin: 40px 0;
}

#release-notes {
  margin: 20px 0;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #fff;
}

#release-notes h2 {
  color: #ff4500;
  text-align: center;
}