body.page-background {
    background-color: #f3f4f6;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    font-family: sans-serif;
}

.container {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 0.5rem;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.title {
    font-size: 1.75rem;
    font-weight: bold;
    color: #1d4ed8; /* blauw */
    margin-bottom: 1.5rem;
}

.input {
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 0.375rem;
    margin-bottom: 1rem;
}

.subtle-error-message {
    color: red;
    font-weight: normal;
    margin: 10px 0;
    font-style: italic;
}

.button-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .button-group {
        flex-direction: row;
        justify-content: center;
    }
}

.btn {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: bold;
    color: white;
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-blue {
    background-color: #2563eb;
}
.btn-blue:hover {
    background-color: #1d4ed8;
}

.btn-green {
    background-color: #22c55e;
}
.btn-green:hover {
    background-color: #16a34a;
}

.status-message {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: #374151;
}

.download-link {
    display: inline-block;
    margin-top: 1rem;
    background-color: #6366f1;
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 0.375rem;
    font-weight: bold;
    text-decoration: none;
}

.download-link:hover {
    background-color: #4f46e5;
}
.subtle-link {
    display: inline-block;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #666;
    text-decoration: none;
    font-style: italic;
}

.subtle-link:hover {
    text-decoration: underline;
    color: #444;
}

.hidden {
    display: none;
}

