@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700;900&display=swap');

body {
    font-family: 'Roboto', Arial, sans-serif !important;
    font-weight: 900 !important;
    color: #DFB358;
    margin: 0;
    padding: 0;
}

#main {
    background: url('images/Asset 1.png') center center fixed repeat;
    background-size: cover;
    min-height: 100vh;
    width: 100%;
}

h1 {
    font-size: 4vh;
    text-align: center;
    -webkit-text-stroke: 0.1vh #000;
    margin-top: 2vh;
}

h2 {
    font-size: 3vh;
    text-align: center;
    -webkit-text-stroke: 0.05vh #000;
}

h3 {
    font-size: 2.5vh;
}

p, li, label {
    font-size: 2vh;
	color: #000;
}

label {
    font-weight: 900;
}

button,
input[type="submit"] {
    background-color: #6F553B;
    border-radius: 1vh;
    border: none;
    color: white;
    padding: 0.5vh 2vh;
    font-size: 1.8vh;
    font-weight: 900;
    transition: background-color 0.2s, color 0.2s;
    margin: 0.5vh auto;
    display: block;
    cursor: pointer;
}

button:hover,
input[type="submit"]:hover {
    background-color: #8F755B;
    color: #fff;
}

#groep_id, #check_type, select {
    width: 30vh;
    padding: 1vh;
    font-size: 2vh;
    border-radius: 1vh;
    border: 0.3vh solid #6F553B;
    background-color: #fff8e1;
    color: #6F553B;
    margin-bottom: 2vh;
    font-weight: 900;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    transition: border-color 0.2s, box-shadow 0.2s;
}

#groep_id:focus, #check_type:focus, select:focus {
    border-color: #DFB358;
    box-shadow: 0 0 8px #DFB35855;
}

/* Make all textboxes, selects, and textareas look the same everywhere */
input[type="text"],
input[type="number"],
input[type="password"],
select,
textarea {
    background-color: #222;
    margin: 1vh auto;
    border-radius: 2vh;
    border: 0.8vh solid white;
    height: 6vh;
    width: 100%;
    text-align: center;
    font-size: 2vh;
    color: #fff;
    display: block;
    box-sizing: border-box;
    font-weight: 900;
}

/* Ensure form containers have a consistent width */
#login,
#form,
.container form {
    width: 45vh;
    max-width: 100%;
    margin: 0 auto;
}

input[type="checkbox"] {
    width: 1.5vh;
    height: 1.5vh;
}

#login {
    height: 80vh;
    width: 45vh;
    margin: 10vh auto;
}

#form {
    display: table;
    margin: 0 auto;
    width: 100%;
}

#logo {
    width: 20vh;
    margin: auto;
    display: block;
}

#tasklist {
    width: 40vh;
}

#task {
    width: 38vh;
    background-color: #ddd;
    border: 0.5vh solid #888;
    border-radius: 1vh;
    margin: 1vh;
    padding: 0.5vh;
    font-size: 2vh;
    font-weight: 900;
}

#taskstatus {
    text-align: right;
}

.status-0 {
    font-weight: 900;
}

.status-1 {
    font-weight: 900;
    background-color: #6f6 !important;
}

.status-2 {
    font-weight: 900;
    background-color: #f66 !important;
}

#netwerk {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

#sub {
    width: 40vh;
    margin: 3vh auto;
    background-color: #bbb;
    padding: 1vh;
    border-radius: 1vh;
    box-shadow: 0 0 5px black;
    border: 0.8vh solid #666;
    -webkit-text-stroke-color: #000;
    -webkit-text-fill-color: #fff;
    -webkit-text-stroke-width: 0.1vh;
    font-weight: 900;
}

#bar {
    height: 3vh;
    background-color: #2E402E;
    border: 0.5vh solid #ddd;
    margin: 0 auto;
    margin-top: 3vh;
    width: 40vh;
}

#progress {
    font-size: 2vh;
    height: 3vh;
    line-height: 3vh;
    padding-left: 1vh;
    border-radius: 0;
    background-color: #43D844;
    -webkit-text-stroke-color: #000;
    -webkit-text-fill-color: #fff;
    -webkit-text-stroke-width: 0.1vh;
    box-sizing: border-box;
}

#name {
    font-size: 2.5vh;
    text-shadow: 0 0 15px #5A2D00, 0 0 5px black;
}

td, th {
    font-size: 1.8vh;
}

.wcont {
    overflow: auto;
    height: 75vh;
}

/* Ensure form containers have a consistent width */
#login,
#form,
.container form {
    width: 45vh;
    max-width: 100%;
    margin: 0 auto;
}

#index-bg {
    background: url('images/Achtergrond.jpg') center center fixed no-repeat;
    background-size: cover;
	min-height: 100vh;
    width: 100%;
}

.dashboard-btn {
    display: inline-block;
    margin: 1vh 2vh 1vh 0;
    padding: 1vh 3vh;
    background: #6F553B;
    color: #fff;
    border-radius: 1vh;
    text-decoration: none;
    font-weight: bold;
    font-size: 2vh;
    transition: background 0.2s;
}
.dashboard-btn:hover {
    background: #8F755B;
}

/* Make footer text smaller */
footer, #footer, .footer {
    font-size: 0.8vh;
    color: #444;
    text-align: center;
    margin-top: 3vh;
}