body {
  background-color: #f4f6f9;
  font-family: 'Cairo', sans-serif;
  margin: 20px;
  color: #333;
}
h2, h3 {
  color: #444;
  margin-bottom: 15px;
}
form input, form select, form button {
  display: block;
  width: 300px;
  margin-bottom: 10px;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
}
form button {
  background-color: #007bff;
  color: white;
  border: none;
  cursor: pointer;
}
form button:hover {
  background-color: #0056b3;
}
table {
  border-collapse: collapse;
  width: 100%;
  margin-top: 20px;
}
th, td {
  border: 1px solid #ddd;
  padding: 10px;
}
th {
  background-color: #007bff;
  color: white;
}
a {
  color: #007bff;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}