/* === CSS/DEBAT_STYLES.CSS (of voeg toe aan style.css) === */

/* Styling voor de Bouwstenen sectie */
.bouwsteen-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px; /* Ruimte tussen de blokken */
    margin-top: 15px;
}

.bouwsteen {
    flex: 1 1 250px; /* Flexibel, basis 250px, laat krimpen/groeien */
    background-color: #5c6bc0; /* Iets andere kleur dan algemene sectie */
    padding: 15px;
    border: 2px solid #7986cb;
    box-shadow: 3px 3px 0px #3f51b5;
    min-height: 100px; /* Minimale hoogte */
}

.bouwsteen h4 {
    color: #ffeb3b; /* Gele titel */
    margin-top: 0;
    margin-bottom: 10px;
    border-bottom: 1px solid #9fa8da;
    padding-bottom: 5px;
}

/* Styling voor de Tips lijst */
.tips-lijst {
    list-style-type: '👍'; /* Emoji als list-style (werkt in moderne browsers) */
    padding-left: 30px;
}
.tips-lijst li {
    padding-left: 10px;
    margin-bottom: 8px;
}

/* Styling voor de Oefeningen */
.oefening-box {
    background-color: #e8eaf6;
    color: #1a237e;
    padding: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    border: 3px dashed #7986cb;
    box-shadow: 4px 4px 0px #5c6bc0;
}
.oefening-box h4 {
    color: #3f51b5;
    margin-top: 0;
    margin-bottom: 15px;
}
.oefening-box button.uitleg-knop {
    background-color: #fb8c00; /* Oranje knop voor oefeningen */
    border-color: #ffb74d;
    box-shadow: 2px 2px 0px #ef6c00;
}
.oefening-box button.uitleg-knop:hover {
    background-color: #ffa726;
    box-shadow: 1px 1px 0px #ef6c00;
}
.oefening-box #antwoord-oef1 { /* Specifieke styling antwoordbox */
    background-color: #ffffff;
    border-color: #fb8c00;
}


/* Basis styling voor het (nog te bouwen) spel */
#debat-game-container {
    border: 3px solid #d81b60; /* Roze rand voor game container */
    padding: 15px;
    background-color: #fce4ec; /* Heel licht roze achtergrond */
    color: #333; /* Donkerdere tekst voor leesbaarheid */
    min-height: 150px; /* Minimale hoogte voor de container */
    margin-top: 20px;
}

/* Voorbeeld styling voor spel elementen (uit debat_game.js) */
.game-teams {
    display: flex;
    justify-content: space-around;
    margin-bottom: 15px;
}
.game-teams div {
    border: 2px solid #ad1457;
    padding: 10px;
    width: 45%;
    text-align: center;
    background-color: #f8bbd0;
}
#argumenten-stapel {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.argument-kaart {
    background-color: #fff;
    border: 2px solid #ccc;
    padding: 10px;
    cursor: pointer;
    transition: background-color 0.2s;
    box-shadow: 2px 2px 0px #e0e0e0;
}
.argument-kaart:hover {
    background-color: #f5f5f5;
    border-color: #ad1457;
}
#game-feedback {
    display: none; /* Standaard verborgen */
    margin-top: 15px;
    padding: 10px;
    font-weight: bold;
    text-align: center;
    background-color: #fff9c4; /* Licht geel voor feedback */
    border: 2px solid #fbc02d;
    color: #3f51b5;
}