.custom-message {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.2);
  padding: 8.5px 15px;
  margin-bottom: 8px;
  pointer-events: all;
  transition: all 0.3s;
}

.custom-message > .icon {
  margin-right: 8px;
  font-size: 16px;
}

.custom-message__content {
  font-size: 14px;
  color: #000;
  line-height: 18px;
  word-break: break-word;
  flex: 1;
}

.custom-message__closeBtn {
  margin-left: 10px;
  cursor: pointer;
  color: #999;
  font-size: 14px;
}

.custom-message__closeBtn:hover {
  color: #666;
}

.custom-message-container {
  position: fixed;
  top: 260px;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 9999;
  pointer-events: none;
}
