body {
  font-family: 'Arial', sans-serif;
  direction: rtl;
  background-color: #f9f9f9;
  padding: 20px;
}

.filter-container {
  margin-bottom: 20px;
}

#searchInput {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  box-sizing: border-box;
}

.category-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.category-buttons button {
  background-color: #f0f0f0;
  border: 1px solid #ccc;
  color: #333;
  padding: 10px 16px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 14px;
  transition: 0.3s ease-in-out;
  font-weight: 500;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.category-buttons button:hover,
.category-buttons button.active {
  background-color: #00796b;
  color: #fff;
  border-color: #00796b;
}

table {
  width: 100%;
  border-collapse: collapse;
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

thead {
  background-color: #00796b;
  color: white;
}

th, td {
  text-align: right;
  padding: 14px;
  border-bottom: 1px solid #eee;
}

tr:hover {
  background-color: #f1f1f1;
}
