/* ============================================
   MODAL - Fenêtres modales
   ============================================ */

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  animation: fadeIn 0.3s ease;
}

.modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: #252535;
  padding: 30px;
  border-radius: 16px;
  width: 90%;
  max-width: 400px;
  position: relative;
  border: 1px solid #00c27a;
  box-shadow: 0 0 30px rgba(0, 194, 122, 0.3);
}

.modal-content h2 {
  margin-bottom: 20px;
  color: #00ffa3;
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
  color: #888;
  transition: color 0.3s;
}

.close-modal:hover {
  color: #f44336;
}
