* {
  box-sizing: border-box;
}

body {
  background-color: #ffffff;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1f2937;
}

/* Custom button styling if needed */
.custom-button {
  background-color: #000;
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 0.75rem;
  font-weight: 500;
  transition: background-color 0.2s;
}

.custom-button:hover {
  background-color: #333;
}

/* Add any other custom styles not covered by Tailwind here */