/* AI Summary Links Component */
.ai-summary-links {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 20px 0;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: start;
}

.summary-label {
  white-space: nowrap;
  font-size: 0.9rem;
  font-weight: 600;
  color: #181a1e;
  margin: 0;
  flex-shrink: 0;
}

.ai-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  flex: 1;
}

.ai-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  background: #fff;
  border: 1px solid #dcdcdc;
  border-radius: 8px;
  text-decoration: none;
  color: #181a1e;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.ai-btn:hover {
  background: #f5f7fa;
  border-color: #0073e6;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  color: #181a1e;
}

.ai-btn img {
  width: 20px;
  height: 20px;
  display: block;
  flex-shrink: 0;
}

/* Mobile Responsive */
@media (max-width: 767px) {
  .ai-summary-links {
    flex-direction: column;
    align-items: flex-start;
  }

  .ai-buttons {
    width: 100%;
  }

  .ai-btn {
    flex: 1 1 calc(50% - 6px);
  }
}