/**
 * AI Summary Shortcode Styles
 */

.ai-share-buttons.ai-share-icon {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.ai-share-buttons.ai-share-icon p {
  font-size: 16px;
  font-weight: 500;
  color: #333;
  white-space: nowrap;
  margin: 0;
}

.ai-share-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  position: relative;
  overflow: hidden;
  color: white;
  font-size: 0;
  font-weight: 500;
}

.ai-share-button:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  text-decoration: none;
  color: white;
}

.ai-share-button img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: brightness(0) invert(1); /* Make images white */
}

/* ChatGPT - Teal-green circle */
.ai-share-button.chatgpt {
  background-color: #10a37f;
}

.ai-share-button.chatgpt:hover {
  background-color: #0d8a6f;
}

/* Perplexity - Dark teal circle */
.ai-share-button.perplexity {
  background-color: #1a5f7a;
}

.ai-share-button.perplexity:hover {
  background-color: #154d63;
}

/* Claude - Orange-red circle */
.ai-share-button.claude {
  background-color: #ff6b35;
}

.ai-share-button.claude:hover {
  background-color: #e55a2b;
}

/* Google AI Mode - Light purple circle */
.ai-share-button.google-ai {
  background-color: #8e63ce;
}

.ai-share-button.google-ai:hover {
  background-color: #7a52b8;
}

/* Grok - Black circle */
.ai-share-button.grok {
  background-color: #000000;
}

.ai-share-button.grok:hover {
  background-color: #333333;
}

/* Responsive design */
@media (max-width: 768px) {
  .ai-share-buttons.ai-share-icon {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .ai-share-buttons.ai-share-icon p {
    font-size: 14px;
  }
  
  .ai-share-button {
    width: 36px;
    height: 36px;
  }
  
  .ai-share-button img {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 480px) {
  .ai-share-button {
    width: 32px;
    height: 32px;
  }
  
  .ai-share-button img {
    width: 16px;
    height: 16px;
  }
}

/* Focus states for accessibility */
.ai-share-button:focus {
  outline: 2px solid #007cba;
  outline-offset: 2px;
} 