.pc-container {
    top: 10px !important;
    display: flex !important;
    justify-content: center !important;
    min-height: calc(100vh - 120px - 120px) !important;
    margin-left: 0;
}

.pc-content {
    width: 1200px !important; 
}

.pc-footer {
  top: 0px !important;
}

/* PAGE INDEX */
/* Styles de base pour la card */
.card-index {
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 16px;
    margin-bottom: 20px;
    display: grid;
    grid-template-columns: 1; /* Colonnes pour contenu principal et bouton */
    gap: 16px;
    align-items: start;
  }
  

.card-index:hover {
    transform: scale(1.02); /* Zoom de 5% */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Augmenter l'ombre */
}

.card-index .card-body {
    padding: 16px;
}

/* Ligne 1 : Label Template et Temps Total */
/* Ligne 1 : Titre et Timer */
.div__template-time {
    display: flex;
    justify-content: space-between;
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 12px;
  }

  .template-timer {
    color: #007bff;
    font-weight: bold;
  }

/* Ligne 2 : Formation et Niveau */
.div__training-level {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    margin-bottom: 12px;
  }
  
  .training-level {
    background-color: #007bff;
    color: #fff;
    border-radius: 4px;
    padding: 4px 8px;
  }

/* Ligne 3 : Thématiques et bouton Start */
.div__thematic-start {
    display: flex;
    justify-content: space-between;
    align-items: end;
  }

  .div__thematic-start li {
    margin-bottom: 16px; /* Augmente l'espacement entre les items */
  }
  
  .thematic-container {
    display: flex;
    flex-direction: column;
    gap: 8px; /* Espacement vertical entre les thématiques */
  }
  
  .thematic-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px; /* Espacement horizontal entre texte et badge */
  }
  
  .thematic-text {
    flex: 1; /* Prend tout l'espace disponible */
    word-wrap: break-word;
  }
  
  /* Badges */
  .badge {
    align-self: flex-start; /* Aligne chaque badge en haut */
    font-size: 0.7rem;
    padding: 4px 8px;
    border-radius: 5px;
    background-color: #6c757d; /* Couleur secondaire */
    color: #fff;
  }
  
  /* Bouton Start */
  .start-container {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .start-button {
    display: flex;
    align-items: end;
    padding: 10px 16px;
    font-size: 1rem;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  .start-button button {
    border-radius: 5px;
    padding-inline: 45px;
  }

  .thematicDescription {
    padding-block: 20px;
    font-size: 1.2em;
    line-height:1.6em;
    text-align: justify;
  }

  .titleTemplateContainer {
    margin-bottom: 30px;
  }

  .timerContainerThematic {
    margin-top: 40px;
  }

  .thematic-label {
    margin-bottom: 20px;
  }

  .thematic-label > h5 {
    font-weight: bold;
    font-size: 1.2em;
  }

  .thematic-question {
    margin-bottom: 20px;
  }

  .choiceQuestion {
    padding-block: 5px;
  }

  .form-check-input {
    font-size: 1.2em;
  }

/* END PAGE INDEX */

/* START TEST */
.carousel-item .card-body {
  min-height: 350px;
}

pre {
  text-align: left;
  /* Alignement du contenu */
}

pre[class*="language-"] {
  text-align: left;
  /* Gérer les blocs de code stylisés par Prism.js */
  padding: 15px;
  background: #f5f5f5;
  /* Exemple pour une couleur de fond claire */
  border-radius: 5px;
  border: 1px solid #ddd;
}

code {
  text-align: left;
  /* Gérer les styles internes au code */
}

code[class*=language-],pre[class*=language-] {
  white-space:break-spaces !important;
}
/* END START TEST */


/* ✅ Rendre l'overlay totalement noir et empêcher toute interaction */
.modal-backdrop.show {
  background-color: rgba(0, 0, 0, 1) !important; /* Noir opaque */
  opacity: 1 !important; /* Assure une opacité totale */
}

/* ✅ Désactiver toute interaction avec la page derrière le modal */
body.modal-open {
  pointer-events: none !important;
}

/* ✅ Rendre le contenu de la page totalement invisible derrière */
body.modal-open .pc-content {
  visibility: hidden !important;
}

.choiceQuestion {
  border: 1px solid #e4e4e4;
  padding: 10px;
  margin-bottom: 5px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  border-radius: 5px;
}

.choiceQuestion:hover {
  background-color: #f8f9fa;
}

.choiceQuestion.selected {
  background-color: #cce5ff;  /* couleur de sélection (bleu clair) */
  border-color: #004085;
}

.auth-wrapper.v1 .auth-form {
  background-image: none !important;
}

.auth-main {
  background-image: url(/images/fondSkillforge.jpg) !important;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.espace-candidat, .espace-admin {
  opacity: 0.9;
  margin: 40px;
}