/**
 * AI360Chat Trigger Styles
 *
 * Minimal styling for the trigger shortcode and block.
 *
 * @package AI360Chat
 * @subpackage Addons
 */

/* Wrapper for alignment */
.ai360chat-trigger-wrapper {
  display: inline-block;
}

/* Base trigger button styles */
.ai360chat-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  text-decoration: none;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
  background-color: #25D366;
  color: #ffffff;
}

.ai360chat-trigger:hover,
.ai360chat-trigger:focus {
  background-color: #128C7E;
  outline: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.ai360chat-trigger:focus-visible {
  outline: 2px solid #128C7E;
  outline-offset: 2px;
}

.ai360chat-trigger:active {
  background-color: #075E54;
}

/* Link variant */
a.ai360chat-trigger {
  text-decoration: none;
}

a.ai360chat-trigger:hover {
  text-decoration: none;
}

/* Span/div variant - ensure clickable appearance */
span.ai360chat-trigger,
div.ai360chat-trigger {
  user-select: none;
}
