@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600&display=swap');

html, body {
    height: 100%;
    margin: 0;
    font-family: "Montserrat", sans-serif;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1 0 auto;
}

/* NAVBAR */
.navbar {
    background: #336599;
}

.nav-container {
    margin: auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo {
    height: 70px;
    max-width: 100%;
    object-fit: contain;
}

.nav-links ul {
    list-style: none;
    display: flex;
    gap: 16px;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.nav-links ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 6px;
}

.nav-links ul li a:hover {
    background: rgba(255, 255, 255, 0.15);
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links ul {
        flex-direction: column;
        width: 100%;
        gap: 8px;
    }

    .nav-links ul li a {
        display: block;
        width: 100%;
    }
}

/* FOOTER */
footer {
    background-color: #336599;
    color: #ffffff;
    padding: 40px 20px;
    text-align: center;
}

.footer-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 20px;
    }
}

/* DASHBOARD*/
.dashboard header{
    padding: 40px 20px;
    text-align: center;
}
/* CHECKLIST */
.checklist header {
    padding: 40px 20px;
    text-align: center;
}

.checklist-main {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    flex-wrap: wrap;
    justify-content: center;
}
.checklist-main h2 {
    display: flex;
    justify-content: center;
}

/* TABLE*/
#checklist {
    width: 100%;
    max-width: 600px;
    margin: 20px auto;
    border-collapse: collapse;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

#checklist th, #checklist td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

#checklist th {
    background-color: #336599;
    color: white;
    font-weight: 600;
}

#checklist tr:hover {
    background-color: #f5f5f5;
}

#checklist input[type="checkbox"] {
    transform: scale(1.2);
    margin-right: 10px;
}

.taak {
    font-weight: 500;
}

.checklist button {
    display: block;
    margin: 20px auto;
    padding: 10px 20px;
    background-color: #336599;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
}

/* LOGIN */
.login h1 {
    text-align: center;
    margin-top: 40px;
    color: #333;
}
.login-form {
    max-width: 400px;
    margin: 50px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.login-container button {
    width: 100%;
    padding: 10px;
    background-color: #336599;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}
