body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #f0f2f5;
    margin: 0;
}
.form-body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.form-container, .welcome-container {
    background-color: white;
    padding: 2rem 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
}
.dashboard-container {
    background-color: white;
    padding: 2rem 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    width: 100%;
    max-width: 900px;
    text-align: left;
    margin: 2rem auto;
}
.cve-item {
    border: 1px solid #eee;
    padding: 1rem;
    margin-bottom: 0.5rem;
    border-radius: 6px;
    background-color: #fff;
}
.cve-header {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cve-header::after {
    content: '\002B'; /* Plus sign */
    font-size: 1.5rem;
    color: #007bff;
    transition: transform 0.2s ease-in-out;
}
.cve-item.active .cve-header::after {
    content: "\2212"; /* Minus sign */
    transform: rotate(180deg);
}
.cve-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}
.cve-item.active .cve-details {
    max-height: 200px; /* Adjust if descriptions are longer */
    padding-top: 1rem;
}
.cve-date {
    font-size: 0.8rem;
    color: #6c757d;
}
.header-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}
.filter-section {
    background-color: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border: 1px solid #eee;
}
.filter-columns {
    display: flex;
    gap: 1.5rem;
}
.vendor-column {
    flex: 1;
}
.vendor-list {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 0.5rem;
    min-height: 150px;
    max-height: 250px; /* Ongeveer 10 items, daarna scrollen */
    overflow-y: auto;
}
.filter-search {
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-sizing: border-box;
}
.draggable {
    background-color: #e9ecef;
    padding: 0.5rem 0.8rem;
    margin: 0.3rem;
    border-radius: 4px;
    cursor: grab;
}
.draggable.dragging {
    opacity: 0.5;
}
.draggable.new-vendor {
    background-color: #d4edda; /* Lichtgroen om op te vallen */
    border: 1px solid #c3e6cb;
}
.filter-actions {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
}
h1 { color: #1c1e21; font-size: 2rem; margin-bottom: 1.5rem; }
p { font-size: 1.1rem; color: #606770; }
a { color: #007bff; text-decoration: none; }
a:hover { text-decoration: underline; }
.form-link { margin-top: 1.5rem; font-size: 0.9rem; }
.error { color: #d93025; background-color: #f8d7da; border: 1px solid #f5c6cb; padding: 0.75rem; border-radius: 6px; text-align: center; margin-bottom: 1rem; }
.success { color: #155724; background-color: #d4edda; border: 1px solid #c3e6cb; padding: 0.75rem; border-radius: 6px; text-align: center; margin-bottom: 1rem; }
label { font-weight: 600; display: block; margin-bottom: 0.5rem; text-align: left; }
input[type="text"], input[type="password"], textarea, input[type="date"] { width: 100%; padding: 0.8rem; margin-bottom: 1rem; border: 1px solid #dddfe2; border-radius: 6px; box-sizing: border-box; font-size: 1rem; font-family: inherit; }
button { width: 100%; padding: 0.8rem; background-color: #007bff; color: white; border: none; border-radius: 6px; cursor: pointer; font-size: 1.1rem; font-weight: 600; }
button:hover { background-color: #0069d9; }
.button-link {
    padding: 0.6rem 1rem;
    background-color: #28a745;
    color: white;
    border-radius: 6px;
    font-weight: 600;
}
.button-link:hover {
    background-color: #218838;
    text-decoration: none;
}
.danger-zone {
    border-color: #dc3545;
}
.danger-text {
    color: #dc3545;
}
.danger-button {
    background-color: #dc3545;
}
.danger-button:hover {
    background-color: #c82333;
}
.user-table-container table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}
.user-table-container th, .user-table-container td {
    border: 1px solid #ddd;
    padding: 0.8rem;
    text-align: left;
}
.user-table-container th {
    background-color: #f2f2f2;
}
.user-table-container tr:nth-child(even) {
    background-color: #f9f9f9;
}
.user-table-container select {
    padding: 0.4rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}