.rmwp-button-wrap {
  text-align: center;
  width: 100%;
  display: flex;
  justify-content: center;
  /* Ensures the button is centered horizontally */
  align-items: center;
  /* Vertically centers the button within the container */
}

.rmwp-button-wrap button {
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: white;
  /* Білий фон */
  color: black;
  /* Чорний текст */
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s, color 0.3s;
  padding: 15px 30px;
  /* Adds some padding for better button appearance */
}

.rmwp-button-wrap button.open,
.rmwp-button-wrap button:hover {
  color: #212529;
  background-color: #e2e6ea;
  border-color: #dae0e5;
}