/**
 * Base styles - Reset and global styles
 */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Public Sans', -apple-system, sans-serif;
  background: #f5f5f5;
  color: #1a1a1a;
  display: flex;
  min-height: 100vh;
}

/* Utility Classes */
.positive {
  color: #10b981;
  font-weight: 600;
}

.negative {
  color: #ef4444;
  font-weight: 600;
}
