/* Yara-Med1 Custom Styles */

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Base body styling */
body {
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Scroll offset for fixed navigation */
section[id] {
  scroll-margin-top: 80px;
}

/* Focus styles for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid #C41E3A;
  outline-offset: 2px;
}

/* Smooth transitions for interactive elements */
a, button {
  transition: all 0.2s ease;
}

/* Custom scrollbar (WebKit browsers) */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #C41E3A;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #9B1830;
}
