Quick action buttons .quick-action-btn {
  border: 2px solid #e5e7eb;
  border-radius: 0.5rem;
  padding: 0.75rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  background: white;
}

.quick-action-btn:hover {
  border-color: #00dfd8;
  background: #f0fdfc;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.quick-action-btn:active {
  transform: translateY(0);
}

/* Radio and checkbox styling */
input[type="radio"],
input[type="checkbox"] {
  cursor: pointer;
  accent-color: #00dfd8;
}

/* Textarea and input focus effects */
textarea:focus,
input:focus {
  box-shadow: 0 0 0 3px rgba(0, 223, 216, 0.1);
}

/* Scrollbar styling */
textarea::-webkit-scrollbar,
#html-preview::-webkit-scrollbar,
#text-preview::-webkit-scrollbar {
  width: 10px;
}

textarea::-webkit-scrollbar-track,
#html-preview::-webkit-scrollbar-track,
#text-preview::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 5px;
}

textarea::-webkit-scrollbar-thumb,
#html-preview::-webkit-scrollbar-thumb,
#text-preview::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 5px;
}

textarea::-webkit-scrollbar-thumb:hover,
#html-preview::-webkit-scrollbar-thumb:hover,
#text-preview::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* Button animations */
button {
  transition: all 0.2s ease;
}

button:active {
  transform: scale(0.98);
}

/* Hover effects for option cards */
label:has(input[type="checkbox"]),
label:has(input[type="radio"]) {
  transition: all 0.2s ease;
}

label:has(input[type="checkbox"]):hover,
label:has(input[type="radio"]):hover {
  background-color: #f9fafb;
}

/* Preview panel styling */
#html-preview,
#text-preview {
  font-size: 0.875rem;
  line-height: 1.5;
}

#html-preview {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Tag checkbox labels */
label:has(.tag-checkbox) {
  transition: all 0.2s ease;
}

label:has(.tag-checkbox):hover {
  border-color: #00dfd8;
  background-color: #f0fdfc;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .text-4xl {
    font-size: 2rem;
  }

  .grid-cols-2 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .lg\:col-span-2 {
    grid-column: span 1;
  }
}

/* Shadow effects for cards */
.shadow-md {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Custom color utilities */
.text-\[\#00DFD8\] {
  color: #00dfd8;
}

.bg-\[\#1E1E2F\] {
  background-color: #1e1e2f;
}

.border-\[\#00DFD8\] {
  border-color: #00dfd8;
}

.ring-\[\#00DFD8\] {
  --tw-ring-color: #00dfd8;
}

.hover\:text-\[\#00DFD8\]:hover {
  color: #00dfd8;
}

.hover\:bg-\[\#2a2a3f\]:hover {
  background-color: #2a2a3f;
}

.focus\:ring-\[\#00DFD8\]:focus {
  --tw-ring-color: #00dfd8;
}

/* Animation for elements */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Smooth transitions */
* {
  transition-property: background-color, border-color, color, fill, stroke;
  transition-duration: 150ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Focus visible for accessibility */
*:focus-visible {
  outline: 2px solid #00dfd8;
  outline-offset: 2px;
}

/* Hidden utility */
/* .hidden {
  display: none;
} */
