body {
  font-family: Arial, sans-serif;
  margin: 40px;
  background: #f9fafb;
  color: #333;
}

form {
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

input, button {
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

button {
  background: #0066ff;
  color: white;
  border: none;
  cursor: pointer;
}

button:hover {
  background: #0053cc;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: white;
}

th, td {
  padding: 10px;
  border: 1px solid #ddd;
  text-align: left;
}
