
.pl-dossiers-header {
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.pl-dossiers-grid {
  display:flex;
  gap:20px;
  flex-wrap:wrap;
}

.pl-dossier-card {
  width:120px;
  text-align:center;
}

.pl-dossier-card img {
  width:64px;
}

.pl-dossier-name {
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}



/* Boutons style "Nos services" en jaune */
.pl-btn-yellow,
.pl-create-dossier {
  background: #F6D66B;
  color: #000;
  border: none;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .08s ease, box-shadow .08s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.pl-btn-yellow:hover,
.pl-create-dossier:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.14);
}

/* Modal */
.pl-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  padding: 20px;
}

.pl-modal {
  width: 100%;
  max-width: 520px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.25);
  overflow: hidden;
}

.pl-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.pl-modal-header h3 {
  margin: 0;
  font-size: 20px;
}

.pl-modal-close {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: none;
  background: rgba(0,0,0,0.06);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

.pl-modal-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px 20px;
}

.pl-modal-body label {
  font-weight: 600;
  font-size: 14px;
  margin-top: 6px;
}

.pl-modal-body input,
.pl-modal-body textarea,
.pl-modal-body select {
  width: 100%;
  border: 1px solid rgba(0,0,0,0.18);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 14px;
}

.pl-modal-body textarea {
  min-height: 90px;
  resize: vertical;
}

.pl-modal-footer {
  padding: 16px 20px 22px;
  display: flex;
  justify-content: center;
}

/* Lock scroll background quand modal ouverte */
body.pl-modal-open {
  overflow: hidden;
}
