.emoji-box {
  display: flex;
  justify-content: space-around;
  align-items: center;
  border: 1px solid #fff;      /* small white border */
  padding: 10px;
  border-radius: 8px;
  background: #111;            /* subtle dark background */
  max-width: 400px;
  margin: 15px auto;
}

.emoji-wrapper {
  display: flex;
  align-items: center;
}

.emoji {
  width: 44px;
  cursor: pointer;
  background-color: ;      /* default grey */
  border-radius: 0px;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.emoji:hover {
  transform: scale(1.5);       /* small scale up */
  background-color: transparent; /* remove grey on hover */
}

.emoji.selected {
  background-color: ;      /* bright white when selected */
}

.emoji-count {
  margin-left: 6px;
  font-size: 14px;
  color: #fff;
}
#toastContainer {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}

.toast {
  background: white;
  color: black;
  padding: 10px 16px;
  margin-top: 8px;
  border-radius: 6px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}
