
body {
    font-family: sans-serif;
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
    background-color: #f5f5f5;
    color: #333;
}

input[type="password"], input[type="submit"] {
    padding: 10px;
    width: 100%;
    margin-bottom: 15px;
    font-size: 16px;
    box-sizing: border-box;
}

input[type="submit"] {
    background-color: #0078D7;
    color: white;
    border: none;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #005a9e;
}

.error {
    color: red;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    font-size: 14px;
}

th, td {
    border: 1px solid #999;
    padding: 8px;
    text-align: left;
    word-wrap: break-word;
}

th {
    background-color: #ddd;
}

@media screen and (max-width: 600px) {
    table, thead, tbody, th, td, tr {
        display: block;
    }
    thead tr {
        display: none;
    }
    td {
        position: relative;
        padding-left: 50%;
    }
    td::before {
        position: absolute;
        top: 8px;
        left: 8px;
        width: 45%;
        white-space: nowrap;
        font-weight: bold;
    }
    td:nth-of-type(1)::before { content: "Tagnummer"; }
    td:nth-of-type(2)::before { content: "Beslaggrond"; }
    td:nth-of-type(3)::before { content: "Status"; }
    td:nth-of-type(4)::before { content: "Datum inbeslagname"; }
    td:nth-of-type(5)::before { content: "Acties"; }
}
