/* assets/css/common-styles.css */

body {
  font-family: "Inter", sans-serif;
}

.gradient-bg {
  background: linear-gradient(135deg, #8b90a7a8 0%, #645970 100%);
}

.hover-lift {
  transition: transform 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-5px);
}

.custom-shadow {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Dropdown & Mobile Menu */
.dropdown {
  display: none;
}

.dropdown.active {
  display: block;
}

.mobile-menu {
  display: none;
}

/* JavaScript toggle ke liye hamne .active ki jagah Tailwind ya clean css handle kiya hai */
.mobile-menu.active {
  display: block;
}

/* Tags Styling */
.keyword-tag {
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  border: 1px solid #2196f3;
  cursor: pointer;
  transition: all 0.3s ease;
}

.keyword-tag:hover {
      background: linear-gradient(135deg, #000000 0%, #1976d2 100%);
  color: white;
  transform: translateY(-2px);
}

.keyword-tag.copied {
  background: linear-gradient(135deg, #4caf50 0%, #388e3c 100%);
  color: white;
}

/* Loader Spinner */
.loading-spinner {
  border: 3px solid #f3f3f3;
  border-top: 3px solid #2196f3;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Metrics Colors (SEO Data) */
.difficulty-easy {
  color: #4caf50;
}

.difficulty-medium {
  color: #ff9800;
}

.difficulty-hard {
  color: #f44336;
}

.search-volume-high {
  color: #2196f3;
}

.search-volume-medium {
  color: #ff9800;
}

.search-volume-low {
  color: #9e9e9e;
}
.text-blue-400 {
  span{
    color:white !important;
  }
}