/* Modales (Bureau + demande conformité) */
.chat-modal,
.fiche-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  overflow: auto;
  background: rgba(0,0,0,0.4);
}

.chat-modal-content,
.fiche-modal-content {
  background: #fff;
  margin: 5% auto;
  padding: 20px;
  border-radius: 16px;
  max-width: 800px;
  width: 90%;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  position: relative;
}

.chat-modal-close,
.fiche-close {
  position: absolute;
  right: 15px; top: 10px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  border: 0;
  background: transparent;
}

/* Icones pièces */
.piece-icon {
  margin-right: 6px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.piece-icon sup {
  font-size: 10px;
  margin-left: 2px;
  position: relative;
  top: -4px;
}

/* Bouton demande conformité */
.btn-open-form {
  background: linear-gradient(135deg, #d19a00, #b88300);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  padding: 12px 24px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
}
.btn-open-form:hover {
  background: linear-gradient(135deg, #b88300, #8f6400);
}

/* Messages */
.wce-msg-success { color: #1d7a2d; }
.wce-msg-error { color: #b32d2e; }
