/**
 * @file
 * Centralized message bubble styles for BV Shopify Portal.
 */

.portal-messages-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.portal-message {
  position: relative;
  padding: 1rem 1.5rem;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  max-width: 400px;
  animation: slideInPortal 0.3s ease;
  color: #fff;
  pointer-events: auto;
}

@keyframes slideInPortal {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.success-notification {
  background-color: #459647;
}

.error-notification {
  background-color: #ff5252;
}

.warning-notification {
  background-color: #e9a415;
}

/* Responsive design */
@media (max-width: 768px) {
  .portal-messages-container {
    left: 20px;
    right: 20px;
  }
  .portal-message {
    max-width: none;
    width: 100%;
  }
}
