/* OnlyFanOuts — Reset, Typography & Base */

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--gray-100);
  padding: 20px;
  line-height: 1.5;
}

/* Container */
.container {
  margin: 0 auto;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 30px;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 20px;
}

/* Typography */
h1 { color: #333; font-size: 28px; margin-bottom: 20px; }
h2 { font-size: 20px; margin-bottom: 15px; color: #444; }
h3 { font-size: 16px; margin-bottom: 10px; color: #555; }
.small { color: #666; font-size: 12px; }

/* Links */
a { color: var(--blue-700); text-decoration: none; }
a:hover { text-decoration: underline; }

/* No data message */
.no-data { text-align: center; padding: 40px; color: #6c757d; font-size: 16px; }

/* Responsive container */
@media (max-width: 640px) {
  .container { padding: 15px; border-radius: 0; }
}
