﻿/* Reset styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
}

/* Header Section */
header {
    background-color: #3e3e3e;
    padding: 20px 20px;
    color: white;
}

.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.buttons {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
}

    .buttons:hover {
        text-decoration: underline;
    }

.cart {
    font-size: 2em;
    text-decoration: none;
}

.logo {
    width: auto;
    height: 90px;
}

/* Application Form Section */
.application-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.application-form {
    background-color: #e0e0e0;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

    .application-form h2 {
        font-size: 1.5em;
        margin-bottom: 15px;
    }

    .application-form label {
        display: block;
        margin-top: 10px;
        font-size: 1em;
    }

    .application-form input[type="text"],
    .application-form input[type="email"],
    .application-form input[type="number"],
    .application-form textarea {
        width: 100%;
        padding: 8px;
        margin-top: 5px;
        border: 2px solid #000000;
        border-radius: 5px;
        box-sizing: border-box;
    }

    .application-form textarea {
        resize: vertical;
    }

.submit-button {
    background-color: #d68b87;
    color: white;
    border: none;
    padding: 10px 20px;
    margin-top: 15px;
    cursor: pointer;
    font-size: 1em;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

    .submit-button:hover {
        background-color: #b6806c;
    }

html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.content {
    flex: 1;
}

/* Basisstijl voor de footer */
.footer {
    background-color: #555; /* Donkergrijze achtergrondkleur */
    padding: 20px 0;
    text-align: center;
    color: white;
    font-size: 18px;
}

/* Stijl voor de links in de footer */
.footer-content a {
    color: white;
    text-decoration: none;
    margin: 0 20px;
    font-weight: normal;
}

    /* Afstand tussen de links */
    .footer-content a:hover {
        text-decoration: underline;
    }
