
.category-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 20px;
  }
  
  .category-table {
  width: calc(50% - 20px);
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .category-table h3 {
  margin-bottom: 10px;
  }
  
  .category-table table {
  width: 100%;
  border-collapse: collapse;
  }
  
  .category-table th,
  .category-table td {
  padding: 10px;
  text-align: left;
  border-bottom: 1px solid #ddd;
  }
  
  .category-table th {
  font-weight: bold;
  background-color: #f2f2f2;
  }
  
  .category-table td:last-child {
  text-align: center;
  }
  
  
  .category-table .view-products-btn {
  background-color: #fff;
  color: #007bff;
  border: 1px solid #007bff;
  border-radius: 5px;
  padding: 5px 10px;
  cursor: pointer;
  margin-right: 5px;
  transition: all 0.3s ease;
  }
  
  .category-table .view-products-btn:hover {
  background-color: #007bff;
  color: #fff;
  }
  
  .product-table {
  width: calc(50% - 20px);
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .product-table h3 {
  margin-bottom: 10px;
  }
  
  .product-table table {
  width: 100%;
  border-collapse: collapse;
  }
  
  .product-table th,
  .product-table td {
  padding: 10px;
  text-align: left;
  border-bottom: 1px solid #ddd;
  }
  
  .product-table th {
  font-weight: bold;
  background-color: #f2f2f2;
  }
  
  .category-form {
  width: 100%;
  margin-bottom: 20px;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .category-form h3 {
  margin-bottom: 10px;
  }
  
  .category-form form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  }
  
  .category-form input {
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  width: 48%;
  outline: none;
  }
  
  .category-form .form-buttons {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  }
  
  .category-form button {
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 10px;
  cursor: pointer;
  margin-left: 5px;
  transition: all 0.3s ease;
  width:33%;
  }
  
  .category-form button:hover {
  background-color: #0056b3;
  }
  
  