/* tm.css - Responsive Minimalist Design */

/* Reset & Base Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #fdfdfd;
    color: #333;
    line-height: 1.6;
    padding: 2rem;
    max-width: 960px;
    margin: auto;
  }
  
  h1 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #222;
  }
  
  h2 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #444;
    border-bottom: 2px solid #eee;
    padding-bottom: 0.3rem;
  }
  
  /* Buttons */
  button,
  a.button {
    display: inline-block;
    background-color: #2f80ed;
    color: white;
    padding: 0.6rem 1rem;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    margin: 0.5rem 0.25rem;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
  }
  
  button:hover,
  a.button:hover {
    background-color: #1366d6;
  }
  
  /* Tables */
  table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.03);
    border-radius: 6px;
    overflow: hidden;
  }
  
  thead {
    background-color: #f0f0f0;
  }
  
  th, td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
  }
  
  th {
    font-weight: 600;
    color: #222;
  }
  
  td code {
    background: #f4f4f4;
    padding: 2px 6px;
    border-radius: 3px;
    font-family: monospace;
    color: #e44d26;
  }
  
  /* Section Styling */
  .section {
    margin-bottom: 3rem;
  }
  
  /* Print Optimization */
  @media print {
    body {
      padding: 0;
      max-width: none;
    }
  
    button, a.button {
      display: none;
    }
  
    h1, h2 {
      color: black;
    }
  
    table {
      box-shadow: none;
    }
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    body {
      padding: 1rem;
    }
  
    h1 {
      font-size: 1.8rem;
    }
  
    h2 {
      font-size: 1.2rem;
    }
  
    th, td {
      padding: 0.6rem 0.8rem;
      font-size: 0.95rem;
    }
  
    table {
      font-size: 0.95rem;
    }
  
    button,
    a.button {
      width: 100%;
      display: block;
      margin: 0.5rem 0;
      text-align: center;
    }
  }
  
  @media (max-width: 480px) {
    table,
    thead,
    tbody,
    th,
    td,
    tr {
      display: block;
    }
  
    thead {
      display: none;
    }
  
    tr {
      margin-bottom: 1rem;
      border: 1px solid #ddd;
      border-radius: 6px;
      padding: 0.5rem;
      background-color: #fff;
    }
  
    td {
      padding: 0.5rem;
      text-align: left;
      position: relative;
    }
  
    td::before {
      content: attr(data-label);
      font-weight: bold;
      display: block;
      margin-bottom: 0.3rem;
      color: #555;
    }
  }
  