/* Math Quiz Challenge Plugin Styles */

#mqc-container {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background: #f4f4f4;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

#mqc-container h2 {
    text-align: center;
    margin-bottom: 10px;
    color: #333;
}

#mqc-leaderboard {
    text-align: right;
    margin-bottom: 15px;
}

#mqc-leaderboard h3 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: #2c3e50;
}

#mqc-leaderboard ul {
    list-style: none;
    padding: 0;
    font-size: 0.9rem;
}

#mqc-leaderboard ul li {
    margin-bottom: 3px;
    color: #1abc9c;
}

#mqc-level-select {
    text-align: center;
    margin-bottom: 15px;
}

.mqc-level {
    background: #3498db;
    color: white;
    border: none;
    padding: 8px 14px;
    margin: 5px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
}

.mqc-level:hover {
    background: #2980b9;
}

#mqc-game {
    min-height: 200px;
    margin: 20px 0;
    background: white;
    border: 2px dashed #ddd;
    border-radius: 8px;
    padding: 15px;
    font-size: 1.2rem;
    color: #444;
    display: flex;
    align-items: center;
    justify-content: center;
}

#mqc-score {
    text-align: center;
    font-size: 1.1rem;
    font-weight: bold;
    color: #2c3e50;
}
