/* FamilyServio Custom Styles */

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* Modal Overlay - Fixed positioning with !important to override Tailwind */
#modal {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  background-color: rgba(0, 0, 0, 0.5) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 9999 !important;
  overflow: auto !important;
}

/* Modal Content Box */
#modal > div {
  position: relative !important;
  background: white !important;
  border-radius: 0.5rem !important;
  padding: 2rem !important;
  max-width: 28rem !important;
  width: 90% !important;
  margin: auto !important;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
}