Order History
/* style.css */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
header {
background-color: #f0f0f0;
padding: 20px;
display: flex;
justify-content: space-between;
align-items: center;
}
nav {
background-color: #f0f0f0;
padding: 20px;
}
nav ul {
list-style-type: none;
padding: 0;
}
nav li {
display: inline-block;
margin-right: 20px;
}
nav a {
text-decoration: none;
color: #333;
}
.order-history {
padding: 20px;
}
.filters {
display: flex;
margin-bottom: 10px;
}
.filter-button {
padding: 10px 20px;
background-color: #f0f0f0;
border: 1px solid #ccc;
margin-right: 10px;
cursor: pointer;
}
.filter-button.active {
background-color: #333;
color: #fff;
}
.order-table {
border-collapse: collapse;
width: 100%;
}
.order-table th, .order-table td {
border: 1px solid #ccc;
padding: 10px;
text-align: left;
}
/* Add more CSS styles as needed to match the image's design */