/* Base styles */
body {
    font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: #f9f9f9;
    color: #2c2c2c;
    font-size: 15px; /* Slightly smaller font */
    line-height: 1.4; /* Tighter line height */
    letter-spacing: -0.2px; /* Slightly tighter tracking */
    margin: 0;
    padding: 0;
  }
  
  /* Headings */
  h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: #1e3a8a; /* Deep blue */
    margin-top: 1em;
    margin-bottom: 0.5em;
  }
  
  /* Links */
  a {
    color: #2563eb; /* Bright blue */
    text-decoration: none;
  }
  
  a:hover {
    text-decoration: underline;
  }

  .single-line-ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }