/* Custom styles beyond Tailwind */

/* Code block styling */
pre {
  font-family: "Courier New", Courier, monospace;
  line-height: 1.5;
  tab-size: 4;
  overflow-x: auto;
}

/* Transitions */
.category-card,
.subcategory-option {
  transition: all 0.2s ease-in-out;
}

.category-card:hover,
.subcategory-option:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Back button styling */
#back-to-categories,
#back-to-subcategories {
  transition: color 0.2s ease-in-out;
}

/* Copy button styling */
#copy-code {
  transition: color 0.2s ease-in-out;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .category-card {
    padding: 0.75rem;
  }

  pre {
    font-size: 0.875rem;
  }
}
