
    body {
      font-family: Arial, sans-serif;
      background: #f4f4f4;
      padding: 20px;
    }
    .paystub-container {
      max-width: 900px;
      margin: 0 auto 20px;
      background: #fff;
      border: 1px solid #ccc;
      padding: 20px 25px;
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }
    h1, h2 {
      text-align: center;
      margin: 5px 0 15px;
    }
    .section {
      border: 1px solid #ccc;
      margin-bottom: 15px;
      padding: 10px 12px;
    }
    .section-title {
      font-weight: bold;
      margin-bottom: 8px;
      text-transform: uppercase;
      font-size: 13px;
      color: #333;
    }
    .row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px 20px;
      margin-bottom: 6px;
    }
    .field {
      flex: 1 1 200px;
      font-size: 13px;
    }
    .field label {
      display: block;
      font-size: 12px;
      margin-bottom: 2px;
      color: #444;
    }
    .field input {
      width: 100%;
      padding: 4px 6px;
      font-size: 13px;
      box-sizing: border-box;
    }
    table {
      width: 100%;
      border-collapse: collapse;
      font-size: 13px;
      margin-top: 5px;
    }
    table th, table td {
      border: 1px solid #ccc;
      padding: 4px 6px;
      text-align: left;
    }
    table th {
      background: #f0f0f0;
    }
    .inline-field {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 6px;
      font-size: 13px;
    }
    .inline-field span {
      margin-right: 10px;
    }
    .inline-field input {
      width: 200px;
    }
    .signature-row {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      margin-top: 10px;
    }
    .signature-block {
      flex: 1 1 45%;
      font-size: 13px;
    }
    .signature-line {
      border-bottom: 1px solid #000;
      height: 24px;
      margin-bottom: 4px;
    }
    .logo-box {
      width: 180px;
      height: 60px;
      border: 1px dashed #aaa;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      color: #777;
      margin-bottom: 8px;
    }
    .button-row {
      text-align: center;
      margin: 20px 0;
    }
    button {
      padding: 8px 14px;
      margin: 4px;
      font-size: 13px;
      cursor: pointer;
      border: none;
      background: #0078ff;
      color: #fff;
      border-radius: 4px;
    }
    button:hover {
      background: #005fcc;
    }
    .dashboard-container {
      max-width: 1100px;
      margin: 0 auto;
    }
    .dashboard-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 13px;
      background: #fff;
      border: 1px solid #ccc;
    }
    .dashboard-table th, .dashboard-table td {
      border: 1px solid #ccc;
      padding: 4px 6px;
      text-align: left;
    }
    .dashboard-table th {
      background: #e9e9e9;
    }
    .dashboard-title {
      font-weight: bold;
      margin: 10px 0;
    }
 