.floating-message-box {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 300px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--rounded-lg);
  padding: 15px 20px;
  font-size: 14px;
  z-index: 1000;
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 1;
  transform: translateY(0);
}

.floating-message-box p {
  margin: 0 0 10px;
  line-height: 1.5;
  color: var(--color-text-secondary);
}

.floating-message-box a {
  color: var(--color-text-primary);
  text-decoration: none;
}

.floating-message-box a:hover {
  opacity: 0.8;
}

.floating-message-box .close-messagebox {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 16px;
  color: var(--color-text-secondary);
  cursor: pointer;
}

.floating-message-box .close-messagebox:hover {
  color: var(--color-text-primary);
  opacity: 0.8;
}

/* Hide the message box when closed */
.floating-message-box.hidden {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}
