

/* ========== Zone de Préparation Future ========== */
  .kit-zone {
      max-width: 800px;
      margin: 50px auto;
      padding: 20px;
      background-color: var(--theme-footer);
      border: 1px dashed var(--theme-text);
      box-shadow: 0 2px 2px var(--theme-text);
      border-radius: 10px;
  }

  /* Style pour la description */
  .kit-placeholder {
      background-color: var(--theme-background);
      border-radius: 5px;
      padding: 10px;
      margin-bottom: 10px;
      font-size: 1.1em;
      line-height: 1.4;
  }    


  /* Style pour le titre geant  du défi */
  #quizChallengeTitleGeant {
    color: var(--theme-text);
    text-align: center;
    font-size: 4.0em;
    margin-bottom: 5px;
  }

  /* Style pour le titre du défi */
  #quizChallengeTitle {
    color: var(--theme-text);
    text-align: center;
    font-size: 1.8em;
    margin-bottom: 20px;
  }






  /* Style pour le tableau de scoring */
  #scoringTable {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
    border: 1px solid var(--theme-text);
  }

  #scoringTable th, #scoringTable td {
    padding: 10px;
    text-align: left;
    border: 1px solid var(--theme-text);
  }

  #scoringTable th {
    background-color: var(--theme-secondary);
    font-weight: bold;
  }

  #scoringTable td {
    background-color: var(--theme-primary);
    color: var(--theme-tertiary);
    font-weight: bold;
  }



  /* Style pour l'iframe du quiz */
  #quizFrame {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 8px;
    margin: 20px 0;
  }

  /* Style pour le sous-titre */
  .kit-placeholder[style*="italic"] {
    font-size: 1.2em;
    color: var(--theme-text-secondary);
    margin-top: 20px;
  }