.oc-dock-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  color: #fff;
  border: none;
  border-radius: 8px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  outline: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 10px;
}

.oc-dock-button:hover {
  filter: brightness(85%);
}

.oc-dock-iframe {
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 1000;
  display: none;
  width: 360px;
  height: 460px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #fff;
}

