:root {
    --accent: #2ecc71;  /* Green accent (change to #3498db for blue) */
    --text: #ecf0f1;
    --bg: #2c3e50;      /* Dark slate */
    --card-bg: #34495e;
  }
  
  body {
    font-family: 'Fira Code', monospace, system-ui;
    line-height: 1.6;
    /* max-width: 00px; */
    width: 75%;
    margin: 0 auto;
    padding: 20px;
    color: var(--text);
    background-color: var(--bg);
  }

  .container {
    align-items: center;
    margin-top: 40px;
  }
  
  h1, h2 {
    font-weight: 400;
  }
  
  .accent {
    color: var(--accent);
  }
  
  .subtitle {
    color: #bdc3c7;
    margin-bottom: 40px;
  }
  
  .tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
    margin-top: 15px;
  }
  
  .tech-item {
    background-color: var(--card-bg);
    padding: 10px;
    border-radius: 4px;
    text-align: center;;
    font-size: 0.95rem;
    transition: transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px; /* Optional: Set a fixed height for consistency */
  }
  
  .tech-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }
  
  .links {
    margin-top: 20px;
  }
  
  .links a {
    margin-right: 20px;
    text-decoration: none;
    color: var(--accent);
    border-bottom: 1px dotted var(--accent);
    padding-bottom: 2px;
  }
  
  .section {
    margin-bottom: 40px;
  }
  
  /* Light mode */
  @media (prefers-color-scheme: light) {
    :root {
      --text: #2d3436;
      --bg: #f5f6fa;
      --card-bg: #ffffff;
      --accent: #0984e3;
    }
    .subtitle {
      color: #636e72;
    }
    .tech-item {
      box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    }
  }


  /* ==== Table styling additions ==== */
.table-container {
  width: 100%;
}

.table-container table {
  width: 100%;           /* wider than container */
  border-collapse: collapse;
  margin: 0 auto;        /* center table */
}


.table-container th,
.table-container td {
  padding: 12px 15px;
  text-align: left;
}

/* Add bottom border to each row */
.table-container tbody tr {
  border-bottom: 1px solid #3a4460; /* subtle neon-compatible line */
}