/*******************************************************/
/* R&R naar SDWorx conversie   © CIS-Websolutions 2026 */
/* Versie 1.0      maart 2026                          */
/* Auteur: Roland Leurs                                */
/* r.leurs@cis-websolutions.nl                         */
/*******************************************************/


body {
    margin: 0;
    font-family: Arial, sans-serif;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: #f5f5f5;
    border-bottom: 1px solid #ddd;
}

.header img {
    height: 150px;
}

.header h1 {
    margin: 0;
    font-size: 24px;
}

/* Tabs */
.tabs {
    display: flex;
    border-bottom: 1px solid #ccc;
    background: #eee;
}

.tab {
    padding: 12px 20px;
    cursor: pointer;
    border-right: 1px solid #ccc;
    user-select: none;
}

.tab.active {
    background: #fff;
    font-weight: bold;
}

/* Tab content area */
.tab-content {
    height: 60vh; /* 60% van het venster */
    overflow-y: auto;
    padding: 20px;
    display: none;
}

.tab-content.active {
    display: block;
}

.overzichttabel {
    width: 100%;
    border-collapse: collapse;
}

.overzichttabel th, .overzichttabel td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
    width: 15%;
}

.row {
    clear: both;
    border: 1px solid #ddd;
}

.label, .input {
    float: left;
    padding: 8px;
    text-align: left;
}

.head {
    font-weight: bold;
}

.label {
    width: 500px;
}

.input {
    width: 250px;
}

.button {
    margin-top: 25px;
    margin-left: 25px;
    width: 120px;
    height: 30px;
    border-radius: 0px;
}

#downloadbutton {
    position: relative;
    top: -55px;
    left: 300px;
}

.container {
    margin: 25px;
}

.header-text {
    text-align: center;
}

.header-text a {
    text-decoration: none;
    color: #007bff;
    font-size: 12px;
    font-style: italic;
}
