#characters {
  display: grid;
  grid-template-columns: repeat(7, 1fr); /* 10 equal flexible columns */
  gap: 10px;
}

#characters > div {
  display: flex;
  justify-content: center;
  align-items: center;
}

#characters img {
  width: 100%;      /* scale to fit cell */
  max-width: 120px; /* prevent it from growing too big */
  height: auto;     /* keep aspect ratio */
  display: block;
}

#addchrms{
  text-align: center;
  width: 360px;
  margin: auto;
  margin-top: 30px;
  background: green;
  display: none;
  border-radius: 10px;
  padding: 10px;
  cursor: pointer;
}
#addchrms span{
  font-weight: bold;
}

#chrmnote{
  text-align: center;
  font-size: 12px;
  color: orangered;
  display: none;
  padding: 10px 0px;
}

ul#menu-menu-left li.menu-item-2438 a, ul#menu-menu-left li.menu-item-2218 a, ul#menu-menu-left li.menu-item-2399 a{
    color: #999;
}