/*
 * Emoji styling for consistent cross-platform rendering
 * Native Unicode emoji with enhanced display
 */

/* Ensure emoji display properly across all browsers */
.emoji,
span:has(emoji),
[class*="emoji"] {
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji", sans-serif;
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  display: inline-block;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Size variations */
.emoji-sm {
  font-size: 1.25em;
}

.emoji-md {
  font-size: 1.5em;
}

.emoji-lg {
  font-size: 2em;
}

.emoji-xl {
  font-size: 3em;
}

/* Prevent emoji from being affected by text color */
.emoji {
  color: inherit;
}
