/* Inputs & buttons for dynamic pages */
#quiz-topic, #quiz-marks, #summary-topic, #practice-topic {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 12px;
    border: 1px solid #ccc;
}

#generate-quiz-btn, #summarize-btn, #generate-practice-btn {
    padding: 10px 16px;
    border-radius: 12px;
    border: none;
    background-color: #3B82F6;
    color: white;
    cursor: pointer;
    margin-bottom: 10px;
}

/* Quiz/Practice cards */
.question-card {
    background: #f1f5f9;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.options button {
    display: block;
    width: 100%;
    padding: 10px;
    margin-top: 8px;
    border-radius: 8px;
    border: 1px solid #ccc;
    background-color: white;
    cursor: pointer;
    transition: background 0.3s;
}

.options button:hover {
    background-color: #3B82F6;
    color: white;
}
