html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden; /* voorkomt horizontaal schuiven */
}
body {
    font-family: Arial, sans-serif;
    background: #fafafb;
    margin: 0;
    padding: 0;
}

.login-container {
    max-width: 300px;
    margin: 100px auto;
    padding: 20px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

h2 {
    text-align: center;
    color: #00a9dc;
}

label {
    display: block;
    margin-top: 10px;
    color: #000;
}

input[type=text], input[type=password] {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
select
{
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.remember {
    margin: 10px 0;
    font-size: 0.9em;
}

button {
    width: 100%;
    padding: 10px;
    background: #00a9dc;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
	box-sizing: border-box;
}
button:hover {
    background: #008bb6;
}
button {
    width: 100%;
    padding: 10px;
    margin: 10px 0; /* alleen verticaal */
}
button.small {
    width: auto;
    padding: 5px 10px;
    font-size: 1em;
    margin: 2px;
}

.error {
    color: red;
    text-align: center;
}
.topbar {
    background:#ffc300;
    color:#fff;
    padding:10px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}
.topbar .pagetitel, .topbar .pagetitel a {
    font-weight:bold;
    font-size:1.2em;
	color: white;
	text-decoration: none;
	vertical-align: middle;
}

.topbar .menu {
    position:relative;
}
.topbar .menu input {
    display:none;
}
.topbar .menu label {
    font-size:1.5em;
    cursor:pointer;
}
.topbar .menu ul {
    display:none;
    position:absolute;
    right:0;
    top:40px;
    background:#fff;
    color:#000;
    list-style:none;
    padding:0;
    margin:0;
    border:1px solid #ccc;
    border-radius:5px;
	width: 200px;
}
.topbar .menu input:checked + label + ul {
    display:block;
}
.topbar .menu ul li {
    padding:10px 20px;
}
.topbar .menu ul li a {
    color:#000;
    text-decoration:none;
}
.container {
    width: 90%;
    max-width: 600px;
    margin: 0 auto;
    padding: 10px;
    box-sizing: border-box;
}
input[type="number"]
{
	font-size: 15px;
	height: 2rem;
}
.exercise-list {
    margin: 15px 0;
    padding: 0;
}
.exercise-item {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px 15px;
    margin-bottom: 10px;
}
.exercise-item.inprogress
{
	background: #fd0;
}
.exercise-item strong {
    color: #00a9dc;
    font-size: 1.1em;
}
.exercise-details {
    margin-left: 10px;
    color: #333;
}
.edit-link {
    display: inline-block;
    margin-top: 5px;
    color: #00a9dc;
    text-decoration: none;
    font-weight: bold;
}
.edit-link:hover {
    text-decoration: underline;
}
.exercise-item {
    display: block;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px 15px;
    margin-bottom: 10px;
    text-decoration: none;
    color: inherit;
}
.exercise-item:hover {
    border-color: #00a9dc;
    background: #f0fbff;
    cursor: pointer;
}
.info-item {
    background: #f9f9f9;
    border: 1px dashed #bbb;
    border-radius: 5px;
    padding: 10px 15px;
    margin-bottom: 10px;
    color: #555;
}
.info-item strong {
    color: #333;
}
#logo {
    display: block;
    max-width: 90%;
    margin: 0 auto;   /* horizontaal centreren */
}
button.done {
    background: #d9f1ff; /* lichte blauw */
    color: #000;
}
button.done:hover {
    background: #c0e7ff;
}
button.in-program {
    position: relative;
    padding-left: 40px; /* ruimte voor icoon links */
	padding-right: 40px;
    background: #008bb6;
}

button.in-program:hover {
    background: #c0e7ff;
}

button.in-program .btn-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    width: 22px;
    height: 22px;
    transform: translateY(-50%);
}



button.navigatie
{
    background: #000; /* lichte blauw */
    color: #fff;
}
button.gereed
{
    background: #28a745; 
    color: #fff;
}
button.gereed:hover {
    background: #218838;   /* donkerder groen bij hover */
}
button.verwijderen
{
	background:#c00;
	color:#fff
}
.btn-icon {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right: 6px; /* ruimte tussen icon en tekst */
}
.header-icon {
  width: 28px;
  height: 28px;
  vertical-align: middle;
  margin-right: 6px; /* ruimte tussen icon en tekst */
}