    body {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        padding: 30px;
        background-color: #f5f7fa;
        color: #222;
    }

    .form-container {
        margin-bottom: 30px;
    }

    input[type="text"] {
        width: 320px;
        padding: 10px 12px;
        margin-right: 12px;
        border: 1.8px solid #ccc;
        border-radius: 6px;
        font-size: 1rem;
    }

    input[type="text"]:focus {
        outline: none;
        border-color: #4a90e2;
        box-shadow: 0 0 8px rgba(74,144,226,0.5);
    }

    button {
        background-color: #4a90e2;
        color: white;
        border: none;
        padding: 10px 18px;
        border-radius: 6px;
        font-size: 1rem;
        cursor: pointer;
    }

    button:hover {
        background-color: #357ABD;
    }

    .section {
        margin-bottom: 32px;
        padding: 26px 30px;
        background-color: #ffffff !important;
        border-radius: 14px;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
        border: 1px solid #eaeaea;
    }

    .score-box {
        font-weight: 600;
        padding: 6px 14px;
        border-radius: 10px;
        color: white;
        font-size: 1.05rem;
        display: inline-block;
        min-width: 55px;
        text-align: center;
        user-select: none;
    }

    .score-green { background-color: #28a745; }
    .score-yellow { background-color: #ffc107; color: #222; }
    .score-orange { background-color: #fd7e14; }
    .score-red { background-color: #dc3545; }

    table {
        width: 100%;
        border-collapse: collapse;
        margin-top: 14px;
        font-size: 0.95rem;
    }

    th, td {
        text-align: left;
        padding: 12px 14px;
        border-bottom: 1px solid #e2e6ea;
    }

    th {
        background-color: #f0f3f7;
        font-weight: 700;
        color: #555;
    }

    ul {
        list-style-type: none;
        padding-left: 0;
    }

    ul li {
        margin-bottom: 6px;
    }

    .label {
        font-weight: 600;
        color: #333;
    }

    pre {
        background-color: #f8f9fa;
        padding: 15px 20px;
        border-radius: 10px;
        font-family: 'Courier New', Courier, monospace;
        font-size: 0.95rem;
        overflow-x: auto;
        border: 1px solid #ddd;
    }

    .yes {
        color: #28a745;
        font-weight: 600;
    }

    .no {
        color: #dc3545;
        font-weight: 600;
    }

    .collapsible {
    background-color: #3c678fd2;
    color: white;
    cursor: pointer;
    padding: 12px;
    width: 100%;
    text-align: left;
    outline: none;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    margin-top: 10px;
    transition: background-color 0.2s;
    }


    /* Uitklap */
    .collapsible:hover {
    background-color: #2980b9;
    }

    .collapsible.active {
    background-color: #3c678fd2;
    }

    .content {
    padding: 10px 15px;
    display: none;
    overflow: hidden;
    background-color: #f9f9f9;
    border-left: 3px solid #1abc9c;
    margin-bottom: 10px;
    border-radius: 4px;
    }


.content.always-open {
  display: block !important;
}

/* Extra toevoeging voor valid/invalid styling */
.content.valid {
  border-left: 3px solid #2ecc71;  /* Groen */
  background-color: #eafaf1;
}

.content.invalid {
  border-left: 3px solid #e74c3c;  /* Rood */
  background-color: #fdecea;
}

/* Als er een resultaat is, toon alle content-blokken */
#result-container.has-result .content {
  display: block !important;
}

.faq-container {
  max-height: 600px;
  overflow-y: auto;
  padding-right: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.card {
  background-color: white;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
  margin-bottom: 28px;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1em;
  table-layout: fixed;
}

th, td {
  border: 1px solid #ddd;
  padding: 0.5em 1em;
  text-align: left;
  width: 50%;
  overflow-wrap: break-word;
  word-break: break-word;
}

th {
  background-color: #f4f4f4;
  font-weight: bold;
}

.collapsible::after {
  content: "▼";
  float: right;
  transition: transform 0.3s;
}

.collapsible.active::after {
  transform: rotate(180deg);
}
.content {
  display: block !important;
}
