/* Centralized custom styles for Yummify project */

/* CSS Variables for consistent colors */
:root {
  --primary: #0903a2;
  --secondary: #ffaf38;
  --accent: #ffaf38;
  --indigo-950: #0903a2;
  --orange-400: #ffaf38;
  --orange-500: #f59e0b;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --white: #ffffff;
  --background: #f9f9fb;
}

::-webkit-scrollbar { display: none; }

body {
  font-family: 'Inter', sans-serif !important;
}

/* Preserve Font Awesome icons */
.fa, .fas, .far, .fal, .fab {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands" !important;
}

.highlighted-section {
  outline: 2px solid #3F20FB;
  background-color: rgba(63, 32, 251, 0.1);
}

.edit-button {
  position: absolute;
  z-index: 1000;
}

html, body {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Add any other custom styles from all HTML files here */ 