/* Třídy pro označení odpovědí */
.selected-correct {
    background-color: #d1e7dd !important;
    border-color: #198754 !important;
    color: #0f5132 !important;
    font-weight: bold;
}

.selected-wrong {
    background-color: #f8d7da !important;
    border-color: #dc3545 !important;
    color: #842029 !important;
}



/* zelený rameček a pole správná odpověď */
.correct-highlight {
    background-color: #d1e7dd !important; /* Světle zelené pozadí */
    border: 2px solid #198754 !important;    /* Zelený rámeček */
    color: #0f5132 !important;            /* Tmavě zelený text */
    font-weight: bold;
}

/* Styl pro navigační řádek */
.nav-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.next-btn {
    padding: 8px 25px;
    border-radius: 8px;
    border: none;
    background-color: #0d6efd;
    color: white;
    font-weight: bold;
    transition: 0.3s;
}

.next-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    opacity: 0.5;
}

.quiz-wrapper {
    max-width: 800px;
    margin: 20px auto;
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.question-row {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 20px;
    padding: 10px;
}
.answer-row {
    cursor: pointer;
    padding: 15px;
    border: 1px solid #dee2e6;
    margin-bottom: 10px;
    border-radius: 8px;
    transition: all 0.2s;
}
.answer-row:hover {
    background-color: #f8f9fa;
    border-color: #0d6efd;
}
