body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: black;
    font-family: Arial, sans-serif;
    color: #ccc;
}

.container {
    max-width: 900px;
    margin: auto;
    padding: 20px;
    flex: 1;
}

/* SECTIONS */
section {
    margin: 30px 0;
    padding: 20px;
    border-radius: 15px;
    background-color: #3f3f3f;
    box-shadow: 0 6px 20px rgba(37, 117, 252, 0.4);
}

h1 {
    text-align: center;
    color: #2575fc;
}

h2 {
    margin-bottom: 15px;
}

/* FORM (inner donkere box) */
form {
    display: flex;
    flex-direction: column;
    gap: 12px;

    padding: 12px;
    border-radius: 12px;
    background-color: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* LABEL + INPUT */
.form-row {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
}

.form-row label {
    width: 140px;
    font-weight: bold;
    text-align: left;
}

/* INPUTS */
input {
    width: 100%;
    padding: 10px;
    background-color: rgb(40, 40, 40);
    color: rgb(255, 255, 255);

    border: 2px solid rgb(90, 90, 90);
    border-radius: 10px;

    font-size: 14px;
    transition: all 0.3s ease;
}

/* 🔥 dit zorgt dat inputs echt maximaal breed worden */
.form-row input {
    flex: 1;
}

input::placeholder {
    color: rgb(150, 150, 150);
}

input:focus {
    outline: none;
    border-color: rgb(37, 117, 252);
    box-shadow: 0 0 12px rgba(37, 117, 252, 0.6);
    background-color: rgb(30, 30, 30);
}

/* BUTTONS */
button {
    padding: 12px 16px;
    font-weight: bold;
    color: white;
    background: linear-gradient(135deg, #6a11cb, #2575fc);

    border: none;
    border-radius: 10px;
    cursor: pointer;

    box-shadow: 0 6px 18px rgba(37, 117, 252, 0.4);
    transition: all 0.3s ease;

    width: 100%;
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(37, 117, 252, 0.6);
}

button:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(37, 117, 252, 0.4);
}

/* INLINE FORM (verwijderen items) */
.inline-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}

/* FIX: alles links */
.inline-form .form-row {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
}

.inline-form label {
    width: 100% !important;
    text-align: left;
    font-weight: bold;
}

/* FOOTER */
footer {
    margin-top: 60px;
    padding: 24px 16px;
    text-align: center;
    font-size: 14px;
    color: rgb(180, 180, 180);
    background-color: rgb(25, 25, 25);
    border-top: 2px solid rgb(37, 117, 252, 0.6);
    box-shadow: 0 -8px 24px rgba(37, 117, 252, 0.4);
}

footer p {
    margin: 10px;
    font-weight: bold;
    color: rgb(37, 117, 252);
}

/* NAV */
nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    background-color: rgb(50, 50, 50);
    padding: 8px;
    border-radius: 12px;
    margin-bottom: 1px;
}

nav a {
    padding: 8px 16px;
    border-radius: 10px;
    background-color: rgb(80, 80, 80);
    text-decoration: none;
    color: white;
    transition: 0.3s;
}

nav a:hover {
    background-color: rgb(37, 117, 252);
    color: white;
}

/* HR */
hr {
    border: none;
    height: 2px;
    margin: 40px 20px;

    background: linear-gradient(90deg,
            transparent,
            rgba(37, 117, 252, 0.8),
            transparent);
}

/* ========================================== */

/* FILE INPUT VERSTOPPEN */
#foto-input {
    display: none;
}

input[type="file"] {
    display: none !important;
}

/* UPLOAD WRAPPER */
/* UPLOAD BOX */
/* .file-upload-wrapper {
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.upload-box {
    display: block;
    width: 100%;
    padding: 18px;
    border-radius: 12px;

    background-color: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.08);

    cursor: pointer;
    transition: all 0.25s ease;
} */


/* CONTENT */
.upload-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

/* ICON */
.upload-icon {
    font-size: 22px;
}

/* TEXT */
.upload-text {
    font-weight: bold;
    color: #ccc;
}

/* FILE NAME */
#file-name {
    font-size: 13px;
    color: #888;
}

/* HOVER */
.upload-box:hover {
    border-color: #2575fc;
    background-color: rgba(37, 117, 252, 0.08);
    box-shadow: 0 0 15px rgba(37, 117, 252, 0.4);
}

/* ACTIVE */
.upload-box.active {
    border-color: #4caf50;
    background-color: rgba(76, 175, 80, 0.1);
}

.form-row .file-upload-wrapper {
    flex: 1;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-row .upload-box {
    width: 95.2%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    padding: 18px;
    border-radius: 12px;

    background-color: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.08);

    cursor: pointer;
    transition: all 0.25s ease;
}