/* Minecraft pixel-lettertype */
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

/* Basis */
body {
    font-family: 'Press Start 2P', monospace;
    background: #ffffff;
    color: #000000;
    padding: 2em;
}

/* Headers */
h1, h2 {
    color: #0000ff;
    text-shadow: 2px 2px 0 #aaaaaa;
}

/* Layout */
#mc div {
    float: left;
}

/* Buttons */
button {
    font-family: inherit;
    background: #00cc00;
    color: #ffffff;
    border: 3px solid #000000;
    padding: 10px 15px;
    margin: 0.5em 0;
    cursor: pointer;
    text-transform: uppercase;
    text-shadow: 1px 1px 0 #000000;
    display: block;
}

button:hover {
    background: #55ff55;
}

/* Form elementen */
input,
select {
    font-family: inherit;
    background: #eeeeee;
    color: #000000;
    border: 3px solid #000000;
    padding: 8px;
    margin: 0.5em 0;
    display: block;
}

input:focus,
select:focus {
    border-color: #0000ff;
    outline: none;
}

/* Tabs */
.tabs {
    margin-bottom: 1em;
}

.tab {
    font-family: inherit;
    display: inline-block;
    padding: 0.5em 1em;
    border: 3px solid #000000;
    background: #cccccc;
    cursor: pointer;
    text-transform: uppercase;
    text-shadow: 1px 1px 0 #000000;
}

.tab.active {
    background: #ffffff;
}

/* Tab inhoud */
.tabcontent {
    display: none;
    margin-top: 1em;
}

.tabcontent.active {
    display: block;
}

/* Feedback */
.correct {
    color: green;
    font-weight: bold;
}

.wrong {
    color: red;
    font-weight: bold;
}

.button-score-wrapper {
    margin-top: 20px;
    clear: both;
    display: block;
}


#pc {
    display: flex;          /* maakt kinderen flex-items */
    gap: 20px;              /* ruimte tussen left en right */
    align-items: stretch;   /* zorgt dat beide even hoog zijn */
}

.left, .right {
    display: none;
    flex: 1;                /* beide even breed */
    box-sizing: border-box; /* padding telt mee in breedte */
    padding: 10px;
    flex-direction: column;    /* stapel items verticaal */
    justify-content: flex-end; /* push de inhoud naar de onderkant */

}