body {
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
    margin: 20px;
    padding: 10px;
}

/* Headerstijl */
header {
    background-color: #2727e0;
    /* Grijze achtergrondkleur */
    color: white;
    /* Witte tekstkleur */
    padding: 20px;
    text-align: center;
}

header h1 {
    font-size: 2.5em;
    margin-bottom: 5px;
}

header p {
    font-size: 1.2em;
    font-style: italic;
}

/* Hoofdtitelstijl */
main h2 {
    color: #2d2d2d;
    border-bottom: 2px solid #2d2d2d;
    padding-bottom: 5px;
}

/* Stijl voor ongeordende lijsten */
ul {
    list-style-type: disc;
    margin: 10px 0 20px 20px;
    padding: 0;
}

/* Navigatiestijl */
nav {
    text-align: center;
    margin-bottom: 20px;
}

nav a {
    margin: 0 10px;
    text-decoration: none;
    color: #555;
    font-weight: bold;
}

nav a:hover {
    color: #000;
}

/* Voettekststijl */
footer {
    font-size: 0.9em;
}

/* Portfolio Grid stijl */
.portfolio {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
    margin: 20px auto;
    max-width: 1200px;
}

/* Portfolio-item stijl */
.portfolio-item {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.portfolio-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.portfolio-item h3 {
    margin: 10px;
    font-size: 20px;
}

.portfolio-item p {
    margin: 10px;
    font-size: 16px;
    color: #555;
}

/* Iframe container stijl */
.iframe-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Russo brothers container stijl */
.russobrothers-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px;
    padding: 20px;
}

/* Stijl voor formuliercontainer */
.container {
    width: 50%;
    margin: 50px auto;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Algemene input veld stijl */
label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
}

input,
select,
textarea,
button {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

textarea {
    resize: vertical;
}

/* Stijl voor radio en checkbox groepen */
.radio-group,
.checkbox-group {
    margin-bottom: 15px;
}

.radio-group input,
.checkbox-group input {
    margin-right: 10px;
}

/* Button stijl */
button {
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: #45a049;
}

/* Tabel stijlen */
table {
    border-collapse: collapse;
    /* Zorgt ervoor dat cellen samenkomen */
    width: 100%;
    /* Zorgt dat de tabel de volledige breedte benut */
    text-align: left;
    /* Tekst uitlijnen naar links */
}

th,
td {
    border: 1px solid black;
    /* Zwarte rand voor de cellen */
    padding: 10px;
    /* Ruimte binnenin de cellen */
}

caption {
    font-weight: bold;
    /* Vetgedrukte tekst voor het onderschrift */
    margin-bottom: 10px;
    /* Ruimte onder de caption */
}

thead {
    background-color: #f2f2f2;
    /* Lichte achtergrondkleur voor de header */
}

tfoot {
    background-color: #e6e6e6;
    /* Lichte achtergrondkleur voor de footer */
}

/* Stijlen voor de decorprijzen */
ol {
    font-family: Arial, sans-serif;
    font-size: 18px;
    margin: 20px;
    padding: 0;
}

ol li {
    margin: 10px 0;
    line-height: 1.5;
}

.price {
    font-weight: bold;
    color: #2a9d8f;
    /* Mintgroene kleur */
}

/* Stijlen voor de acteursprijzen */
ul {
    font-family: Arial, sans-serif;
    font-size: 18px;
    margin: 20px;
    padding: 0;
    list-style-type: disc;
}

ul li {
    margin: 10px 10px;
    line-height: 1.5;
}

.amount {
    font-weight: bold;
    color: #d1495b;
    /* Rode kleur */
}

/* Stijlen voor de container van de decor tekst en afbeelding */
.decor-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px;
    padding: 20px;
}

.decor-container img {
    width: 40%;
    /* Zorg ervoor dat de afbeelding niet te groot is */
    height: auto;
    border-radius: 8px;
    /* Optioneel, voor een mooiere rand */
}

.decor-text {
    width: 55%;
    /* Zorg ervoor dat de tekst een beetje ruimte heeft */
}