/* Picasso Dental - Supplemental base styles (Tailwind is precompiled to tailwind.css) */

/* Reset */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

/* Body defaults */
body {
  font-family: 'Be Vietnam Pro', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Line clamp utility */
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Select dropdown fix for dark backgrounds */
select option {
  background: #313030;
  color: #f4f0ef;
}

/* Image handling */
img {
  max-width: 100%;
  height: auto;
}

/* Focus styles for accessibility */
:focus-visible {
  outline: 2px solid #306b00;
  outline-offset: 2px;
}
