.seo-tools-buttons-container {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 20px 0;
  justify-content: center;
}

.seo-tools-button {
  display: inline-block;
  padding: 4px 10px;
  background: #f3e5f5;
    color: #7b1fa2;
  text-decoration: none;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  transition: opacity 0.2s ease;
  text-align: center;
}

.seo-tools-button:hover {
  opacity: 0.9;
  color: #7b1fa2;
  text-decoration: none;
}

.seo-tools-buttons-error {
  padding: 15px;
  background: #ffebee;
  color: #c62828;
  border-radius: 4px;
  text-align: center;
  margin: 20px 0;
}

/* Responsive */
@media (max-width: 768px) {
  .seo-tools-buttons-container {
    flex-direction: column;
  }
  
  .seo-tools-button {
    width: 100%;
  }
}

