/* quiz-style.css */
.quiz-score-container {
    width: 100%;
    max-width: 450px;
    margin: 15px auto;
    font-family: "Noto Sans JP", sans-serif;
    text-align: left;
}

/* ─────────────── スタイリッシュ表デザイン ─────────────── */
.quiz-score-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border: none;
    font-size: 16px;
}

.quiz-score-table thead th {
    background: linear-gradient(135deg, #4e73df, #224abe);
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    padding: 12px;
}

.quiz-score-table tbody tr:nth-child(even) {
    background: #f9f9f9;
}

.quiz-score-table tbody tr:hover {
    background: rgba(0, 123, 255, 0.1);
}

.quiz-score-table td {
    padding: 10px 14px;
    border-bottom: 1px solid #e1e1e1;
}

.quiz-score-container h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #333;
    text-align: center;
}

/* 成績未登録時のメッセージ */
.quiz-score-container .no-score {
    font-size: 18px;
    font-style: italic;
    color: #888;
    text-align: center;
    margin-top: 20px;
}

/* スコアリセットボタン用 */
.quiz-reset-form {
    display: none;
    justify-content: center;
    align-items: center;
    gap: 10px;
    max-width: 350px;
    margin: 15px auto 30px auto;
    font-family: "Noto Sans JP", sans-serif;
}

.quiz-reset-form input[type="password"] {
    flex-grow: 1;
    padding: 6px 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 14px;
}

.quiz-reset-form button {
    padding: 8px 16px;
    background: #dc3545;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 14px;
}

.quiz-reset-form button:hover {
    background-color: #a71d2a;
}

#quiz-reset-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #dc3545;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    margin: 20px auto;
    display: block;
    max-width: 350px;
}

#quiz-reset-btn:hover {
    background-color: #a71d2a;
}