body {
  font-family: 'Tajawal', sans-serif;
  direction: rtl;
  background: #f2f4f8;
  padding: 20px;
  margin: 0;
}

header {
  background: #004466;
  color: white;
  padding: 15px;
  text-align: center;
}

input, select {
  margin: 5px;
  padding: 10px;
  width: 250px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

button {
  padding: 10px 20px;
  background-color: #f9b000;
  border: none;
  color: black;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
}

button:hover {
  background-color: #e0a000;
}

.filter-section {
  margin: 30px auto;
  text-align: center;
}

.employee-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.employee-card {
  background: white;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
  width: 270px;
  text-align: center;
}

.employee-card img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #004466;
  margin-bottom: 10px;
}

footer {
  background: #004466;
  color: white;
  padding: 10px;
  text-align: center;
  margin-top: 40px;
}
