nav {
  background-color: #333;
  padding: 10px 0;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
}

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  padding: 8px 12px;
  transition: background 0.3s;
}

nav ul li a:hover {
  background-color: #555;
  border-radius: 4px;
}

.table-listing {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 16px;
  text-align: left;
}
.table-listing th, .table-listing td {
  padding: 12px 15px;
  border: 1px solid #ddd;
}
.table-listing th {
  background-color: #333;
  color: #fff;
}
.table-listing tr:nth-child(even) {
  background-color: #f9f9f9;
}
.table-listing .action-icon {
  margin-right: 8px;
  color: #333;
  transition: color 0.3s;
}
.table-listing .action-icon:hover {
  color: #f00;
}

form {
  max-width: 800px;
  width: 600px;
  margin: 20px auto;
  padding: 20px;
  background-color: #f8f8f8;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
form label {
  display: block;
  font-weight: bold;
  margin-bottom: 8px;
  color: #333;
}
form input[type=text],
form input[type=number],
form textarea,
form select {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  color: #333;
  transition: border-color 0.3s ease;
}
form input[type=text]:focus,
form input[type=number]:focus,
form textarea:focus,
form select:focus {
  border-color: #007BFF;
  outline: none;
}
form textarea {
  resize: vertical;
  min-height: 120px;
}
form fieldset {
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 15px;
  margin-bottom: 20px;
}
form fieldset legend {
  font-weight: bold;
  color: #555;
  padding: 0 10px;
}
form button[type=submit] {
  display: block;
  width: 100%;
  padding: 14px;
  background-color: #007BFF;
  border: none;
  border-radius: 5px;
  color: white;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
form button[type=submit]:hover {
  background-color: #0056b3;
}

body {
  background-color: #f4f4f9;
  color: #555;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

h2 {
  color: #333;
}

/*# sourceMappingURL=style.css.map */
