<!DOCTYPE html>

<html lang="en">

<head>

<meta charset="UTF-8">

<meta name="viewport" content="width=device-width, initial-scale=1.0">

<title>Order Management Dashboard</title>

<style>

  body {

    font-family: Arial, sans-serif;

  }

  .container {

    width: 95%;

    margin: auto;

    max-width: 1200px;

  }

  table {

    width: 100%;

    border-collapse: collapse;

    margin-top: 20px;

  }

  th, td {

    border: 1px solid #ddd;

    padding: 8px;

    text-align: left;

  }

  th {

    background-color: #f2f2f2;

  }

  .button {

    background-color: #4CAF50; /* Green */

    border: none;

    color: white;

    padding: 10px 20px;

    text-align: center;

    text-decoration: none;

    display: inline-block;

    font-size: 16px;

    margin: 4px 2px;

    cursor: pointer;

  }

  @media screen and (max-width: 600px) {

    table {

      display: block;

      overflow-x: auto;

    }

    .button {

      width: 100%;

      box-sizing: border-box;

    }

  }

</style>

</head>

<body>


<div class="container">

  <!-- Logo and Menu here -->

  <!-- Replace with your actual logo and menu items -->

  <div>Logo</div>

  <div>Menu</div>


  <!-- Filter Section -->

  <div>

    <!-- Replace with your actual filter controls -->

    Order No. <input type="text" name="orderNo">

    Paid Status <select name="paidStatus">

      <option value="all">All</option>

      <option value="paid">Paid</option>

      <option value="unpaid">Unpaid</option>

    </select>

    Date From <input type="date" name="dateFrom">

    Date TO <input type="date" name="dateTo">

  </div>


  <!-- Table Section -->

  <table>

    <thead>

      <tr>

        <th>No</th>

        <th>Order No.</th>

        <th>Order Item No.</th>

        <th>Paid Status</th>

        <!-- Add other headers as needed -->

        <!-- ... -->

      </tr>

    </thead>

    <tbody>

      <!-- Data rows will go here -->

      <!-- Replace with your actual data rows -->

      <tr>

        <td>1</td>

        <td>123456789</td>

        <td>987654321</td>

        <td>Paid</td>

        <!-- Add other data cells as needed -->

        <!-- ... -->

      </tr>

      <!-- Repeat for other rows -->

    </tbody>

  </table>

  

  <!-- Pagination -->

  <div>

    <!-- Replace with your actual pagination controls -->

    <a href="#" class="button">Back</a>

    <!-- Page numbers would go here -->

    <a href="#" class="button">Next</a>

  </div>

</div>


</body>

</html>