
/* ===== mathgame/templates/mathgame/number.html ===== */
.problem-display { font-size: 2.5rem; font-weight: bold; }
.timer { font-size: 1.5rem; font-weight: bold; }

/* ===== mathgame/templates/mathgame/fraction.html ===== */
.problem-display { font-size: 2.5rem; font-weight: bold; }
.timer { font-size: 1.5rem; font-weight: bold; }

/* ===== mathgame/templates/mathgame/game.html ===== */
.game-container {
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .problem-display {
    font-size: 2.5rem;
    font-weight: bold;
  }
  
  .difficulty-btn {
    margin: 0 5px;
  }
  
  .leaderboard-table {
    margin-top: 20px;
  }
  
  .timer {
    font-size: 1.5rem;
    font-weight: bold;
  }
  
  .correct {
    color: #32d296;
  }
  
  .incorrect {
    color: #f0506e;
  }
  
  .leaderboard-row {
    cursor: pointer;
  }
  
  .leaderboard-row:hover {
    background-color: #f8f8f8;
  }

/* ===== mathgame/templates/mathgame/index.html ===== */
.game-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .game-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
  }
  
  .difficulty-btn {
    margin: 0 2px;
    font-size: 0.85rem;
  }
  
  .uk-card-title {
    font-weight: 600;
  }
  
  .uk-card-body {
    padding: 30px;
  }
  
  .game-description {
    min-height: 50px;
  }
  .uk-container
  {
    padding-left: 20px;
    padding-right: 20px;
  }

/* ===== mathgame/templates/mathgame/basic.html ===== */
.problem-display { font-size: 2.5rem; font-weight: bold; }
.timer { font-size: 1.5rem; font-weight: bold; }

/* ===== mathgame/templates/mathgame/binary.html ===== */
.problem-display { font-size: 2.5rem; font-weight: bold; }
.timer { font-size: 1.5rem; font-weight: bold; }

/* ===== mathgame/templates/mathgame/decimal.html ===== */
.problem-display { font-size: 2.5rem; font-weight: bold; }
.timer { font-size: 1.5rem; font-weight: bold; }
