/* Basic Plugin Layout Styles */

#quiz-container {
    max-width: 600px;
    margin: 20px auto;
    background: #fdfdfd;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    font-family: Arial, sans-serif;
}

#quiz-header {
    text-align: right;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

#timer-display {
    color: #e74c3c;
    font-weight: bold;
    font-family: monospace;
    font-size: 1.2em;
}

#question-text {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #333;
    line-height: 1.5;
}

.options-container {
    margin-bottom: 20px;
}

.quiz-option {
    display: block;
    background: #f1f1f1;
    margin: 10px 0;
    padding: 12px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.quiz-option:hover {
    background: #e1e1e1;
}

.quiz-option input[type="radio"] {
    margin-right: 10px;
}

.quiz-btn {
    background-color: #0073aa;
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    margin-top: 10px;
}

.quiz-btn:hover {
    background-color: #005177;
}

#quiz-results {
    text-align: center;
    padding: 20px 0;
}

#quiz-results h2 {
    color: #27ae60;
    margin-bottom: 20px;
}

#quiz-results p {
    font-size: 1.1em;
    margin-bottom: 10px;
}
