/* Algemene instellingen */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    margin: 0;
    padding: 20px;
    text-align: center;
}

/* Container */
.container {
    max-width: 600px;
    margin: 20px auto;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Formulieren */
form {
    margin: 10px 0;
}

input, button {
    padding: 10px;
    margin: 5px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

input {
    width: calc(100% - 22px);
}

button {
    background: #28a745;
    color: white;
    border: none;
    cursor: pointer;
}

button:hover {
    background: #218838;
}

/* Links */
a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* QR-codes */
.qr-container {
    text-align: center;
    margin-top: 10px;
}

/* Tabel weergave van links */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

table, th, td {
    border: 1px solid #ddd;
}

th, td {
    padding: 10px;
    text-align: left;
}

th {
    background: #007bff;
    color: white;
}

td img {
    width: 50px;
    height: 50px;
}

/* Logout link */
.logout {
    display: inline-block;
    margin: 10px 0;
    padding: 8px 12px;
    background: #dc3545;
    color: white;
    border-radius: 5px;
}

.logout:hover {
    background: #c82333;
}
