table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 1.5rem;
      font-family: Arial, sans-serif;
    }

    table thead tr {
      background-color: #e6eafc;
    }
    table th, table td {
      padding: 10px;
      border-bottom: 1px solid #ddd;
      text-align: left;
    }
    table tbody tr:hover {
      background-color: #f1f5ff;
    }
    .status {
      font-weight: bold;
      padding: 4px 8px;
      border-radius: 12px;
      display: inline-block;
    }
    .status.Processing {
      background-color: #2196F3;
    }
    .status.Pending {
      background-color: #ff6b6b;
    }
    .status.Completed {
      background-color: #4caf50;
    }
    