/* -------- LIGNE PRINCIPALE -------- */
.apprenti-row {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #ffffff;
  border: 1px solid #cccccc;
  border-radius: 8px;
  padding: 10px 15px;
  margin-bottom: 12px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

/* -------- COLONNE PHOTO -------- */
.apprenti-photo img.photo {
  width: 90px;
  height: 90px;
  border-radius: 8px;
  object-fit: cover;
}

/* -------- INFOS IDENTITAIRES -------- */
.apprenti-infos-id {
  flex: 1.2;
  min-width: 220px;
  line-height: 1.2;
}

.nom-ligne {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.nom-ligne .nom {
  font-weight: 800;
  color: #651c86;
  font-size: 1.2rem;
  text-transform: uppercase;
}

.linkedin-icon, .cv-icon {
  width: 20px;
  height: 20px;
  vertical-align: middle;
}

.opt {
  color: #a4133c;
  font-weight: 600;
}

.entreprise {
  color: #333;
  font-size: 0.9rem;
}

.rpma {
  font-size: 0.9rem;
  color: #444;
  margin-top: 2px;
}

.num-iad {
  font-size: 0.85rem;
  color: #c14a6b;
  margin-top: 3px;
}

/* -------- TRAVAUX / RÉSULTATS -------- */
.apprenti-travaux {
  flex: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 0.9rem;
  text-align: center;
}

.travaux-header, .travaux-body, .travaux-notes {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: center;
}

.travaux-header {
  background: #1f4f87;
  color: white;
  font-weight: 700;
  padding: 4px 0;
  font-size: 0.9rem;
}

.travaux-body {
  padding: 4px 0;
}

.travaux-body i {
  color: #009b3a;
  font-size: 1.3rem;
}

.travaux-notes span {
  font-size: 0.8rem;
  color: #555;
  padding-bottom: 2px;
}

/* -------- RESPONSIVE -------- */
@media (max-width: 800px) {
  .apprenti-row {
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
  }

  .apprenti-photo img.photo {
    width: 130px;
    height: 130px;
    margin: 0 auto;
  }

  .apprenti-infos-id {
    text-align: center;
    margin-top: 8px;
  }

  .apprenti-travaux {
    margin-top: 10px;
  }

  .travaux-header, .travaux-body, .travaux-notes {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* ---------- LIGNE PROJET ---------- */
.apprenti-projet {
  grid-column: 1 / -1;
  background: #1f4f87;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  padding: 6px 10px;
  border-radius: 0 0 6px 6px;
  margin-top: -4px;       /* colle visuellement à la ligne précédente */
}

.apprenti-projet .label {
  color: #fff;
  font-weight: bold;
  margin-right: 8px;
}


/* ---------- BLOC STAT2---------- */
.stats-container {
  margin: 25px auto;
  text-align: center;
  background: #f7f8fc;
  border-radius: 10px;
  padding: 20px;
  width: 95%;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

.stats-container h3 {
  margin-bottom: 12px;
  color: #1f4f87;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.stat-card {
  flex: 0 1 120px;
  text-align: center;
}

.stat-circle {
  position: relative;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: conic-gradient(#2fa84f calc(var(--p) * 1%), #ccc 0);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 8px auto;
  transition: background 0.5s;
}

.stat-circle .stat-number {
  font-weight: 700;
  color: #333;
  font-size: 1.1rem;
}

.stat-label {
  font-size: 0.9rem;
  font-weight: bold;
  color: #004aad;
}

.stat-small {
  font-size: 0.8rem;
  color: #666;
}


.eval-admin-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 3px;
}
.eval-admin-icons img {
    width: 50px;
    height: auto;
}

.eval-admin-fichs {
    display: flex;
    flex-wrap: wrap;
    gap: 3px;
}

.eval-admin-fichs img {
    width: 80px;
    height: auto;
}